/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #f8fafc;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 15px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 70px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    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;
    border: none;
}

.btn-primary:hover {
    background-color: #4c51bf;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #5a67d8;
    border: 2px solid #5a67d8;
}

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

/* Header Styles */
header {
    background-color: #2d3748;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Section Styles */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 55, 72, 0.4);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Countdown Timer Styles */
.countdown-container {
    background-color: rgba(26, 32, 44, 0.85);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.time {
    text-align: center;
}

.time span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #5a67d8;
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.time p {
    margin-top: 10px;
    font-size: 1rem;
}

.draw-info {
    margin-top: 20px;
}

/* Age Restriction Banner */
.age-restriction {
    background-color: #1a202c;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.age-restriction p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.age-icon {
    height: 20px;
}

/* Slogan Section Styles */
.slogan {
    background-color: #5a67d8;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* About Section Styles */
.about {
    background-color: #2d3748;
    color: white;
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #3a4a61;
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    max-width: 400px;
    transition: all 0.3s ease;
    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);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* How To Play Section Styles */
.how-to-play {
    background-color: #5a67d8;
    color: white;
}

.steps-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.steps {
    flex: 1;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    background-color: #fff;
    color: #5a67d8;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
}

.steps-image {
    flex: 1;
}

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

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

.accordion {
    margin-top: 30px;
}

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

.accordion-header {
    background-color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: #2d3748;
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #5a67d8;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

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

/* Contact Section Styles */
.contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/bg1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 55, 72, 0.5);
}

.contact .container {
    position: relative;
    z-index: 1;
}

/* Responsible Gaming Section Styles */
.responsible-gaming {
    background-color: #2d3748;
    color: white;
    text-align: center;
}

.gaming-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.gaming-card {
    background-color: #3a4a61;
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    max-width: 500px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gaming-card ul {
    list-style-position: inside;
    margin-top: 15px;
}

.gaming-card li {
    margin-bottom: 10px;
}

.gaming-card a {
    color: #90cdf4;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer Styles */
footer {
    background-color: #1a202c;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-partners img {
    height: 40px;
    margin: 0 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.copyright {
    font-size: 0.8rem;
    color: #a0aec0;
    margin-bottom: 0;
}

/* Age restriction fixed icon */
.age-restriction-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 100;
    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);
}

.age-restriction-fixed img {
    width: 50px;
    height: 50px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .features, .gaming-info {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card, .gaming-card {
        max-width: 100%;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .steps-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .countdown {
        flex-wrap: wrap;
    }
    
    .time {
        flex: 1;
        min-width: 40%;
    }
    
    .time span {
        min-width: auto;
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-buttons {
        gap: 10px;
    }
} 