/* KREKIT Landing Page Styles */
:root {
    --primary: #500051;
    --secondary: #ffde00;
    --dark: #1a0e1a;
    --light: #fff;
    --gray: #f5f5f5;
    --dark-gray: #333;
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --ball-size: 24px;
    --ball-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fcfcfc;
    overflow-x: hidden;
}

h1, h2 ,h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h7 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
}


h7:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}
h8 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333; /* "One" text is dark gray/black */
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
}

.section-header .p1 {
    color: var(--dark);
}




h8:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary); /* Yellow underline */
    border-radius: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; 
    width: 100%;
    box-sizing: border-box;
}

.highlight {
    color: var(--primary); /* Purple text for "Crack" and "Rewards" */
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--secondary); /* Yellow underline */
    z-index: -1;
    border-radius: 4px;
}

.normal {
    color: var(--dark); /* Dark gray/black for "One" and "Big" text */
}



.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Styling for the heading to match the image */
.section-header h8 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light) !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary) !important;
}

.btn-primary.large {
    padding: 16px 40px;
    font-size: 18px;
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-slow {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(80, 0, 81, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(80, 0, 81, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(80, 0, 81, 0);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(45deg, rgba(106, 0, 128, 0.05) 0%, rgba(255, 221, 0, 0.1) 100%);
    color: var(--light);
    padding: 100px 5%;
    display: flex;
    align-items: center;
    min-height: 85vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(106, 0, 128, 0.1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 221, 0, 0.1);
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.table-visual {
    width: 500px;
    height: 300px;
    position: relative;
    margin: 40px auto;
    overflow: visible;
}

.felt {
    width: 100%;
    height: 100%;
    background-color: #0d6830;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.table-border {
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background-color: #7b3f00;
    border-radius: 30px;
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: -1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.ball {
    width: var(--ball-size);
    height: var(--ball-size);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ball span {
    color: white;
    font-size: calc(var(--ball-radius) * 0.75);
    font-weight: bold;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}
#ball-1 {
    background: linear-gradient(135deg, #ff5252, #b30000);
}

#ball-2 {
    background: linear-gradient(135deg, #448aff, #0053ba);
}

#ball-3 {
    background: linear-gradient(135deg, #69f0ae, #00c853);
}

#ball-8 {
    background: linear-gradient(135deg, #212121, #000000);
}

#ball-5 {
    background: linear-gradient(135deg, #ffb74d, #f57c00);
}

#ball-6 {
    background: linear-gradient(135deg, #b388ff, #7c4dff);
}

#ball-7 {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

#ball-9 {
    background: linear-gradient(135deg, #fdd835, #f9a825);
}

#ball-10 {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

#ball-11 {
    background: linear-gradient(135deg, #ee9623, #f1f1f1);
}

#cue-ball {
    width: var(--ball-size);
    height: var(--ball-size);
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.cue {
    width: 8px;
    height: 200px;
    background: linear-gradient(to top, #5d4037, #8d6e63);
    position: absolute;
    transform-origin: 100% 50%;
    border-radius: 4px;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.pocket {
    width: calc(var(--ball-radius) * 2.5);
    height: calc(var(--ball-radius) * 2.5);
    background-color: #111;
    border-radius: 50%;
    position: absolute;
    box-shadow: inset 0 0 10px #000;
}
.pocket-top-left { 
    top: -10px; 
    left: -10px; 
}
.pocket-top-right { 
    top: -10px; 
    right: -10px; 
}
.pocket-middle-top { 
    top: -12px; 
    left: 50%; 
    transform: translateX(-50%); 
}
.pocket-middle-bottom { 
    bottom: -12px; 
    left: 50%; 
    transform: translateX(-50%); 
}
.pocket-bottom-left { 
    bottom: -10px; 
    left: -10px; 
}
.pocket-bottom-right { 
    bottom: -10px; 
    right: -10px; 
}
.triangle-guide {
    position: absolute;
    width: 140px;
    height: 140px;
    right: 80px;
    top: 80px;
    display: none;
}

/* How to Play Section */
.how-to-play {
    background-color: var(--gray);
    text-align: center;
    padding: 100px 15px;
}

.how-to-play h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step {
    background-color: var(--light);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.rules-highlight {
    background-color: var(--primary);
    color: var(--light);
    padding: 30px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.rules-highlight h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.rules-highlight ul {
    list-style: none;
}

.rules-highlight li {
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.rules-highlight i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 20px;
}

/* Prizes Section */
.prizes {
    padding: 100px 15px;
    text-align: center;
}

.prizes h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 60px;
}

.prizes-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.prize-card {
    background-color: var(--light);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: var(--transition);
    position: relative;
}

.prize-card:hover {
    transform: translateY(-10px);
}

.prize-card.featured {
    background-color: var(--primary);
    color: var(--light);
    transform: scale(1.05);
}

.prize-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.prize-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
}

.colored-ball {
    background: linear-gradient(135deg, red, blue, green, orange, purple);
}

.black-ball {
    background-color: black;
    box-shadow: 0 0 20px rgba(255, 222, 0, 0.7);
}

.multiple-balls {
    background: var(--light);
    box-shadow: inset 0 0 0 2px var(--primary);
    overflow: hidden;
}

.multiple-balls::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    top: -20px;
    left: -20px;
    background: repeating-radial-gradient(
        circle at 20px 20px,
        red 0,
        red 10px,
        blue 10px,
        blue 20px,
        green 20px,
        green 30px,
        orange 30px,
        orange 40px,
        purple 40px,
        purple 50px
    );
    opacity: 0.7;
}

.prize-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.prize-card.featured h3 {
    color: var(--light);
}

.prize-examples {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.prize-examples span {
    background-color: rgba(80, 0, 81, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.prize-card.featured .prize-examples span {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--light);
}

.jackpot {
    margin-top: 20px;
    background-color: var(--secondary);
    padding: 15px 20px;
    border-radius: 8px;
}

.jackpot-value {
    color: var(--primary);
    font-size: 32px;
    font-weight: 800;
}

.chance-text {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.7;
}

/* Challenge Section */
.challenge {
    background: url('https://cdnjs.cloudflare.com/ajax/libs/placeholder-loading/0.5.0/placeholder-loading.min.js') center/cover no-repeat;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 100px 15px;
    text-align: center;
}

.challenge-content {
    max-width: 800px;
    margin: 0 auto;
}

.challenge h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.challenge p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}


/* Partners */
.partners {
    text-align: center;
    margin-top: 50px;
}

.partners h3 {
    margin-bottom: 30px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    width: 150px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    padding: 10px;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.placeholder-logo {
    font-weight: 700;
    color: var(--text-lighter);
    font-size: 1.1rem;
}

/* Testimonials Section */
.winners {
    padding: 100px 15px;
    text-align: center;
    background-color: var(--gray);
}

.winners h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 60px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: var(--light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-10px);
}

.winner-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ddd;
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.win-amount {
    color: var(--secondary);
    background-color: var(--primary);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}


.win-counter {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.counter h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.counter p {
    font-weight: 600;
    color: var(--text-gray);
    font-size: 0.9rem;
}



/* ====== LOCATION SECTION ====== */
.location-section {
    background-color: var(--bg-light);
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.location-map {
    flex: 1;
    min-width: 300px;
    height: 350px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #999;
    border-radius: 10px;
}

.location-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.location-info p {
    margin-bottom: 15px;
}

.location-info i {
    color: var(--primary);
    margin-right: 10px;
}

.location-info .cta-btn {
    margin-top: 20px;
}


.location-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-map iframe:hover {
    transform: scale(1.02);
}

/* FAQ Section */
.faq {
    padding: 100px 15px;
    text-align: center;
}

.faq h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    background-color: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(80, 0, 81, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #500051 0%, #7a007c 100%);
    color: var(--light);
    padding: 80px 15px;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 80px 15px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--light);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #777;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero {
        padding: 80px 15px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .table-visual {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        gap: 60px;
        text-align: center;
        padding: 60px 15px 100px;
    }

    .hero-content {
        max-width: 100%;
    }

    .table-visual {
        margin-top: 40px;
    }

    .steps-container, 
    .prizes-container,
    .testimonial-container {
        gap: 20px;
    }

    .step, 
    .prize-card, 
    .testimonial {
        min-width: calc(50% - 20px);
    }

    .nav-links {
        display: none;
    }

    nav {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 15px; /* Change from padding: 60px 0; to include horizontal padding */
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .step, 
    .prize-card, 
    .testimonial {
        min-width: 100%;
    }

    .table-visual {
        width: 300px;
        height: 300px;
    }

    .balls-rack {
        width: 150px;
        height: 150px;
    }

    .ball {
        width: 30px;
        height: 30px;
    }

    .ball-1 {
        top: 15px;
        left: 60px;
    }

    .ball-2 {
        top: 55px;
        left: 25px;
    }

    .ball-3 {
        top: 55px;
        left: 95px;
    }

    .ball-black {
        top: 55px;
        left: 60px;
    }

    .ball-5 {
        top: 95px;
        left: 40px;
    }

    .ball-6 {
        top: 95px;
        left: 80px;
    }

    .cue-ball {
        width: 30px;
        height: 30px;
        bottom: 70px;
    }

    .cue {
        height: 160px;
        bottom: -40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        max-width: 100%;
        text-align: center;
    }

    .footer-links {
        width: 100%;
    }

    .footer-column {
        min-width: calc(50% - 15px);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .btn-primary.large {
        padding: 14px 30px;
        font-size: 16px;
    }

    .footer-column {
        min-width: 100%;
    }
}



/* Mobile menu toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--primary);
        padding: 60px 30px;
        transition: right 0.3s ease;
        z-index: 1001;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu a {
        display: block;
        color: var(--light);
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: var(--light);
        cursor: pointer;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Additional Visual Elements */
.floating-balls {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-ball {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 6s infinite ease-in-out;
}

/* Prize Highlight Animation */
.jackpot-value {
    position: relative;
    display: inline-block;
}

.jackpot-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    animation: expand 3s infinite;
}

@keyframes expand {
    0%, 100% {
        width: 0;
        left: 50%;
    }
    50% {
        width: 100%;
        left: 0;
    }
}

/* Enhance animation for grand prize */
.prize-card.featured {
    overflow: hidden;
}

.prize-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 222, 0, 0.05) 10px,
        rgba(255, 222, 0, 0.05) 20px
    );
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.prize-card.featured > * {
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhance table visual */
.table-visual::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
    z-index: -1;
    animation: spinGlow 10s linear infinite;
}

@keyframes spinGlow {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .hero, .how-to-play, .prizes, .challenge, .winners, .faq, .final-cta {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero, .how-to-play, .prizes, .challenge, .winners, .faq, .final-cta {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .container {
        padding: 0 10px;
    }
}