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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.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: 60px 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #3b82f6;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #2563eb;
}

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

.btn-outline:hover {
    background-color: #3b82f6;
    color: white;
}

/* Header Styles */
header {
    background-color: #1e3a8a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0 60px;
    position: relative;
}

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

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

/* Countdown Timer Styles */
.countdown-container {
    background-color: rgba(30, 58, 138, 0.8);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.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: #2563eb;
    padding: 15px;
    border-radius: 5px;
    min-width: 80px;
}

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

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

/* Age Restriction Banner */
.age-restriction {
    background-color: #dc2626;
    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: #3b82f6;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* About Section Styles */
.about {
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
}

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

.feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.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: #dbeafe;
    color: #1e3a8a;
}

.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: #3b82f6;
    color: white;
    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;
}

.step-content {
    flex: 1;
}

.steps-image {
    flex: 1;
}

.steps-image img {
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
}

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

.accordion {
    margin-top: 30px;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f3f4f6;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

/* Contact Section Styles */
.contact {
    background-image: 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(30, 58, 138, 0.8);
}

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

/* Responsible Gaming Section Styles */
.responsible-gaming {
    background-color: #eff6ff;
    color: #1e3a8a;
    text-align: center;
}

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

.gaming-card {
    background-color: #ffffff;
    border-radius: 10px;
    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;
}

/* Footer Styles */
footer {
    background-color: #1e3a8a;
    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: #dbeafe;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #60a5fa;
}

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

.footer-partners img {
    height: 40px;
    margin: 0 10px;
}

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

/* 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;
    }
} 