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, #4facfe 0%, #00f2fe 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: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.08"><circle cx="40" cy="40" r="6"/><circle cx="40" cy="40" r="20" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.1"/></g></g></svg>');
    background-size: 80px 80px;
    animation: rotate 20s linear infinite;
    opacity: 0.7;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.live-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: blink 1s ease-in-out infinite alternate;
}

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

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

.highlight-word {
    background: linear-gradient(45deg, #fff, #00f2fe);
    -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(.8rem, 2vw, 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(0, 242, 254, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.game-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.game-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    text-align: center;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.game-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.game-players {
    font-size: 0.8rem;
    opacity: 0.8;
    color: #00f2fe;
}

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

.card {
    position: absolute;
    width: 50px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: floatCard 8s ease-in-out infinite;
}

.card:nth-child(1) {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
}

.card:nth-child(2) {
    right: 5%;
    top: 30%;
    animation-delay: -2s;
}

.card:nth-child(3) {
    left: 15%;
    bottom: 20%;
    animation-delay: -4s;
}

.card:nth-child(4) {
    right: 15%;
    bottom: 30%;
    animation-delay: -6s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
        opacity: 0.8;
    }
}

.casino-chips {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fff, #00f2fe);
    animation: chipSpin 6s linear infinite;
}

.chip-1 { top: 15%; right: 20%; animation-delay: 0s; }
.chip-2 { top: 60%; left: 10%; animation-delay: -2s; }
.chip-3 { bottom: 25%; right: 25%; animation-delay: -4s; }

@keyframes chipSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

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

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

    .game-cards {
        gap: 15px;
        margin-top: 25px;
        display: none;
    }

    .game-card {
        min-width: 120px;
        padding: 15px;
    }

    .floating-cards .card {
        display: none;
    }
}

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

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

    .game-cards {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .live-indicator {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.08"><circle cx="40" cy="40" r="6"/><circle cx="40" cy="40" r="20" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.1"/></g></g></svg>');
    background-size: 80px 80px;
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.live-status-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.live-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-indicator {
    display: flex;
    align-items: center;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: blink 1s ease-in-out infinite alternate;
}

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

.live-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #00f2fe;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.join-live-btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.join-live-btn:hover {
    background: rgba(0, 242, 254, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px 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;
    color: #fff;
}

.footer-section h3::before {
    content: '●';
    color: #fff;
    margin-right: 10px;
    animation: pulse 2s ease-in-out infinite;
}

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

.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;
}

.footer-section a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #00f2fe;
    transform: translateX(8px);
}

.footer-section a:hover::after {
    width: 100%;
}

.game-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.table-row:last-child {
    border-bottom: none;
}

.table-game {
    color: #00f2fe;
    font-weight: bold;
}

.table-players {
    opacity: 0.8;
}

.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: #00f2fe;
}

.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.1);
    border-radius: 10px;
    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: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.3);
}

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

.card {
    position: absolute;
    width: 40px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatCard 8s ease-in-out infinite;
}

.card:nth-child(1) {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
}

.card:nth-child(2) {
    right: 5%;
    top: 60%;
    animation-delay: -3s;
}

.card:nth-child(3) {
    left: 15%;
    bottom: 15%;
    animation-delay: -6s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
}

.casino-chips {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fff, #00f2fe);
    animation: chipFloat 6s ease-in-out infinite;
}

.chip-1 { top: 30%; right: 20%; animation-delay: 0s; }
.chip-2 { bottom: 40%; left: 25%; animation-delay: -2s; }
.chip-3 { top: 70%; right: 30%; animation-delay: -4s; }

@keyframes chipFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

    .live-status-banner {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .live-info {
        flex-direction: column;
        gap: 15px;
    }

    .live-stats {
        justify-content: center;
        gap: 20px;
    }

    .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;
    }

    .live-status-banner {
        padding: 15px;
    }

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

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

    .floating-cards .card {
        display: none;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 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: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="4"/><circle cx="30" cy="30" r="15" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.08"/></g></g></svg>');
    background-size: 60px 60px;
    animation: rotate 20s linear infinite;
    opacity: 0.6;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.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 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.live-indicator {
    display: flex;
    align-items: center;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    gap: 6px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    animation: blink 1s ease-in-out infinite alternate;
}

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    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::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 8px;
    left: 50%;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

/* Special styling for Live Casino menu item */
.nav-menu .live-item {
    position: relative;
}

.nav-menu .live-item a {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #00f2fe;
}

.nav-menu .live-item a:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.2);
    color: #fff;
}

.nav-menu .live-item::before {
    content: '●';
    position: absolute;
    top: 5px;
    right: 5px;
    color: #ff0000;
    font-size: 0.8rem;
    animation: pulse 2s ease-in-out infinite;
}

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

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

.player-count {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
}

.player-count::before {
    content: '👥';
    font-size: 1rem;
}

.btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    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-join-live {
    color: #00f2fe;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.95);
    position: relative;
}

.btn-join-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,242,254,0.2), transparent);
    transition: left 0.5s;
}

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

.btn-join-live:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 242, 254, 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, #4facfe 0%, #00f2fe 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-live-status {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-live-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.mobile-stats {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    font-size: 0.8rem;
}

.mobile-stat {
    text-align: center;
}

.mobile-stat-number {
    font-weight: bold;
    color: #00f2fe;
    display: block;
}

.mobile-stat-label {
    opacity: 0.8;
}

.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::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, #00f2fe, #4facfe);
    transition: width 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #00f2fe;
    padding-left: 10px;
}

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

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

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

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

.floating-chip {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fff, #00f2fe);
    animation: chipFloat 6s ease-in-out infinite;
}

.chip-1 { top: 20%; right: 15%; animation-delay: 0s; }
.chip-2 { top: 60%; left: 10%; animation-delay: -2s; }

@keyframes chipFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Demo content */
.demo-content {
    padding: 40px 20px;
    text-align: center;
    color: #333;
}

/* Media Queries */
@media (max-width: 1024px) {
    .player-count {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }
}

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

    .hamburger {
        display: flex;
    }

    .nav-container {
        height: 70px;
        padding: 0 15px;
    }

    .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;
        gap: 6px;
        letter-spacing: 1px;
    }

    .live-indicator {
        padding: 3px 8px;
        font-size: 0.6rem;
    }

    .live-dot {
        width: 5px;
        height: 5px;
    }
}

@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;
        gap: 6px;
        letter-spacing: 1px;
    }

    .live-indicator {
        padding: 3px 8px;
        font-size: 0.6rem;
    }

    .live-dot {
        width: 5px;
        height: 5px;
    }
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 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: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.08"><circle cx="40" cy="40" r="6"/><circle cx="40" cy="40" r="20" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.1"/></g></g></svg>');
    background-size: 80px 80px;
    animation: rotate 20s linear infinite;
    opacity: 0.5;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

h2::before {
    content: '●';
    color: #fff;
    margin-right: 10px;
    animation: pulse 2s ease-in-out infinite;
}

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

.container h2 strong {
    font-weight: inherit;
}

.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: #fff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 242, 254, 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: -25px;
    color: #00f2fe;
    font-size: 0.8em;
    top: 2px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.7; }
    100% { opacity: 1; text-shadow: 0 0 8px rgba(0, 242, 254, 0.5); }
}

.container ol li {
    color: rgba(255, 255, 255, 0.9);
}

.container li strong {
    color: #00f2fe;
    font-weight: 700;
}

/* Tables */
.container .table-wrapper {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 242, 254, 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(0, 242, 254, 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(0, 242, 254, 0.5);
}

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

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

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

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

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

.container .floating-chip {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fff, #00f2fe);
    animation: chipFloat 6s ease-in-out infinite;
}

.container .chip-1 { top: 20%; right: 15%; animation-delay: 0s; }
.container .chip-2 { top: 60%; left: 10%; animation-delay: -2s; }
.container .chip-3 { top: 80%; right: 25%; animation-delay: -4s; }
.container .chip-4 { top: 30%; left: 80%; animation-delay: -1s; }
.container .chip-5 { top: 70%; right: 70%; animation-delay: -3s; }

@keyframes chipFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

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

.container .card {
    position: absolute;
    width: 40px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatCard 8s ease-in-out infinite;
}

.container .card:nth-child(1) {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
}

.container .card:nth-child(2) {
    right: 5%;
    top: 60%;
    animation-delay: -3s;
}

.container .card:nth-child(3) {
    left: 15%;
    bottom: 15%;
    animation-delay: -6s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 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(0, 242, 254, 0.1);
        margin-top: -1px;
        font-style: italic;
    }

    .container .floating-cards .card {
        display: none;
    }
}

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

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

.live-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    animation: blink 1s ease-in-out infinite alternate;
}

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

.games-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
}

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

.games-scroll-container {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.games-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 242, 254, 0.5) rgba(0, 242, 254, 0.2);
}

.games-row {
    display: flex;
    gap: 15px;
    min-width: fit-content;
}

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

.games-grid::-webkit-scrollbar-track {
    background: rgba(0, 242, 254, 0.1);
    border-radius: 10px;
}

.games-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 242, 254, 0.5);
    border-radius: 10px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 242, 254, 0.7);
}

.game-card {
    position: relative;
    flex: 0 0 auto;
    padding: 0;
    width: 270px;
    height: 270px;
    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: 1px solid rgba(0, 242, 254, 0.3);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.3);
    border-color: rgba(0, 242, 254, 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(79, 172, 254, 0.9) 0%, rgba(0, 242, 254, 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: #fff;
}

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

.live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-badge .mini-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: white;
    animation: blink 1s ease-in-out infinite alternate;
}

.players-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 242, 254, 0.9);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: bold;
    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;
}

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

.floating-chip {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fff, #00f2fe);
    animation: chipFloat 6s ease-in-out infinite;
}

.chip-1 { top: 20%; right: 15%; animation-delay: 0s; }
.chip-2 { top: 60%; left: 10%; animation-delay: -2s; }
.chip-3 { top: 80%; right: 25%; animation-delay: -4s; }
.chip-4 { top: 30%; left: 80%; animation-delay: -1s; }
.chip-5 { top: 70%; right: 70%; animation-delay: -3s; }

@keyframes chipFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

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

.card {
    position: absolute;
    width: 40px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: floatCard 8s ease-in-out infinite;
}

.card:nth-child(1) {
    left: 5%;
    top: 20%;
    animation-delay: 0s;
}

.card:nth-child(2) {
    right: 5%;
    top: 60%;
    animation-delay: -3s;
}

.card:nth-child(3) {
    left: 15%;
    bottom: 15%;
    animation-delay: -6s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
}

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

    .games-grid {
        padding: 15px;
        gap: 15px;
    }

    .game-card {
        width: 180px;
        height: 110px;
    }

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

    .floating-cards .card {
        display: none;
    }
}

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

    .games-grid {
        padding: 10px;
        gap: 10px;
    }

    .game-card {
        width: 160px;
        height: 100px;
    }

    .game-overlay {
        padding: 10px;
    }

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

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

    .live-indicator {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}