/* 
 * Custom styles to override the default theme
 * This adds a modern purple/indigo color scheme
 */

/* Base styles */
body {
    font-family: 'Poppins', 'Arial', sans-serif;
    color: #2d3748;
    background-color: #f8fafc;
}

/* Button styles */
.btn {
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    background-color: #5a67d8;
    color: white;
}

.btn-primary:hover {
    background-color: #4c51bf;
}

.btn-outline {
    color: #5a67d8;
    border-color: #5a67d8;
}

.btn-outline:hover {
    background-color: #5a67d8;
    color: white;
}

/* Header styles */
header {
    background-color: #2d3748;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

/* Hero section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
}

.hero::before {
    background-color: rgba(45, 55, 72, 0.4);
}

.hero h1 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Countdown timer */
.countdown-container {
    background-color: rgba(26, 32, 44, 0.85);
    border-radius: 15px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.time span {
    background-color: #5a67d8;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Age restriction */
.age-restriction {
    background-color: #1a202c;
}

/* Slogan section */
.slogan {
    background-color: #5a67d8;
}

/* About section */
.about {
    background-color: #2d3748;
}

.feature-card {
    background-color: #3a4a61;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* How to play section */
.how-to-play {
    background-color: #5a67d8;
}

.step-number {
    background-color: #fff;
    color: #5a67d8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.steps-image img {
    border-radius: 15px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* FAQ section */
.faq {
    background-color: #f8fafc;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.accordion-header {
    background-color: #fff;
}

.accordion-header h3 {
    color: #2d3748;
}

.accordion-icon {
    color: #5a67d8;
}

.accordion-content {
    background-color: #fff;
}

.accordion-item:hover .accordion-header {
    background-color: #f7fafc;
}

/* Responsible gaming section */
.responsible-gaming {
    background-color: #2d3748;
}

.gaming-card {
    background-color: #3a4a61;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gaming-card a {
    color: #90cdf4;
}

.gaming-card a:hover {
    color: #63b3ed;
    text-decoration: underline;
}

/* Contact section */
.contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/bg1.jpg');
}

.contact::before {
    background-color: rgba(45, 55, 72, 0.5);
}

/* Footer */
footer {
    background-color: #1a202c;
}

.footer-links a {
    color: #e2e8f0;
}

.footer-links a:hover {
    color: #5a67d8;
}

.footer-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-partners img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-partners img:hover {
    opacity: 1;
}

.copyright {
    color: #a0aec0;
}

/* Age restriction fixed icon */
.age-restriction-fixed {
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.age-restriction-fixed:hover {
    transform: scale(1.05);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
} 