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;
}
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: linear-gradient(135deg, #0a0b1e 0%, #1a1b3a 50%, #2a2b4a 100%);
    color: white;
    overflow-x: hidden;
}

.header {
    background: rgba(10, 11, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #4169e1;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4169e1, #00bfff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(65, 105, 225, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-menu li:not(.auth-buttons) a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #4169e1, #00bfff);
    transition: width 0.3s ease;
}

.nav-menu li:not(.auth-buttons) a:hover {
    color: white;
    transform: translateY(-1px);
}

.nav-menu li:not(.auth-buttons) a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.auth-buttons .btn {
    text-decoration: none !important;
}

.auth-buttons .btn:hover {
    transform: translateY(-2px);
}

.auth-buttons .btn::after {
    display: none !important;
}

@media (max-width: 900px) {
    .auth-buttons {
        display: none;
    }
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid #4169e1;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.btn-login:hover {
    background: #4169e1;
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.4);
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #1a1b3a;
    font-weight: 600;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.btn-register:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    color: #0a0b1e;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4169e1;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Banner Styles */
.banner {
    margin-top: 80px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
            radial-gradient(circle at 20% 80%, rgba(65, 105, 225, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
            linear-gradient(135deg, #0a0b1e 0%, #1a1b3a 50%, #2a2b4a 100%);
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: twinkle 10s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.banner-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.banner h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4169e1, #00bfff, #ffd700, #4169e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(65, 105, 225, 0.5);
}

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

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #4169e1, #00bfff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
    position: relative;
    overflow: hidden;
}

.banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transition: left 0.3s ease;
    z-index: -1;
}

.banner-btn:hover::before {
    left: 0;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.6);
    color: #0a0b1e;
}

/* Mobile Styles */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 11, 30, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 2px solid #4169e1;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        background: rgba(65, 105, 225, 0.1);
    }

    .nav-menu .auth-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        padding: 0 2rem;
        width: 100%;
        align-items: center;
    }

    .nav-menu .auth-buttons .btn {
        width: 200px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    @media (max-width: 768px) {
        .banner h1 {
            font-size: 2.5rem;
        }

        .banner-subtitle {
            font-size: 1.1rem;
            padding: 0 1rem;
        }

        .banner-btn {
            padding: 0.8rem 2rem;
            font-size: 1rem;
        }

        .header-container {
            padding: 0 1rem;
        }
    }

    @media (max-width: 480px) {
        .logo {
            font-size: 1.5rem;
        }

        .banner h1 {
            font-size: 2rem;
        }

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

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0b1e 0%, #1a1b3a 100%);
    border-top: 2px solid #4169e1;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4169e1, #00bfff, #4169e1, transparent);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-brand {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4169e1, #00bfff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    background: rgba(65, 105, 225, 0.2);
    color: #4169e1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(65, 105, 225, 0.3);
}

.social-link:hover {
    background: #4169e1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.4);
}

.footer-title {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #4169e1;
    padding-left: 10px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #4169e1;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(65, 105, 225, 0.3);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-payments {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(65, 105, 225, 0.1);
    border-radius: 10px;
    border-left: 4px solid #4169e1;
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
}

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

    .footer-logo {
        grid-column: 1 / -1;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

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

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

    .footer-payments {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }
}

/* Bonuses Section */
.bonuses-section {
    width: 100%;
    padding: 4rem 0;
    position: relative;
}

.bonuses-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4169e1, #00bfff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bonuses-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.bonus-card {
    flex: 1;
    max-width: 320px;
    min-width: 260px;
    background: linear-gradient(145deg, rgba(65, 105, 225, 0.1), rgba(26, 27, 58, 0.8));
    border: 2px solid rgba(65, 105, 225, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(65, 105, 225, 0.1), rgba(0, 191, 255, 0.1));
    transition: left 0.3s ease;
    z-index: 1;
}

.bonus-card:hover::before {
    left: 0;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: #4169e1;
    box-shadow: 0 20px 40px rgba(65, 105, 225, 0.3);
}

.bonus-content {
    position: relative;
    z-index: 2;
}

.bonus-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #4169e1, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
}

.bonus-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-amount {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4169e1, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.bonus-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.bonus-btn {
    display: inline-block;
    background: linear-gradient(45deg, #4169e1, #00bfff);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.bonus-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transition: left 0.3s ease;
    z-index: -1;
}

.bonus-btn:hover::before {
    left: 0;
}

.bonus-btn:hover {
    color: #0a0b1e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.4);
}

/* Special card highlighting */
.bonus-card:nth-child(2) {
    border-color: #ffd700;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(26, 27, 58, 0.8));
}

.bonus-card:nth-child(2) .bonus-icon {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a0b1e;
}

.bonus-card:nth-child(2)::after {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -25px;
    background: #ffd700;
    color: #0a0b1e;
    padding: 0.3rem 2rem;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .bonuses-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .bonuses-container {
        padding: 0 1rem;
    }

    .bonuses-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .bonus-card {
        flex: none;
        min-width: 320px;
        max-width: 320px;
        scroll-snap-align: center;
    }

    /* Scrollbar styling */
    .bonuses-grid::-webkit-scrollbar {
        height: 8px;
    }

    .bonuses-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .bonuses-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(45deg, #4169e1, #00bfff);
        border-radius: 10px;
    }

    .bonuses-grid::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(45deg, #00bfff, #4169e1);
    }
}

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

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        min-width: 260px;
        padding: 1.5rem 1rem;
    }

    .bonus-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .bonus-title {
        font-size: 1.2rem;
    }

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

    .section-title {
        font-size: 1.8rem;
    }
}

.tournaments-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4169e1, #00bfff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.tournaments-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.tournament-card {
    flex: 1;
    max-width: 280px;
    background: linear-gradient(145deg, rgba(65, 105, 225, 0.1), rgba(26, 27, 58, 0.8));
    border: 2px solid rgba(65, 105, 225, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(65, 105, 225, 0.1), rgba(0, 191, 255, 0.1));
    transition: left 0.3s ease;
    z-index: 1;
}

.tournament-card:hover::before {
    left: 0;
}

.tournament-card:hover {
    transform: translateY(-10px);
    border-color: #4169e1;
    box-shadow: 0 20px 40px rgba(65, 105, 225, 0.3);
}

.tournament-content {
    position: relative;
    z-index: 2;
}

.tournament-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #4169e1, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.4);
}

.tournament-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tournament-prize {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4169e1, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.tournament-info {
    margin-bottom: 1.5rem;
}

.tournament-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0;
}

.tournament-detail-label {
    font-weight: 500;
}

.tournament-detail-value {
    font-weight: bold;
    color: #4169e1;
}

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

.tournament-btn {
    display: inline-block;
    background: linear-gradient(45deg, #4169e1, #00bfff);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tournament-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    transition: left 0.3s ease;
    z-index: -1;
}

.tournament-btn:hover::before {
    left: 0;
}

.tournament-btn:hover {
    color: #0a0b1e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(65, 105, 225, 0.4);
}

/* Time remaining indicator */
.time-remaining {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 69, 0, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Special card highlighting */
.tournament-card:nth-child(1) {
    border-color: #ffd700;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(26, 27, 58, 0.8));
}

.tournament-card:nth-child(1) .tournament-icon {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a0b1e;
}

.tournament-card:nth-child(1)::after {
    content: 'HOT';
    position: absolute;
    top: 15px;
    right: -20px;
    background: #ff4500;
    color: white;
    padding: 0.3rem 1.5rem;
    font-size: 0.7rem;
    font-weight: bold;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

/* Live indicator */
.live-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid #00ff00;
    color: #00ff00;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .tournaments-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .tournaments-container {
        padding: 0 1rem;
    }

    .tournaments-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 1.5rem;
        padding: 1rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .tournament-card {
        flex: none;
        min-width: 320px;
        max-width: 320px;
        scroll-snap-align: center;
    }

    /* Scrollbar styling */
    .tournaments-grid::-webkit-scrollbar {
        height: 8px;
    }

    .tournaments-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .tournaments-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(45deg, #4169e1, #00bfff);
        border-radius: 10px;
    }

    .tournaments-grid::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(45deg, #00bfff, #4169e1);
    }
}

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

    .section-subtitle {
        font-size: 1rem;
    }
}

.tournaments-section {
    margin: 40px auto;
}

@media (max-width: 480px) {
    .tournament-card {
        padding: 1.5rem 1rem;
    }

    .tournament-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .tournament-title {
        font-size: 1.2rem;
    }

    .tournament-prize {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
/* Main Container */
.casino-content {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(26, 27, 58, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(65, 105, 225, 0.2);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.casino-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(65, 105, 225, 0.05), rgba(0, 191, 255, 0.05));
    transition: left 0.3s ease;
    z-index: 1;
}

.casino-content:hover::before {
    left: 0;
}

.casino-content:hover {
    transform: translateY(-5px);
    border-color: #4169e1;
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.2);
    transition: all 0.3s ease;
}

.content-inner {
    position: relative;
    z-index: 2;
}

/* Headings */
.section-title {
    font-size: 1.8rem;
    color: #ffd700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.section-title:first-child {
    margin-top: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #4169e1, #00bfff);
    border-radius: 2px;
}

/* Paragraphs */
.content-text {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

/* Lists */
.content-list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-list li {
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.content-list li::marker {
    color: #4169e1;
}

/* Strong text */
.highlight-text {
    color: #ffd700;
    font-weight: bold;
}

/* Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.3);
    backdrop-filter: blur(10px);
}

.casino-table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    background: transparent;
    font-size: 0.9rem;
}

.casino-table thead {
    background: linear-gradient(45deg, #4169e1, #00bfff);
}

.casino-table th {
    padding: 1rem 0.8rem;
    text-align: left;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
}

.casino-table td {
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    vertical-align: top;
}

.casino-table tr:hover {
    background: rgba(65, 105, 225, 0.1);
}

.casino-table tr:last-child td {
    border-bottom: none;
}

/* Table scrollbar styling */
.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #4169e1, #00bfff);
    border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #00bfff, #4169e1);
}

/* FAQ Section */
.faq-section {
    margin-top: 2rem;
}

.faq-item {
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(65, 105, 225, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(65, 105, 225, 0.2);
}

.faq-question {
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Steps list styling */
.steps-list {
    background: rgba(65, 105, 225, 0.1);
    border: 1px solid rgba(65, 105, 225, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.steps-list li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.steps-list li::marker {
    color: #ffd700;
    font-weight: bold;
}

/* Benefits list styling */
.benefits-list {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(65, 105, 225, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.benefits-list::before {
    content: '⭐';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li::marker {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .casino-content {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .casino-content {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .content-text {
        font-size: 0.95rem;
    }

    .casino-table {
        min-width: 450px;
        font-size: 0.85rem;
    }

    .casino-table th, .casino-table td {
        padding: 0.6rem 0.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0;
    }

    .casino-content {
        padding: 1.5rem 1rem;
        margin: 0 0.25rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .content-text {
        font-size: 0.9rem;
    }

    .casino-table {
        min-width: 400px;
        font-size: 0.8rem;
    }

    .faq-item, .steps-list, .benefits-list {
        padding: 1rem;
    }
}