html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-size: 60px 60px;
    animation: move 12s linear infinite;
    opacity: 0.6;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.bonus-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-banner h1 {
    font-size: clamp(2.5rem, 2vw, 4.5rem);
    font-weight: 900;
    padding-top: 60px;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;

    @media (max-width: 768px) {
        font-size: clamp(1.5rem, 1.5vw, 4.5rem);
    }
}

.highlight-number {
    background: linear-gradient(45deg, #fff, #ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-banner .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: rgba(245, 87, 108, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
    text-align: center;
}

.feature-number {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    color: #ffdd00;
}

.feature-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.sparkle-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { left: 20%; top: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { left: 80%; top: 30%; animation-delay: 1s; }
.sparkle:nth-child(3) { left: 15%; top: 70%; animation-delay: 2s; }
.sparkle:nth-child(4) { left: 85%; top: 80%; animation-delay: 0.5s; }
.sparkle:nth-child(5) { left: 50%; top: 15%; animation-delay: 1.5s; }
.sparkle:nth-child(6) { left: 70%; top: 60%; animation-delay: 2.5s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-banner {
        height: 500px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .feature-highlights {
        display: none;
        gap: 20px;
        margin-top: 25px;
    }

    .feature {
        min-width: 120px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        height: 400px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        letter-spacing: 1px;
    }

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

    .bonus-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

.footer {
    position: relative;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 60px 0 20px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-size: 60px 60px;
    animation: move 12s linear infinite;
    opacity: 0.4;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-top {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-top h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, #ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.footer-top p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.promo-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.promo-button:hover::before {
    left: 100%;
}

.promo-button:hover {
    background: rgba(245, 87, 108, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(45deg, #fff, #ffdd00);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

.footer-section a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ffdd00;
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-section a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffdd00;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 221, 0, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #ffdd00;
}

.sparkle-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffdd00;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { left: 90%; top: 30%; animation-delay: 1s; }
.sparkle:nth-child(3) { left: 20%; top: 80%; animation-delay: 2s; }
.sparkle:nth-child(4) { left: 80%; top: 70%; animation-delay: 0.5s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .footer-top h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-left {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-top {
        padding: 25px 15px;
    }

    .footer-top h2 {
        font-size: 1.8rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .social-icons {
        justify-content: center;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-size: 40px 40px;
    animation: move 12s linear infinite;
    opacity: 0.4;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.logo::before {
    content: '🎁';
    margin-right: 8px;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bonus-badge {
    background: rgba(255, 221, 0, 0.9);
    color: #f5576c;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    position: absolute;
    top: -8px;
    right: -15px;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 8px;
    left: 50%;
    background: linear-gradient(45deg, #fff, #ffdd00);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Special styling for Bonuses menu item */
.nav-menu .bonus-item a {
    background: rgba(255, 221, 0, 0.2);
    border-radius: 20px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 221, 0, 0.3);
}

.nav-menu .bonus-item a:hover {
    background: rgba(255, 221, 0, 0.3);
    box-shadow: 0 5px 15px rgba(255, 221, 0, 0.2);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-signup {
    color: #f5576c;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.95);
    position: relative;
}

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

.btn-signup:hover::before {
    left: 100%;
}

.btn-signup:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 25px 20px;
}

.mobile-promo {
    background: rgba(255, 221, 0, 0.2);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 221, 0, 0.3);
}

.mobile-promo-text {
    color: #ffdd00;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-menu a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ffdd00;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #fff;
    padding-left: 20px;
    border-bottom-color: rgba(255, 221, 0, 0.3);
}

.mobile-nav-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-actions .btn {
    text-align: center;
    padding: 15px 20px;
    font-size: 1rem;
}

.sparkle-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffdd00;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { left: 15%; top: 30%; animation-delay: 0s; }
.sparkle:nth-child(2) { left: 85%; top: 40%; animation-delay: 1s; }
.sparkle:nth-child(3) { left: 50%; top: 20%; animation-delay: 2s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}


/* Media Queries */
@media (max-width: 990px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-container {
        height: 70px;
    }

    .navbar {
        height: 70px;
    }

    body {
        padding-top: 70px;
    }

    .mobile-menu {
        top: 70px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .navbar {
        height: 60px;
    }

    body {
        padding-top: 60px;
    }

    .mobile-menu {
        top: 60px;
    }

    .logo {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .bonus-badge {
        font-size: 0.6rem;
        padding: 1px 6px;
        right: -10px;
    }
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%);
    background-size: 60px 60px;
    animation: move 12s linear infinite;
    opacity: 0.4;
    z-index: -1;
}

@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Headings */
.container h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 40px 0 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.container h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #fff, #ffdd00);
    border-radius: 2px;
}

.container h2 strong {
    font-weight: inherit;
    background: linear-gradient(45deg, #fff, #ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container h2:first-child {
    margin-top: 0;
}

/* Paragraphs */
.container p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.container p strong {
    color: #ffdd00;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 221, 0, 0.3);
}

/* Lists */
.container ul, ol {
    margin: 20px 0;
    padding-left: 30px;
}

.container li {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.container ul li {
    list-style: none;
}

.container ul li::before {
    content: '🎁';
    position: absolute;
    left: -30px;
    top: 0;
    font-size: 1em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.container li em {
    color: #ffdd00;
    font-style: italic;
    font-weight: 600;
}

/* Tables */
.container .table-wrapper {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 221, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.container .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.container table {
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    min-width: 600px;
}

.container tbody tr:first-child td {
    background: rgba(255, 221, 0, 0.2);
    color: #fff;
    font-weight: bold;
    padding: 15px 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    border-bottom: 2px solid rgba(255, 221, 0, 0.5);
}

.container tbody tr:last-child td {
    background: rgba(255, 221, 0, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.9em;
    text-align: center;
    padding: 12px 20px;
}

.container td {
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 221, 0, 0.1);
    text-align: center;
}

.container tbody tr:not(:first-child):not(:last-child):hover {
    background: rgba(255, 221, 0, 0.05);
}

.container tbody tr:not(:first-child):not(:last-child):nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.container td strong, td p strong {
    color: #ffdd00;
    font-weight: 700;
}

/* Sparkle effects */
.container .sparkle-effects {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.container .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffdd00;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.container .sparkle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.container .sparkle:nth-child(2) { left: 90%; top: 30%; animation-delay: 1s; }
.container .sparkle:nth-child(3) { left: 20%; top: 80%; animation-delay: 2s; }
.container .sparkle:nth-child(4) { left: 80%; top: 70%; animation-delay: 0.5s; }
.container .sparkle:nth-child(5) { left: 50%; top: 15%; animation-delay: 1.5s; }
.container .sparkle:nth-child(6) { left: 30%; top: 60%; animation-delay: 2.5s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    /* Table mobile scroll indicator */
    .container .table-container::after {
        content: '← Scroll horizontally to see more →';
        display: block;
        text-align: center;
        padding: 10px;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        background: rgba(255, 221, 0, 0.1);
        margin-top: -1px;
        font-style: italic;
    }
}

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

.games-header {
    text-align: center;
    margin-bottom: 40px;
}

.bonus-badge {
    display: inline-block;
    background: rgba(255, 221, 0, 0.2);
    border: 2px solid rgba(255, 221, 0, 0.5);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.games-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #fff, #ffdd00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.games-container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 221, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.games-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 1700px;
}

.games-row {
    display: flex;
    gap: 15px;
}

.game-card {
    position: relative;
    flex: 0 0 200px;
    width: 270px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 221, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 221, 0, 0.3);
    border-color: rgba(255, 221, 0, 0.7);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.9) 0%, rgba(245, 87, 108, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-title {
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #ffdd00;
}

.game-provider {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 300;
}

.new-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4757;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.bonus-highlight {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 221, 0, 0.9);
    color: #f5576c;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-hint {
    text-align: center;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-style: italic;
}

.games-container::-webkit-scrollbar {
    height: 8px;
}

.games-container::-webkit-scrollbar-track {
    background: rgba(255, 221, 0, 0.1);
    border-radius: 10px;
}

.games-container::-webkit-scrollbar-thumb {
    background: rgba(255, 221, 0, 0.5);
    border-radius: 10px;
}

.games-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 221, 0, 0.7);
}

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

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffdd00;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { left: 90%; top: 30%; animation-delay: 1s; }
.sparkle:nth-child(3) { left: 20%; top: 80%; animation-delay: 2s; }
.sparkle:nth-child(4) { left: 80%; top: 70%; animation-delay: 0.5s; }
.sparkle:nth-child(5) { left: 50%; top: 15%; animation-delay: 1.5s; }
.sparkle:nth-child(6) { left: 30%; top: 60%; animation-delay: 2.5s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .games-container {
        padding: 15px;
    }

    .games-wrapper {
        gap: 15px;
        min-width: 1400px;
    }

    .games-row {
        gap: 15px;
    }

    .game-card {
        flex: 0 0 180px;
        width: 250px;
        height: 220px;
    }

    .scroll-hint {
        font-size: 0.8rem;
    }
}

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

    .games-container {
        padding: 10px;
    }

    .games-wrapper {
        gap: 10px;
        min-width: 1300px;
    }

    .games-row {
        gap: 10px;
    }

    .game-card {
        flex: 0 0 160px;
        width: 220px;
        height: 170px;
    }

    .game-overlay {
        padding: 10px;
    }

    .game-title {
        font-size: 0.8rem;
    }

    .game-provider {
        font-size: 0.6rem;
    }

    .bonus-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}