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;
    background: #000;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 2px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.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(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
    padding: 15px 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
}

.mobile-menu .nav-link:hover {
    background: rgba(255, 69, 0, 0.1);
    transform: scale(1.05);
}

.mobile-menu .nav-link::after {
    display: none;
}

/* Demo Content */
.demo-content {
    margin-top: 70px;
    padding: 40px 20px;
    text-align: center;
}

.demo-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-content p {
    font-size: 1.2rem;
    color: #d0d0d0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

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

    .logo {
        font-size: 1.3rem;
    }

    .logo-icon {
        padding: 6px 10px;
        font-size: 0.9rem;
    }

    .mobile-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .mobile-menu .nav-link {
        font-size: 1.3rem;
        padding: 12px 25px;
        min-width: 180px;
    }

    .demo-content {
        margin-top: 60px;
        padding: 30px 15px;
    }

    .demo-content h1 {
        font-size: 2rem;
    }

    .demo-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hamburger span {
        width: 22px;
        height: 2px;
    }

    .mobile-menu .nav-link {
        font-size: 1.2rem;
        padding: 10px 20px;
        min-width: 160px;
    }

    .demo-content h1 {
        font-size: 1.8rem;
    }

    .demo-content p {
        font-size: 1rem;
    }
}

/* Animation for smooth appearance */
.header {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Overlay for mobile menu */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.overlay.active {
    display: block;
}

.banner {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg,
    rgba(255, 0, 50, 0.8) 0%,
    rgba(0, 150, 200, 0.8) 50%,
    rgba(255, 0, 100, 0.8) 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    margin-top:60px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/banner.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
    animation: pulseGradient 4s ease-in-out infinite alternate;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    animation: shimmer 3s linear infinite;
}

@keyframes pulseGradient {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.banner-content {
    position: relative;
    z-index: 0;
    max-width: 800px;
    margin: 0 auto;
}

.banner h1 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow:
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 40px rgba(255, 0, 100, 0.3),
            0 0 60px rgba(0, 200, 255, 0.3);
    background: linear-gradient(
            45deg,
            #ffffff 0%,
            #f0f0f0 25%,
            #ffffff 50%,
            #f0f0f0 75%,
            #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow:
                0 0 20px rgba(255, 255, 255, 0.5),
                0 0 40px rgba(255, 0, 100, 0.3),
                0 0 60px rgba(0, 200, 255, 0.3);
    }
    100% {
        text-shadow:
                0 0 30px rgba(255, 255, 255, 0.8),
                0 0 50px rgba(255, 0, 100, 0.5),
                0 0 80px rgba(0, 200, 255, 0.5);
    }
}

.banner p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ff4500 100%);
    color: white;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow:
            0 8px 25px rgba(255, 69, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    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.6s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
            0 12px 35px rgba(255, 69, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #ff6b35 100%);
}

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

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Floating particles animation */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 1.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 2.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 3.5s; }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        min-height: 300px;
        padding: 40px 15px;
    }

    .banner h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .banner p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

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

@media (max-width: 480px) {
    .banner h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .banner p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}


.welcome-section {
    max-width: 1400px;
    margin: 40px auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: white;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bonus-card {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bonus-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.card-1 {
    background: url("../images/promo-1.webp") no-repeat 0 0;
    background-position: center center;
    background-size: cover;
}

.card-2 {
    background: url("../images/promo-2.webp") no-repeat 0 0;
    background-position: center center;
    background-size: cover;
}

.card-3 {
    background: url("../images/promo-3.webp") no-repeat 0 0;
    background-position: center center;
    background-size: cover;
}

.card-4 {
    background: url("../images/promo-4.webp") no-repeat 0 0;
    background-position: center center;
    background-size: cover;
}

.bonus-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bonus-header {
    margin-bottom: 20px;
}

.bonus-number {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bonus-amount {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.bonus-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sign-up-btn {
    background: #ff4500;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.sign-up-btn:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
}

.info-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

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

    .bonus-card {
        height: 250px;
    }

    .bonus-content {
        padding: 25px;
    }

    .bonus-amount {
        font-size: 1.8rem;
    }

    .sign-up-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .bonus-card {
        height: 220px;
    }

    .bonus-content {
        padding: 20px;
    }

    .bonus-amount {
        font-size: 1.6rem;
    }

    .sign-up-btn {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
}

/* Hover animations */
.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 3;
}

.bonus-card:hover::after {
    left: 100%;
}

/* Glowing effect */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.2); }
}

.bonus-card {
    animation: glow 3s ease-in-out infinite;
}

.card-1:hover { animation: none; box-shadow: 0 20px 40px rgba(50, 100, 200, 0.4); }
.card-2:hover { animation: none; box-shadow: 0 20px 40px rgba(40, 160, 120, 0.4); }
.card-3:hover { animation: none; box-shadow: 0 20px 40px rgba(200, 80, 60, 0.4); }
.card-4:hover { animation: none; box-shadow: 0 20px 40px rgba(120, 80, 160, 0.4); }

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #ff230a;
    transform: translateX(5px);
}

.logo-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.logo {
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    margin-right: 10px;
    text-decoration: none;
}

.logo:hover {
    background: #e55a2b;
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    background: #ff230a;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

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

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

    .footer {
        padding: 30px 0 15px;
    }

    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-column a {
        font-size: 13px;
    }
}

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

    .footer {
        padding: 25px 0 15px;
    }

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

    .logo-section {
        justify-content: center;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }
}

/* Smooth animations */
.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.container h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff4500;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.container h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #ff6b35;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container p {
    margin-bottom: 20px;
    color: #d0d0d0;
    text-align: justify;
    line-height: 1.5;
}

.container strong {
    color: #ffffff;
    font-weight: 600;
}

.container ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.container li {
    color: #fff;
    margin-bottom: 12px;
    padding: 12px 0 12px 40px;
    position: relative;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s ease;
}

.container li:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.container li::before {
    content: "▶";
    position: absolute;
    left: 15px;
    color: #ff6b35;
    font-size: 12px;
}

/* Table Styles */
.container .table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
}

.container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #1a1a1a;
}

.container tbody tr:first-child {
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
}

.container tbody tr:first-child td {
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 15px;
}

.container td {
    padding: 15px;
    border-bottom: 1px solid #333;
    color: #d0d0d0;
}

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

.container tbody tr:not(:first-child) td:first-child {
    font-weight: 600;
    color: #ffffff;
}

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

    .container h2 {
        font-size: 1.6rem;
        margin: 30px 0 15px 0;
    }

    .container h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }

    .container li {
        padding: 10px 0 10px 35px;
    }

    .container li::before {
        left: 12px;
    }

    .container .table-wrapper {
        margin: 20px -15px;
        border-radius: 0;
    }

    .container table {
        font-size: 14px;
    }

    .container td {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .container h2 {
        font-size: 1.4rem;
    }

    .container h3 {
        font-size: 1.1rem;
        padding-left: 12px;
    }

    body {
        font-size: 14px;
    }

    .container li {
        padding: 8px 0 8px 30px;
        margin-bottom: 8px;
    }

    .container table {
        font-size: 13px;
    }

    .container td {
        padding: 10px 8px;
    }
}

/* Scroll hint for tables */
.container .table-wrapper::after {
    content: "← Swipe to see more →";
    display: none;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #666;
    pointer-events: none;
}

@media (max-width: 768px) {
    .container .table-wrapper {
        position: relative;
    }

    .container .table-wrapper::after {
        display: block;
    }
}

/* Animations */
.container {
    animation: fadeIn 0.8s ease-out;
}

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

h2 {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.games-nav {
    background: #1e1e1e;
    border-radius: 0;
    padding: 0;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-item:last-child {
    border-right: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.nav-link:hover {
    background: rgba(255, 69, 0, 0.1);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link:hover .nav-icon {
    color: #ff4500;
    transform: scale(1.1);
}

.nav-icon {
    font-size: 18px;
    color: #ff4500;
    transition: all 0.3s ease;
}

.nav-text {
    font-weight: 500;
}

/* Custom icons using CSS */
.icon-slots::before { content: "🎰"; }
.icon-live::before { content: "🎭"; }
.icon-bonus::before { content: "💰"; }
.icon-new::before { content: "⚡"; }
.icon-jackpot::before { content: "💎"; }
.icon-instant::before { content: "⚡"; }
.icon-drops::before { content: "🎪"; }
.icon-table::before { content: "♠️"; }
.icon-providers::before { content: "⚙️"; }

/* Active state simulation */
.nav-item:first-child .nav-link {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .games-nav {
        margin: 15px -20px;
        border-radius: 0;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 13px;
    }

    .nav-icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav-link {
        padding: 12px 14px;
        font-size: 12px;
        gap: 6px;
    }

    .nav-icon {
        font-size: 15px;
    }
}

/* Scroll hint */
.games-nav::after {
    content: "← Swipe to see more categories →";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .games-nav {
        position: relative;
    }

    .games-nav::after {
        opacity: 1;
    }
}

/* Demo content */
.demo-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.demo-section h2 {
    color: #ff4500;
    margin-bottom: 15px;
}

.demo-section p {
    color: #cccccc;
    font-size: 16px;
}

/* Gradient overlay for better contrast */
.games-nav {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
}

/* Animation on load */
.nav-item {
    animation: slideInFromTop 0.5s ease-out;
    animation-fill-mode: both;
}

.nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-item:nth-child(2) { animation-delay: 0.15s; }
.nav-item:nth-child(3) { animation-delay: 0.2s; }
.nav-item:nth-child(4) { animation-delay: 0.25s; }
.nav-item:nth-child(5) { animation-delay: 0.3s; }
.nav-item:nth-child(6) { animation-delay: 0.35s; }
.nav-item:nth-child(7) { animation-delay: 0.4s; }
.nav-item:nth-child(8) { animation-delay: 0.45s; }
.nav-item:nth-child(9) { animation-delay: 0.5s; }

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.racing-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg,
    rgba(10, 20, 40, 0.9) 0%,
    rgba(20, 40, 60, 0.8) 50%,
    rgba(40, 20, 60, 0.9) 100%
    );
    overflow: hidden;
    display: flex;
    align-items: center;
}

.racing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255, 100, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 20%, rgba(255, 0, 150, 0.08) 0%, transparent 50%);
    animation: backgroundPulse 6s ease-in-out infinite alternate;
}

@keyframes backgroundPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}


.main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 30px rgba(0, 255, 255, 0.3); }
    100% { text-shadow: 0 0 50px rgba(0, 255, 255, 0.6); }
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
    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.6s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 69, 0, 0.6);
}

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

.right-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    animation: slideInRight 0.8s ease-out;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff4500, #00ffff, #ff4500);
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.vip-card {
    grid-column: 1 / -1;
}

.vip-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vip-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.vip-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff4500 0%, #ff6b35 100%);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.exclusive-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.feature-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.badge {
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    min-width: 70px;
}

.badge-blue {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.badge-purple {
    background: linear-gradient(135deg, #8e44ad 0%, #663399 100%);
}

.badge-green {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.tournaments-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tournament-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.trophy-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.3;
}

/* Floating elements */
.floating-star {
    position: absolute;
    color: #00ffff;
    font-size: 20px;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.star-1 { top: 10%; left: 5%; animation-delay: 0s; }
.star-2 { top: 20%; right: 10%; animation-delay: 1s; }
.star-3 { bottom: 30%; left: 8%; animation-delay: 2s; }
.star-4 { bottom: 15%; right: 5%; animation-delay: 3s; }

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 15px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .right-content {
        grid-template-columns: 1fr;
    }

    .vip-card {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 20px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.container-slots {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.slots-section {
    padding: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.see-all {
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.see-all:hover {
    background: #ffd700;
    color: #000;
}

.nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(255, 215, 0, 0.3);
}

.slots-carousel {
    position: relative;
    overflow: hidden;
}

.slots-container {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.slots-container::-webkit-scrollbar {
    display: none;
}

.slot-item {
    flex: 0 0 auto;
    width: 200px;
    height: 280px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.slot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #00ff00;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.demo-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: bold;
    z-index: 1;
}

.slot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 10px 10px;
    border-radius: 0 0 15px 15px;
}

.slot-title {
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slot-item {
        width: 180px;
        height: 250px;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .slots-section {
        padding: 15px;
    }

    .slot-item {
        width: 160px;
        height: 220px;
    }

    .section-title {
        font-size: 20px;
    }

    .nav-arrows {
        display: none;
    }
}

@media (max-width: 480px) {
    .slot-item {
        width: 140px;
        height: 200px;
    }

    .slots-container {
        gap: 10px;
    }

    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}