body {
    font-family: poppins;
}

h1, h2, h3, h4, h5, h6, strong {
    font-family: poppins;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f, #4ecdc4, #45b7d1);
    background-size: 300% 300%;
    animation: rainbow 3s ease infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-title {
    font-size: 3.5em;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes titlePulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.hero-subtitle {
    font-size: 1.4em;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.prize-banner {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    font-size: 1.6em;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    animation: prizePulse 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

.prize-banner .prize-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

@keyframes prizePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5); }
}

.daily-winners {
    background: linear-gradient(135deg, #6bcf7f, #4ecdc4);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1.2em;
    animation: winnerGlow 2s ease-in-out infinite alternate;
}

@keyframes winnerGlow {
    0% { box-shadow: 0 5px 20px rgba(107, 207, 127, 0.4); }
    100% { box-shadow: 0 10px 40px rgba(107, 207, 127, 0.8); }
}

/* How It Works Section */
.how-it-works-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 20px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.how-it-works-title {
    text-align: center;
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 40px;
    font-weight: 700;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 2fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.4em;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1.05em;
}

.step-description strong {
    color: #667eea;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.quiz-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.quiz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.quiz-card:hover::before {
    left: 100%;
}

.quiz-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.quiz-card h3 {
    font-size: 2em;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quiz-icon {
    font-size: 1.2em;
    padding: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.quiz-description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.quiz-features {
    list-style: none;
    margin-bottom: 30px;
}

.quiz-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
}

.quiz-features li::before {
    content: '✅';
    font-size: 1.2em;
}

.quiz-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quiz-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #667eea;
}

.stat-label {
    font-size: 1.1em;
    color: #666;
    margin-top: 10px;
}

.features-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    font-size: 2.5em;
    color: #667eea;
}

.feature-content h4 {
    font-size: 1.3em;
    color: #2d3748;
    margin-bottom: 10px;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

.seo-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seo-content h2 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 2em;
}

.seo-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.faq-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.faq-question {
    background: #f8fafc;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    color: #2d3748;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question.active {
    background: #667eea;
    color: white;
}

.faq-toggle {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 20px 20px 0 20px;
    background: transparent;
    border-radius: 20px;
    margin: 10px 0;
    box-shadow: none;
}

.cta-title {
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 20px;
    margin-top: 0;
}

.cta-text {
    font-size: 1.3em;
    color: #4a5568;
    margin-bottom: 40px;
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-icon {
    position: absolute;
    font-size: 2em;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 85%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }
.floating-icon:nth-child(4) { top: 40%; left: 75%; animation-delay: 1s; }
.floating-icon:nth-child(5) { top: 10%; left: 60%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

footer {
    background: #fff;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .game-container {
        padding: 15px;
    }

    .hero-section {
        padding: 20px 15px;
        margin-bottom: 30px;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 2.2em;
        line-height: 1.2;
    }

    .hero-title span {
        font-size: 25px !important;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .prize-banner {
        font-size: 1.3em;
        padding: 15px;
        line-height: 1.4;
    }

    .daily-winners {
        font-size: 1.1em;
        padding: 12px;
    }

    /* How It Works Mobile */
    .how-it-works-section {
        padding: 40px 15px;
    }

    .how-it-works-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3em;
    }

    .step-title {
        font-size: 1.2em;
    }

    .step-description {
        font-size: 1em;
    }

    /* Quiz Options Mobile */
    .quiz-options {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }

    .quiz-card {
        padding: 25px 20px;
    }

    .quiz-card h3 {
        font-size: 1.6em;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .quiz-icon {
        padding: 12px;
        font-size: 1em;
    }

    .quiz-description {
        font-size: 1em;
    }

    .quiz-btn {
        padding: 15px 30px;
        font-size: 1.0em;
    }

    /* Stats Mobile */
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 40px 0;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.2em;
    }

    .stat-label {
        font-size: 1em;
    }

    /* Features Mobile */
    .features-section {
        padding: 30px 20px;
    }

    .features-section h2 {
        font-size: 1.5em !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }

    .feature-icon {
        font-size: 2em;
    }

    .feature-content h4 {
        font-size: 1.2em;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 30px 20px;
    }

    .faq-section h2 {
        font-size: 1.5em !important;
    }

    .faq-question {
        padding: 15px;
        font-size: 1.1em;
    }

    .faq-answer.active {
        padding: 15px;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 10px 15px;
    }

    .cta-title {
        font-size: 2em;
        line-height: 1.2;
    }

    .cta-text {
        font-size: 1.1em;
        line-height: 1.5;
    }

    .cta-section > div {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .cta-section .quiz-btn {
        width: 100% !important;
        padding: 18px 30px !important;
        font-size: 1.0em !important;
    }

    /* SEO Content Mobile */
    .seo-content {
        padding: 30px 20px;
    }

    .seo-content h2 {
        font-size: 1.6em;
    }

    .seo-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .game-container {
        padding: 10px;
    }

    .hero-title {
        font-size: 1.8em;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .prize-banner {
        font-size: 1.1em;
        padding: 12px;
    }

    .daily-winners {
        font-size: 1em;
        padding: 10px;
    }

    .how-it-works-title {
        font-size: 1.8em;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }

    .quiz-card h3 {
        font-size: 1.4em;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2em;
    }

    .cta-title {
        font-size: 1.6em;
    }

    .cta-text {
        font-size: 1em;
    }

    .floating-icon {
        font-size: 1.5em;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}