* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Esconder scrollbar em todos os elementos */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #0a0e27;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    /* Esconder scrollbar mas manter scroll funcional */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

html {
    /* Esconder scrollbar mas manter scroll funcional */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

/* ========================================
   PAGE LOAD ANIMATIONS - Cubic Bezier
   ======================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Animação suave ao carregar página */
.sidebar {
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.main-content {
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-section {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.casino-offers-section,
.page-content,
section {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.footer {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.nav-item {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

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

.casino-card {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.casino-card:nth-child(1) { animation-delay: 0.2s; }
.casino-card:nth-child(2) { animation-delay: 0.3s; }
.casino-card:nth-child(3) { animation-delay: 0.4s; }

:root{
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-bg-2: rgba(255, 255, 255, 0.10);
    --glass-border: rgba(255, 255, 255, 0.14);
    --glass-border-soft: rgba(255, 255, 255, 0.10);
    --glass-shadow: 0 18px 55px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.10), inset 0 -1px 0 rgba(0,0,0,0.35);
    --glass-shadow-soft: 0 10px 28px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.06);
    --glass-blur: 18px;
    --glass-radius: 22px;
}

/* Glassmorphism + Morphism UI (global) */
body.ui-glass{
    background: #070b1a;
    position: relative;
}

body.ui-glass::after{
    content: "";
    position: fixed;
    inset: 14px;
    background: transparent;
    border-radius: 30px;
    box-shadow: 0 45px 140px rgba(0,0,0,0.75);
    filter: saturate(1.05) contrast(1.02);
    pointer-events: none;
    z-index: 0;
}

body.index-page.ui-glass::after{
    background-image: url('../images/fundo-bg.png');
    background-image: -webkit-image-set(url('../images/fundo-bg.webp') 1x);
    background-image: image-set(url('../images/fundo-bg.webp') 1x);
    background-position: center 20%;
    background-size: cover;
    background-repeat: no-repeat;
}

body.ui-glass::before{
    content: "";
    position: fixed;
    inset: 14px;
    border-radius: 30px;
    background:
        radial-gradient(1200px 700px at 20% 10%, rgba(99, 102, 241, 0.25), transparent 60%),
        radial-gradient(900px 600px at 85% 20%, rgba(236, 72, 153, 0.18), transparent 60%),
        radial-gradient(900px 600px at 60% 95%, rgba(34, 197, 94, 0.12), transparent 60%),
        rgba(10, 14, 39, 0.72);
    pointer-events: none;
    z-index: 0;
}

body.prozis-page.ui-glass::before{
    background:
        radial-gradient(1200px 700px at 20% 10%, rgba(30, 60, 114, 0.5), transparent 60%),
        radial-gradient(900px 600px at 85% 20%, rgba(42, 82, 152, 0.4), transparent 60%),
        radial-gradient(900px 600px at 60% 95%, rgba(126, 34, 206, 0.3), transparent 60%),
        rgba(10, 14, 39, 0.72);
}

body.ui-glass .main-wrapper{
    position: relative;
    z-index: 10;
}


/* Images: rounded corners + shadow */
body.ui-glass .sidebar img,
body.ui-glass .top-header img,
body.ui-glass .footer img,
body.ui-glass .modal-casino-logo img{
    box-shadow: none;
    border-radius: 12px;
}

body.ui-glass img.modal-background-image{
    border-radius: 0;
    box-shadow: none;
}
body.ui-glass .sidebar,
body.ui-glass .top-header,
body.ui-glass .footer{
    background: rgba(10, 14, 39, 0.45);
    border: 1px solid var(--glass-border-soft);
    border-radius: 20px;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow-soft);
}

body.ui-glass .glass-card,
body.ui-glass .about-profile-card,
body.ui-glass .about-content-card,
body.ui-glass .schedule-day-card,
body.ui-glass .clip-card,
body.ui-glass .casino-card{
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
}

body.ui-glass .page-content-empty{
    margin: 48px 33px 0;
    padding: 80px 30px;
    border-radius: 26px;
    background: rgba(10, 14, 39, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}



/* Glass background panel responsiveness */
@media (max-width: 768px){
    body.ui-glass::after{
        inset: 0;
        border-radius: 0;
        box-shadow: none;
    }
    body.ui-glass::before{
        inset: 0;
        border-radius: 0;
    }
}


/* Layout Principal */
.main-wrapper {
    display: flex;
    min-height: 100vh;
    opacity: 0;
}

.main-wrapper.visible {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Sidebar */
.sidebar {
    width: 240px;
    background: rgba(15, 18, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 15px;
    top: 15px;
    bottom: 15px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar.collapsed .sidebar-nav {
    overflow-y: auto;
    overflow-x: visible;
}

.sidebar.collapsed .nav-item {
    position: relative;
    overflow: visible;
    justify-content: center;
    padding: 12px 0;
}

.sidebar.collapsed .nav-item i {
    margin: 0 0 0 8px;
}

.sidebar.collapsed .sidebar-logo {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar.collapsed .nav-item span {
    opacity: 0;
    width: 0;
    overflow: hidden;
}

.sidebar.collapsed .submenu-arrow {
    display: none;
}

.sidebar:not(.collapsed) .submenu-arrow {
    display: inline-block;
}


.sidebar.collapsed .sidebar-header {
    justify-content: center;
    padding: 20px 10px;
}

.sidebar.collapsed .nav-item::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 18, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 10000;
}

.sidebar.collapsed .nav-item:hover::after {
    opacity: 1;
}

.sidebar.collapsed .submenu {
    display: none;
}

.sidebar.collapsed .active-dot {
    display: none;
}

.sidebar.collapsed .sidebar-toggle {
    transform: rotate(180deg);
    margin-left: -10px;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo {
    width: 140px;
    height: 70px;
    filter: brightness(1.1);
    margin-left: 15px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.sidebar-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 13.5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: visible;
    padding: 15px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #8a8ea8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item span {
    white-space: nowrap;
}


.nav-item i {
    font-size: 13.5px;
    width: 24px;
    text-align: center;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.nav-item.active {
    color: #fff;
}

.nav-item.active .active-dot {
    position: absolute;
    right: 20px;
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
}

.nav-item.fortunebox {
    color: #ff9800;
}

.nav-item.has-submenu .submenu-arrow {
    
    margin-left: auto;
font-size: 12px;
    transition: transform 0.3s ease;

    display: inline-block;
}

.nav-item.has-submenu.open .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.submenu.open {
    max-height: 200px;
}

.submenu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 50px;
    color: #8a8ea8;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}


.submenu-item i {
    width: 16px;
    text-align: center;
    opacity: 0.9;
}
.submenu-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.submenu-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Main Content */
.main-content {
    margin-left: 240px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: margin-left 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Top Header */
.top-header {
    padding: 15px 30px;
    margin: 15px 30px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    background: rgba(15, 18, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: sticky;
    top: 15px;
    z-index: 500;
    will-change: auto;
    contain: layout;
}

.menu-mobile {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 18.0px;
    cursor: pointer;
    padding: 8px;
    margin-right: auto;
}

.login-btn {
    padding: 6px 12px;
    background: linear-gradient(135deg, #9146ff, #772ce8);
    border: 2px solid transparent;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(145, 70, 255, 0.5);
    border-color: rgba(145, 70, 255, 0.3);
}

.login-btn i {
    font-size: 12px;
}

/* User Menu Dropdown */
.user-menu-dropdown {
    position: fixed;
    top: 80px;
    right: 60px;
    background: rgba(20, 25, 45, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0px;
    min-width: 134px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 10000;
    animation: slideDown 0.3s ease;
}

.user-menu-item {
    padding: 12px 16px;
    color: #fff;
    font-size: 10.5px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-menu-item i {
    font-size: 12.0px;
    color: #8a8ea8;
}

/* Login Notification */
.login-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.03);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    color: #fff;
    padding: 14px 18px 14px 18px;
    border-radius: 14px;
    font-weight: 650;
    font-size: 10.5px;
    line-height: 1.35;
    max-width: 360px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.06);
    z-index: 10001;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.login-notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: rgba(16, 185, 129, 0.95);
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.55);
}

.login-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.login-notification.error {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.login-notification.error::before {
    background: rgba(239, 68, 68, 0.95);
    box-shadow: 0 0 14px rgba(239, 68, 68, 0.55);
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding:  40px 20px 80px 20px;
}

.hero-logo {
    width: 220px;
    max-width: 90%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: floatLogo 3s ease-in-out infinite;
}

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

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: bounce 2s ease-in-out infinite;
}

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

/* Casino Offers Section */
.casino-offers-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Prozis Section (match layout/padding of other pages) */
.prozis-section {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.prozis-coming-soon {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0 40px;
}

.prozis-coming-soon h1 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.prozis-coming-soon p {
    margin: 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .prozis-section {
        padding: 30px 18px;
    }
    .prozis-coming-soon h1 {
        font-size: 16px;
    }
}

.casino-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.casino-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.casino-logo {
    width: 120px;
    height: 40px;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.casino-logo img {
    width: 120px;
    height: 40px;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: screen;
}

.casino-name {
    font-size: 15.0px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.casino-card-body {
    display: flex;
    gap: 30px;
    flex: 1;
}

.casino-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 11px;
    color: #8a8ea8;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 15.0px;
    font-weight: 700;
    color: #fff;
}

.info-value.promo-code {
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.casino-card-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #8a8ea8;
}

.badge-item i {
    color: #10b981;
    font-size: 10.5px;
}

.casino-card-actions {
    display: flex;
    gap: 10px;
}

.btn-claim-bonus {
    padding: 14px 32px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 10.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-block;
}

.btn-claim-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-show-more {
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-show-more:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-disabled {
    opacity: 0.55;
    pointer-events: none;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Prozis Card Styling */
.prozis-card {
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.15), rgba(42, 82, 152, 0.1));
    border: 1px solid rgba(42, 82, 152, 0.3);
}

.prozis-card:hover {
    border-color: rgba(42, 82, 152, 0.5);
    box-shadow: 
        0 8px 32px 0 rgba(42, 82, 152, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.btn-prozis {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: #fff;
}

.btn-prozis:hover {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    box-shadow: 0 8px 20px rgba(42, 82, 152, 0.4);
}

/* Casino Modal */
.casino-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.casino-modal.active {
    display: flex;
}

.casino-modal-content {
    background: rgba(20, 25, 45, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, rgba(50, 55, 80, 0.5), rgba(30, 35, 55, 0.5));
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-casino-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(0, 0, 0, 0.0);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-casino-logo img {
    width: 400%;
    height: 100%;
    object-fit: contain;
}

.modal-header h2 {
    font-size: 24.0px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.modal-body {
    padding: 18px 18px 16px 18px;
}

.modal-section {
    margin-bottom: 40px;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.info-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 18.0px;
    color: #fbbf24;
}

.info-item .info-label {
    font-size: 11px;
    color: #8a8ea8;
    display: block;
}

.info-item .info-value {
    font-size: 12.0px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.promo-code-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.promo-code-box h4 {
    color: #10b981;
    font-size: 10.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-code-display {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.promo-code-text {
    flex: 1;
    font-size: 18.0px;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 2px;
}

.btn-copy-code {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 8px;
    color: #10b981;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-copy-code:hover {
    background: rgba(16, 185, 129, 0.3);
}

.promo-description {
    color: #8a8ea8;
    font-size: 13px;
    margin: 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.bonus-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 12px;
}

.bonus-card h4 {
    font-size: 12.0px;
    color: #fff;
    margin: 10px 0;
}

.bonus-card p {
    color: #fbbf24;
    font-size: 10.5px;
    font-weight: 600;
    margin: 0;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 10.5px;
}

.benefit-item i {
    color: #fbbf24;
    font-size: 12.0px;
}

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

.payment-method {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method i {
    font-size: 18.0px;
    color: #fff;
}

.payment-method div span {
    display: block;
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
}

.payment-method div small {
    display: block;
    color: #3b82f6;
    font-size: 12px;
}

.modal-footer {
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-claim-modal {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 12.0px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-claim-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
}

/* Pages Container */
.pages-container {
    flex: 1;
    padding: 40px;
}

.page-content {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}

.page-content.active {
    display: block;
}

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

.glass-card {
    background: rgba(15, 18, 35, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.about-content {
    padding: 40px;
}

.about-content h2 {
    font-size: 18.8px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #7000ff, #8a2eff, #ff7a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content h3 {
    font-size: 18.0px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #7000ff;
}

.about-content p {
    color: #b0b5d8;
    font-size: 12.0px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content ul {
    color: #b0b5d8;
    margin-left: 30px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content ul li {
    margin-bottom: 10px;
}

.about-content strong {
    color: #fff;
}

/* About Page */
.about-page-header {
    text-align: center;
    margin-bottom: 35px;
}

.about-page-header h2 {
    font-size: 31.5px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.about-page-header p {
    color: #8a8ea8;
    font-size: 12.0px;
}

.about-page-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    padding: 0 20px;
}

.about-profile-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.profile-avatar {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    position: relative;
}

.avatar-glow {
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.avatar-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24.0px;
    font-weight: 700;
    color: #fff;
    border: 3px solid rgba(20, 25, 45, 0.8);
}

.about-profile-card h3 {
    font-size: 21.0px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 5px;
}

.profile-subtitle {
    color: #8a8ea8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.profile-description {
    color: #b0b5d8;
    font-size: 10.5px;
    margin-bottom: 30px;
}

.business-section {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.business-section h4 {
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-section h4:before {
    content: "✉";
    color: #fbbf24;
}

.business-section p {
    color: #8a8ea8;
    font-size: 12px;
    margin-bottom: 10px;
}

.business-email {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 6px;
    padding: 8px 16px;
    color: #fbbf24;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.business-email:hover {
    background: rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

.connect-section h4 {
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.connect-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.connect-btn {
    flex: 1;
    min-width: calc(50% - 5px);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.connect-btn i {
    font-size: 12.0px;
}

.twitch-btn {
    background: rgba(145, 70, 255, 0.1);
    color: #9146ff;
    border-color: rgba(145, 70, 255, 0.3);
}

.twitch-btn:hover {
    background: rgba(145, 70, 255, 0.2);
    transform: translateY(-2px);
}

.youtube-btn {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.discord-btn {
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
    border-color: rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
}

.instagram-btn {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.3);
}

.instagram-btn:hover {
    background: rgba(225, 48, 108, 0.2);
    transform: translateY(-2px);
}

.telegram-btn {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    border-color: rgba(0, 136, 204, 0.3);
}

.telegram-btn:hover {
    background: rgba(0, 136, 204, 0.2);
    transform: translateY(-2px);
}


.tiktok-btn {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.3);
}

.tiktok-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}
.about-content-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 
        0 8px 32px 0 rgba(0, 0, 0, 0.37),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.about-content-card h3 {
    font-size: 18.0px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 25px;
}

.about-text p {
    color: #b0b5d8;
    font-size: 12.5px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Info Da Stream */
.stream-info-header {
    text-align: center;
    margin-bottom: 30px;
}

.stream-info-header h2 {
    font-size: 31.5px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.stream-info-header p {
    color: #8a8ea8;
    font-size: 12.0px;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.schedule-day-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 16px 0 rgba(0, 0, 0, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.schedule-day-card.active {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
}

.day-name {
    font-size: 10.5px;
    font-weight: 700;
    color: #8a8ea8;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.day-status {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.day-status.off {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.day-status.on {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.day-time {
    font-size: 12.0px;
    font-weight: 700;
    color: #6366f1;
}

/* Stream Container */
.stream-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    height: 650px;
    padding: 0 20px;
}

.twitch-player,
.twitch-chat {
    background: rgba(20, 25, 45, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.twitch-player iframe,
.twitch-chat iframe {
    border: none;
}

.twitch-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    gap: 15px;
}

.twitch-placeholder i:first-child {
    font-size: 60.0px;
    color: #9146ff;
    margin-bottom: 10px;
}

.twitch-placeholder h3 {
    font-size: 18.0px;
    color: #fff;
    margin-bottom: 10px;
}

.twitch-placeholder p {
    color: #8a8ea8;
    font-size: 10.5px;
    max-width: 400px;
    line-height: 1.6;
}

.twitch-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #9146ff, #772ce8);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.twitch-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(145, 70, 255, 0.5);
}

/* Clips Page */
.clips-header {
    text-align: center;
    margin-bottom: 35px;
}

.clips-header h2 {
    font-size: 31.5px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.clips-header p {
    color: #8a8ea8;
    font-size: 12.0px;
}

/* Carousel */
.clips-carousel {
    position: relative;
    margin-bottom: 60px;
    padding: 0 60px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.clip-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    gap: 15px;
}

.clip-placeholder i {
    font-size: 60.0px;
    opacity: 0.8;
}

.clip-placeholder h3 {
    font-size: 21.0px;
    font-weight: 700;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.8);
    border: none;
    color: #fff;
    font-size: 15.0px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(59, 130, 246, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Clips Section */
.clips-section {
    padding: 0 20px;
    margin-bottom: 40px;
}

.clips-section h3 {
    font-size: 21.0px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clips-section h3 i {
    color: #fbbf24;
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.clip-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 
        0 4px 16px 0 rgba(0, 0, 0, 0.25),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.clip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
}

.clip-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.clip-thumbnail img,
.clip-thumbnail .clip-placeholder {
    position: absolute;
    top:auto;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clip-thumbnail .clip-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clip-thumbnail .clip-placeholder i {
    font-size: 45.0px;
    opacity: 0.6;
}

.clip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.clip-overlay i {
    font-size: 45.0px;
    color: #fff;
}

.clip-info {
    padding: 15px;
}

.clip-info h4 {
    font-size: 12.0px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.clip-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #8a8ea8;
}

.clip-meta i {
    margin-right: 5px;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Footer */
.footer {
    background: rgba(15, 18, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 30px 20px;
    margin: 60px 30px 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 200px repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 25px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    width: 170px;
    height: 100px;
    border-radius: 0%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.footer-social h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.footer-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 160px;
}

.footer-social-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8ea8;
    font-size: 13.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.footer-column a {
    color: #8a8ea8;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-column a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-slot-item,
.footer-clip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8a8ea8;
    font-size: 12px;
    padding: 2px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-slot-item:hover,
.footer-clip-item:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-slot-item i,
.footer-clip-item i {
    color: #fbbf24;
    font-size: 12px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 14px;
    margin: 3px 0;
}

/* Bloquear scroll quando o modal está aberto */
body.modal-open{overflow:hidden;}

/* Modal de Idade */
.age-modal {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: rgba(20, 25, 45, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 50px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.age-modal-logo {
    width: 220px;
    height: 150px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.5));
    border-radius: 50%;
    object-fit: cover;
}

.age-modal-text {
    color: #fff;
    font-size: 12.0px;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.5;
}

.age-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 25px;
}

.age-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
    max-width: 230px;
}

.age-btn-yes {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.age-btn-yes:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.age-btn-no {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.age-btn-no:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

.age-disclaimer {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
    text-align: justify;
}


/* Slots Demo - Providers list layout */
.slots-demo-provider-block {
    margin-top: 18px;
}

.slots-demo-provider-title-split {
    justify-content: space-between;
}

.slots-demo-provider-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slot-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    z-index: 1;

    opacity: 0;
    transform: scale(1.02);
    filter: blur(10px);
    transition: opacity .35s ease, transform .35s ease, filter .35s ease;
    will-change: opacity, transform, filter;
}

.slot-card-img.is-loaded {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.slot-card-img.is-loaded + .slot-card-placeholder {
    opacity: 0;
}

.slot-card-media {
    position: relative;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1200px) {
    .stream-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .twitch-player {
        height: 500px;
    }
    
    .twitch-chat {
        height: 600px;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .clips-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .about-page-container {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .sidebar {
        /* IMPORTANT: disable load animation on mobile to avoid overriding the off-canvas transform */
        animation: none !important;
        transform: translateX(calc(-100% - 30px));
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        width: 200px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 13.5px;
    }
    
    .about-content {
        padding: 28px 16px;
        margin: 40px 14px 14px;
    }
    
    .about-content h2 {
        font-size: 21.0px;
    }
    
    .about-content h3 {
        font-size: 15.0px;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .schedule-day-card {
        padding: 15px 10px;
    }
    
    .stream-info-header h2,
    .clips-header h2 {
        font-size: 24.0px;
    }
    
    .clips-carousel {
        padding: 0 40px;
    }
    
    .carousel-track {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 12.0px;
    }
    
    .clips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 28px 16px;
        margin: 40px 14px 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .age-modal-content {
        margin: 0 20px;
        padding: 35px 25px;
    }
    
    .age-modal-logo {
        width: 150px;
    }
    
    .age-modal-text {
        font-size: 12.0px;
    }
    
    .age-modal-buttons {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
        max-width: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: none;
    }
    
    .about-page-container {
        grid-template-columns: 1fr;
    }
    
    .connect-buttons {
        justify-content: center;
    }
    
    .connect-btn {
        min-width: 100px;
    }
    
    .casino-offers-section {
        padding: 34px 14px;
    }
    
    .casino-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .casino-card-header {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .casino-card-body {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .casino-card-badges {
        width: 100%;
        align-items: center;
    }
    
    .casino-card-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-claim-bonus,
    .btn-show-more {
        width: 100%;
    }
    
    .casino-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 30px 20px;
    }
    
    .modal-body {
        padding: 25px 20px;
    }
    
    .modal-columns {
        grid-template-columns: 1fr;
    }
    
    .info-grid,
    .bonus-grid,
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-footer {
        padding: 20px;
    }
}

/* Página de conteúdo vazio */
.page-content-empty {
    padding: 55px 60px 0;
    text-align: center;
    min-height: 60vh;
    max-width: 1620px;
    margin: 0 auto;
    width: 100%;
}

.page-content-empty h1 {
    font-size: 18.8px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}

.page-content-empty h2 {
    font-size: 18.0px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.page-content-empty h3 {
    font-size: 15.0px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.page-content-empty h4 {
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.page-content-empty p {
    font-size: 12.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
}

.page-content-empty ul {
    margin: 15px auto 20px auto;
    padding: 0;
    list-style-position: inside;
    text-align: center;
}

.page-content-empty li {
    font-size: 12.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.page-content-empty strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.page-content-empty a {
    color: #fbfbfb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-content-empty a:hover {
    color: #8b9aff;
    text-decoration: underline;
}

/* Modal background image */
.modal-header {
    position: relative;
    background: linear-gradient(135deg, rgba(50, 55, 80, 0.5), rgba(30, 35, 55, 0.5));
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    min-height: 200px;
}

.modal-background-image {
    position: absolute;
    top:auto;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28% !important;
    background-size: cover;
    opacity: 0.3;
    z-index: 0;
}

.modal-header .modal-casino-logo,
.modal-header h2 {
    position: relative;
    z-index: 1;
}


/* Modal Compacto */
.casino-modal-content {
    max-width: 900px;
    width: 100%;
    max-height: none !important;
}

.modal-body {
    padding: 20px 30px 30px;
    overflow: visible !important;
}

.info-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    justify-items: stretch;
gap: 10px;
    margin-bottom: 20px;
}

.info-grid-compact .info-item {
    min-height: 72px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.info-grid-compact .info-item i {
    font-size: 15.0px;
    color: #7000ff;
    margin-bottom: 5px;
}

.info-grid-compact .info-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 600;
}

.info-grid-compact .info-value {
    font-size: 10.5px;
    font-weight: 700;
    color: #fff;
}

.bonus-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-items: stretch;
gap: 10px;
    margin-bottom: 20px;
}

.bonus-grid-compact .bonus-card {
    min-height: 110px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.bonus-grid-compact .bonus-number {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2e00ff, #8a2eff);
    border-radius: 50%;
    line-height: 28px;
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-grid-compact .bonus-card h4 {
    font-size: 13px;
    margin: 8px 0 5px;
    color: #fff;
}

.bonus-grid-compact .bonus-card p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.modal-columns-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.benefits-compact h4,
.payments-compact h4 {
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefits-compact .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
}

.benefits-compact .benefit-item i {
    color: #00ff88;
    font-size: 10.5px;
}

.payment-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.payment-grid-compact .payment-method {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.payment-grid-compact .payment-method i {
    font-size: 13.5px;
    color: #7000ff;
}

.btn-claim-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2e00ff, #8a2eff);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-claim-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 195, 0.4);
}

@media (max-width: 768px) {
    .info-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bonus-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-columns-compact {
        grid-template-columns: 1fr;
    }
    
    .payment-grid-compact {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Prozis Featured Card - Compact Horizontal Layout */
.prozis-featured-card {
    position: relative;
    background: var(--glass-bg-2);
    backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 670px 1fr;
    gap: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.prozis-card-banner {
    position: relative;
    width: 670px;
    height: 450px;
    overflow: hidden;
}

.prozis-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.prozis-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12.0px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
    letter-spacing: 1px;
    animation: pulseProzis 2s infinite;
}

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

.prozis-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prozis-card-title {
    font-size: 21.0px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.prozis-card-description {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.5;
}

.prozis-code-container {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(138, 46, 255, 0.4);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.prozis-code-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prozis-code {
    font-size: 18.0px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.prozis-copy-btn {
    background: linear-gradient(135deg, #2e00ff, #8a2eff);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.prozis-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 46, 255, 0.5);
}

.prozis-copy-btn.copied {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.prozis-cta-btn {
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 12px 35px rgba(138, 46, 255, 0.4);
    text-decoration: none;
    width: fit-content;
}

.prozis-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(138, 46, 255, 0.6);
}

@media (max-width: 1024px) {
    .prozis-featured-card {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .prozis-card-banner {
        width: 100%;
        height: 400px;
    }
    
    .prozis-card-content {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .prozis-card-banner {
        height: 350px;
    }
    
    .prozis-card-content {
        padding: 24px;
    }
    
    .prozis-card-title {
        font-size: 18.0px;
    }
    
    .prozis-code-container {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .prozis-copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .prozis-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
    }
}

/* Cookie Settings Button in Header */

/* ============================================
   Cookie Banner - Fixed Bottom Center
   ============================================ */

/* ============================================
/* ============================================
   COOKIE BANNER - COMPACTO E NO FUNDO
   ============================================ */
.cookie-banner {
    position: fixed !important;
    bottom: 15px !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    max-width: 480px !important;
    width: calc(100% - 30px) !important;
    z-index: 9999999 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    isolation: isolate;
    margin: 0 !important;
}

.cookie-banner.hidden {
    display: none !important;
    visibility: hidden !important;
}

.cookie-content {
    background: rgba(15, 18, 35, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

.cookie-header strong {
    font-size: 10.5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.cookie-close {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.cookie-close:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

.cookie-text {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.cookie-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #8a2eff;
    flex-shrink: 0;
}

.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-option-info {
    flex: 1;
}

.cookie-option-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1px;
}

.cookie-option-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

.cookie-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 110px;
    padding: 7px 10px;
    border: none;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.cookie-btn i {
    font-size: 11px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #2e00ff, #8a2eff);
    color: #fff;
    box-shadow: 0 4px 16px rgba(138, 46, 255, 0.4);
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(138, 46, 255, 0.6);
}

.cookie-btn-custom {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.cookie-btn-custom:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.4);
}

.cookie-btn-reject {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.cookie-btn-reject:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.35);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: calc(100% - 20px) !important;
        max-width: 100% !important;
    }
    
    .cookie-content {
        padding: 12px 14px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: unset;
    }
}


/* ===== FORCE COOKIE BANNER BOTTOM (HARD OVERRIDE) ===== */
#cookieBanner, .cookie-banner {
    position: fixed !important;
    top: auto !important;
    bottom: 15px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 999999 !important;
}
/* ================================================ */

/* ===== SOBRE PAGE STYLES ===== */
.about-page-section {
    padding: 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.about-grid-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    padding: 35px;
    box-shadow: var(--glass-shadow-soft);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--glass-shadow);
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-image-container {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    padding: 3px;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-size: 24.0px;
    font-weight: 900;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.profile-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.profile-info {
    width: 100%;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-info p {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 8px;
}

.card-title {
    font-size: 15.0px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.highlight-text {
    font-weight: 700;
    font-size: 12.0px !important;
    color: #fff !important;
    margin-top: 20px !important;
    text-align: center !important;
}

.business-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.business-icon {
    font-size: 21.0px;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    padding: 15px;
    border-radius: 12px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-header h3 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.business-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.business-email {
    display: inline-block;
    font-size: 12.0px;
    font-weight: 700;
    color: #fbbf24;
    text-decoration: none;
    padding: 12px 20px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.business-email:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateX(5px);
}

.social-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn i {
    font-size: 21.0px;
}

.twitch-btn {
    background: rgba(145, 70, 255, 0.15);
    border-color: rgba(145, 70, 255, 0.3);
}

.twitch-btn:hover {
    background: rgba(145, 70, 255, 0.25);
    border-color: #9146ff;
    transform: translateY(-3px);
}

.youtube-btn {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
    background: rgba(255, 0, 0, 0.25);
    border-color: #ff0000;
    transform: translateY(-3px);
}

.discord-btn {
    background: rgba(88, 101, 242, 0.15);
    border-color: rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background: rgba(88, 101, 242, 0.25);
    border-color: #5865f2;
    transform: translateY(-3px);
}

.instagram-btn {
    background: rgba(228, 64, 95, 0.15);
    border-color: rgba(228, 64, 95, 0.3);
}

.instagram-btn:hover {
    background: rgba(228, 64, 95, 0.25);
    border-color: #e4405f;
    transform: translateY(-3px);
}

.telegram-btn {
    background: rgba(34, 170, 221, 0.15);
    border-color: rgba(34, 170, 221, 0.3);
}

.telegram-btn:hover {
    background: rgba(34, 170, 221, 0.25);
    border-color: #22aadd;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 30px 20px;
    }
    
    .profile-image-container {
        width: 150px;
        height: 150px;
    }
    
    .social-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== GIVEAWAYS PAGE STYLES ===== */
.giveaways-page-section {
    padding: 40px 60px;
    max-width: 1800px;
    margin: 0 auto;
}

.giveaways-header {
    text-align: center;
    margin-bottom: 50px;
}

.giveaways-header h1 {
    font-size: 18.8px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.giveaways-header p {
    font-size: 12.0px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.giveaways-table-container {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow-soft);
}

.giveaways-table {
    width: 100%;
    border-collapse: collapse;
}

.giveaways-table thead {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.giveaways-table th {
    padding: 24px 30px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.giveaways-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.giveaways-table tbody tr:last-child {
    border-bottom: none;
}

.giveaways-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.giveaways-table td {
    padding: 28px 30px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.8);
    vertical-align: middle;
}

.giveaway-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.giveaway-icon {
    font-size: 18.0px;
    color: #8b5cf6;
    min-width: 24px;
}

.giveaway-name {
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
}

.giveaway-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.prize-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #fbbf24;
}

.prize-value i {
    font-size: 12.0px;
}

.entries-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.8);
}

.entries-count i {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.5);
}

.requirements-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-ended {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-badge i {
    font-size: 11px;
}

.action-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.winner-btn {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    color: #fbbf24;
    border: 2px solid rgba(251, 191, 36, 0.4);
}

.winner-btn:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.3));
    border-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.winner-btn i {
    font-size: 12px;
}

.empty-state {
    padding: 80px 40px !important;
    text-align: center;
}

.empty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.empty-content i {
    font-size: 48.0px;
    color: rgba(139, 92, 246, 0.3);
    margin-bottom: 10px;
}

.empty-content p {
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.empty-content span {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px) {
    .giveaways-table-container {
        overflow-x: auto;
    }
    
    .giveaways-table {
        min-width: 1000px;
    }
}

@media (max-width: 768px) {
    .giveaways-page-section {
        padding: 28px 14px;
    }
    
    .giveaways-header h1 {
        font-size: 27.0px;
    }
    
    .giveaways-table th,
    .giveaways-table td {
        padding: 15px 12px;
    }

    /* Mobile: turn table rows into stacked cards (no desktop impact) */
    .giveaways-table {
        min-width: 0 !important;
    }
    .giveaways-table thead {
        display: none;
    }
    .giveaways-table,
    .giveaways-table tbody,
    .giveaways-table tr,
    .giveaways-table td {
        display: block;
        width: 100%;
    }
    .giveaways-table tbody tr {
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.02);
        margin: 12px 0;
        overflow: hidden;
    }
    .giveaways-table td {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 12px 14px;
    }
    .giveaways-table td:last-child {
        border-bottom: none;
    }
    .giveaways-table td::before {
        content: attr(data-label);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.8px;
        color: rgba(255, 255, 255, 0.55);
        text-transform: uppercase;
        flex: 0 0 38%;
        max-width: 38%;
    }

    /* Empty state remains centered */
    .giveaways-table td.empty-state {
        display: block;
        border-bottom: none;
        padding: 60px 20px !important;
    }
    .giveaways-table td.empty-state::before {
        content: none;
    }
}

/* Stream Section */
.stream-section {
    padding: 15px 15px 0;
}

.stream-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 20px;
    height: calc(100vh - 105px);
    min-height: 600px;
}

.stream-player-wrapper {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.stream-player-wrapper iframe {
    border: none;
}

.stream-chat-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}

.stream-chat-wrapper iframe {
    border: none;
}

.offline-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(7, 11, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10;
    transition: opacity 0.3s ease;
    padding: 30px;
}

.offline-overlay.hidden {
    display: none;
}

.offline-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.offline-info {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    padding: 12px 20px;
    background: rgba(20, 25, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.offline-indicator {
    border-radius: 50%;
    flex-shrink: 0;
}

.offline-text {
    font-size: 10.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
}

@media (max-width: 1400px) {
    .stream-container {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 1024px) {
    .stream-section {
        padding: 15px;
    }
    
    .stream-container {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        height: auto;
        min-height: unset;
        gap: 15px;
    }
    
    .stream-player-wrapper {
        height: 400px;
        min-height: 400px;
    }
    
    .stream-chat-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .stream-section {
        padding: 10px;
    }
    
    .offline-overlay {
        padding: 20px;
    }
    
    .stream-player-wrapper {
        height: 300px;
        min-height: 300px;
        border-radius: 16px;
    }
    
    .stream-chat-wrapper {
        height: 400px;
        border-radius: 16px;
    }
    
    .offline-info {
        padding: 10px 16px;
        margin-top: 0;
    }
    
    .offline-text {
        font-size: 12px;
    }
}

/* Clips Section */
.clips-section {
    padding: 15px 33px 0;
    min-height: calc(100vh - 200px);
    max-width: 2100px;
    margin: 0px;
}

.clips-container {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--glass-radius);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    padding: 20px;
    overflow: hidden;
}

.clips-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 25px;
}

.clips-header h1 {
    font-size: 18.8px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.clips-header p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.clips-loading,
.clips-error {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.6);
}

.clips-loading i {
    font-size: 36.0px;
    margin-bottom: 20px;
    color: #6366f1;
}

.clips-loading p,
.clips-error p {
    font-size: 13.5px;
}

/* Featured Carousel */
.featured-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 80px;
    perspective: 2200px;
}

.featured-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 80px 200px;
    scrollbar-width: none;
    transform-style: preserve-3d;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    overscroll-behavior-x: contain;
}

.featured-carousel::-webkit-scrollbar {
    display: none;
}

/* Desabilita scroll por toque/mouse - apenas setas controlam */
.featured-carousel {
    touch-action: pan-y;
    -ms-touch-action: pan-y;
}

.featured-carousel::-webkit-scrollbar {
    display: none;
}

.featured-clip-card {
    flex: 0 0 480px;
    height: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.65) translateZ(-400px) rotateY(0deg);
    opacity: 0.4;
    margin: 0 -120px;
    pointer-events: none;
}

.featured-clip-card:hover {
    transform: scale(0.7) translateZ(-300px) rotateY(0deg);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
    opacity: 0.6;
}

.featured-clip-card.center-card {
    transform: scale(1) translateZ(0) rotateY(0deg) !important;
    opacity: 1 !important;
    z-index: 5 !important;
    pointer-events: auto !important;
}

.featured-clip-card.center-card:hover {
    transform: scale(1.05) translateZ(30px) rotateY(0deg) !important;
}

.featured-clip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-clip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-clip-card:hover .featured-clip-overlay {
    opacity: 1;
}

.featured-clip-play {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18.0px;
    color: #fff;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.featured-clip-card:hover .featured-clip-play {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Category Section */
.clips-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-left: 10px;
}

.category-header i {
    font-size: 18.0px;
    color: #6366f1;
}

.category-header h2 {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.category-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.category-carousel {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
}

.category-carousel::-webkit-scrollbar {
    display: none;
}

.category-clip-card {
    flex: 0 0 320px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
}

.category-clip-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

.category-clip-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.category-clip-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-clip-card:hover .category-clip-thumbnail img {
    transform: scale(1.05);
}

.category-clip-info {
    padding: 16px;
}

.category-clip-info h3 {
    font-size: 12.0px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.category-clip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.category-clip-meta i {
    margin-right: 5px;
    font-size: 12px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(20, 25, 45, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 15.0px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(99, 102, 241, 0.8);
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

.clip-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
    padding-right: 420px;
}

.clip-modal.hidden {
    display: none;
}

.clip-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: rgba(15, 20, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.clip-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 13.5px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.clip-modal-close:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: rgba(239, 68, 68, 0.6);
    transform: rotate(90deg);
}

.clip-modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.clip-modal-header h2 {
    font-size: 18.0px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.clip-modal-info {
    display: flex;
    gap: 20px;
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.6);
}

.clip-modal-info span::before {
    content: '•';
    margin: 0 8px;
}

.clip-modal-info span:first-child::before {
    display: none;
}

.clip-modal-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    background: #000;
}

.clip-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1200px) {
    .featured-carousel-container,
    .category-carousel-container {
        padding: 0 20px;
    }
    
    .featured-carousel {
        padding: 60px 120px;
    }
    
    .featured-clip-card {
        margin: 0 -100px;
    }
    
    .carousel-prev {
        left: -10px;
    }
    
    .carousel-next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .clips-section {
        padding: 8px 10px 0;
    }
    
    .clips-container {
        padding: 14px;
    }
    
    .clips-header {
        padding-top: 15px;
        margin-bottom: 40px;
    }
    
    .clips-header h1 {
        font-size: 16.5px;
    }
    
    .clips-header p {
        font-size: 12.0px;
    }
    
    .featured-carousel-container,
    .category-carousel-container {
        perspective: none;
    }
    
    .featured-carousel {
        gap: 14px;
        padding: 16px 0;
        transform-style: flat;
    }
    
    .category-carousel {
        gap: 16px;
        padding: 14px 0;
    }
    
    .featured-clip-card {
        flex: 0 0 min(330px, calc(100vw - 70px));
        height: 200px;
        transform: none !important;
        opacity: 1 !important;
        margin: 0;
    }
    
    .featured-clip-card:hover {
        transform: translateY(-5px) !important;
    }
    
    .category-clip-card {
        flex: 0 0 min(300px, calc(100vw - 90px));
    }
    
    .category-clip-card:hover {
        transform: translateY(-5px);
    }
    
    .featured-clip-play {
        width: 40px;
        height: 40px;
        font-size: 15.0px;
    }
    
    .featured-clip-card:hover .featured-clip-play {
        transform: translate(-50%, -50%) scale(1.1);
    }
    
    .featured-clip-overlay {
        padding-right: 0;
    }
    
    .category-header {
        padding-left: 5px;
    }
    
    .category-header h2 {
        font-size: 12.0px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 12.0px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .clip-modal {
        padding: 20px;
        padding-right: 20px;
        justify-content: center;
    }
    
    .clip-modal-content {
        border-radius: 16px;
    }
    
    .clip-modal-header {
        padding: 20px 20px 15px;
    }
    
    .clip-modal-header h2 {
        font-size: 13.5px;
        padding-right: 40px;
    }
    
    .clip-modal-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .clip-modal-close {
        width: 36px;
        height: 36px;
        font-size: 12.0px;
    }
}
/* Links de logo sem decoração */
a:has(.sidebar-logo),
a:has(.footer-logo) {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

/* Footer Clips Section */
.footer-clips {
    min-width: 300px;
}

.footer-clips-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.footer-clip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-clip-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.footer-clip-thumb {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.footer-clip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.footer-clip-thumb i {
    font-size: 20px;
    color: white;
    z-index: 1;
    opacity: 0.9;
}

.footer-clip-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.footer-clip-item:hover .footer-clip-title {
    color: rgba(255, 255, 255, 1);
}

.footer-clips-loading {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Footer Slots Section */
.footer-slots {
    min-width: 300px;
}

.footer-slots-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.footer-slot-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-slot-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.footer-slot-thumb {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.footer-slot-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.footer-slot-thumb i {
    font-size: 20px;
    color: white;
    z-index: 1;
    opacity: 0.9;
}

.footer-slot-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.footer-slot-item:hover .footer-slot-title {
    color: rgba(255, 255, 255, 1);
}


@media (max-width: 768px) {
    .footer-clips {
        min-width: 100%;
    }

    .footer-slots {
        min-width: 100%;
    }
    
    .footer-clips-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }

    .footer-slots-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }
    
    .footer-clip-item {
        flex-direction: column;
        min-width: 120px;
        text-align: center;
    }

    .footer-slot-item {
        flex-direction: column;
        min-width: 120px;
        text-align: center;
    }
    
    .footer-clip-thumb {
        width: 100%;
        height: 70px;
    }

    .footer-slot-thumb {
        width: 100%;
        height: 70px;
    }
}
/* ===== Mobile optimizations (no desktop impact) ===== */
#sidebarOverlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 950; /* below sidebar (1000) */
}
#sidebarOverlay.active{
    opacity: 1;
    pointer-events: auto;
}
body.sidebar-open{
    overflow: hidden;
}

/* Prefer lighter background on mobile */
@media (max-width: 768px){
    body.index-page.ui-glass::after{
        background: image-set(
            url('../images/fundo-bg-mobile.webp') type('image/webp'),
            url('../images/fundo-bg.png') type('image/png')
        ) center 20% / cover no-repeat;
    }
}

/* Smaller screens */
@media (max-width: 480px){
    .top-header{
        margin: 10px 8px 0;
        padding: calc(12px + env(safe-area-inset-top)) 12px 12px;
        top: calc(10px + env(safe-area-inset-top));
        border-radius: 18px;
    }
    .main-content{
        padding: 10px 8px calc(12px + env(safe-area-inset-bottom));
    }
    .hero-section{
        padding: 22px 12px;
        border-radius: 18px;
    }

    .section-header{
        padding: 0 8px;
    }

    /* Wider content on mobile */
    .casino-offers-section{
        padding: 28px 8px;
    }
    .giveaways-page-section{
        padding: 26px 8px;
    }
    .clips-section{
        padding: 6px 8px 0;
    }
    .clips-container{
        padding: 12px;
    }
    .footer{
        margin: 35px 8px 12px;
        padding: 26px 16px;
    }

    /* Stream page: avoid huge fixed heights on small devices */
    .twitch-player{
        height: clamp(220px, 45vh, 320px);
    }
    .twitch-chat{
        height: clamp(320px, 55vh, 520px);
    }

    /* Reduce heavy effects on low-end mobile GPUs */
    .sidebar,
    .top-header,
    .footer,
    .casino-card,
    .offer-card,
    .clip-card,
    .glass-container{
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
}


/* --- Legal block inside casino modal (LeonBet) --- */
.legal-compact{
  margin-top: 14px;
  padding: 14px 14px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}
.legal-compact h4{
  margin: 0 0 10px 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.95;
  display:flex;
  align-items:center;
  gap:8px;
}
.legal-row{
  display:flex;
  gap:12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.legal-row:first-of-type{border-top: 1px solid rgba(255,255,255,0.08);}
.legal-label{
  min-width: 78px;
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.75;
  text-transform: uppercase;
}
.legal-value{
  font-size: 12px;
  opacity: 0.95;
  line-height: 1.35;
}
.legal-value a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Modal inner spacing fix */
.casino-details-modal .modal-body,
.casino-modal .modal-body {
    box-sizing: border-box;
}
.casino-details-modal .modal-body > *:last-child,
.casino-modal .modal-body > *:last-child {
    margin-bottom: 0;
}
.casino-details-modal .section,
.casino-modal .section {
    margin-left: 0;
    margin-right: 0;
}


/* Casino modal inner padding (force) */
.casino-modal .modal-body {
    padding: 24px 26px 24px 26px !important;
    box-sizing: border-box;
}
.casino-modal .btn-claim-modal {
    margin-top: 18px;
}
.casino-modal .modal-body > *:first-child {
    margin-top: 0;
}


/* Casino modal spacing for bonus cards (force) */
.casino-modal .bonus-grid-compact{
    padding-left: 26px !important;
    padding-right: 26px !important;
    box-sizing: border-box;
}
.casino-modal .bonus-grid-compact .bonus-card{
    box-sizing: border-box;
}

/* Keep mobile unchanged */
@media (max-width: 768px){
    .casino-modal .bonus-grid-compact{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


/* Casino modal inner padding (force v4) */
.casino-modal .benefits-compact,
.casino-modal .payment-grid-compact {
    padding-left: 26px !important;
    padding-right: 26px !important;
    box-sizing: border-box;
}
@media (max-width: 768px) {
  .casino-modal .benefits-compact,
  .casino-modal .payment-grid-compact {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


/* Contact page typography fix */
body.contact-page .section-desc,
body.contact-page p {
    white-space: normal;
    word-break: normal;
    hyphens: auto;
}
body.contact-page .content-card {
    line-height: 1.65;
}
body.contact-page .content-card p { margin: 0 0 14px 0; }
body.contact-page .content-card p:last-child { margin-bottom: 0; }


/* Contact page text flow (v2) */
body.contact-page .content-card p,
body.contact-page .policy-content p {
    max-width: 980px;
}
body.contact-page .content-card, body.contact-page .policy-content {
    white-space: normal;
}

/* Wider cards on mobile (Casino Offers + Donate only) */
@media (max-width: 768px) {
    body.casino-offers-page .casino-offers-section,
    body.donate-page .casino-offers-section {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 480px) {
    body.casino-offers-page .main-content,
    body.donate-page .main-content {
        padding-left: 0;
        padding-right: 0;
    }

    body.casino-offers-page .casino-offers-section,
    body.donate-page .casino-offers-section {
        padding-left: 4px;
        padding-right: 4px;
    }
}



/* ===== Mobile fixes (v12): Casino "Ver Mais" modal + Legal/Contact mobile spacing ===== */
@media (max-width: 768px){
  /* Casino modal: compact centered modal on mobile (desktop unchanged) */
  .casino-modal{
    padding: 14px;
    align-items: center;
    justify-content: center;
  }
  .casino-modal-content{
    width: 100%;
    max-width: 520px;
    max-height: 82vh;
    border-radius: 18px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  /* Close button must always be reachable on mobile */
  .casino-modal.active .modal-close{
    position: fixed;
    top: calc(env(safe-area-inset-top) + 12px);
    right: 12px;
    z-index: 10002;
  }

  /* Slightly tighter modal spacing on mobile */
  .casino-modal .modal-header{ padding: 26px 18px !important; min-height: 160px; }
  .casino-modal .modal-body{ padding: 18px 16px !important; }
}

@media (max-width: 480px){
  .casino-modal{ padding: 10px; }
  .casino-modal-content{ max-width: 100%; max-height: 78vh; border-radius: 16px; }
  .casino-modal .modal-header{ padding: 22px 14px !important; min-height: 150px; }
  .casino-modal .modal-body{ padding: 16px 14px !important; }

  /* Legal/Contact pages: keep the same mobile rhythm as other pages */
  body.ui-glass .page-content-empty{ margin: 14px 12px 0; padding: 38px 14px; border-radius: 20px; }
  body.contact-page .page-content-empty{ margin: 14px 12px 0; padding: 38px 14px; border-radius: 20px; }
}


/* =========================
   SLOTS DEMO PAGE
   ========================= */

.slots-demo-hero {
    padding: 26px 0 8px;
}

.slots-demo-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.slots-demo-h1 {
    font-size: 22px;
    letter-spacing: 3px;
    color: rgba(120, 180, 255, 0.95);
    margin: 0 0 6px;
    text-transform: uppercase;
}

.slots-demo-sub {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.slots-demo-section {
    max-width: 1650px;
    margin: 0 auto;
    padding: 14px 59px 30px;
}

.slots-demo-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.slots-demo-section-head-split {
    justify-content: space-between;
}

.slots-demo-h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12.5px;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.slots-demo-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.slots-demo-icon i {
    color: rgba(255, 255, 255, 0.90);
}

.slots-demo-carousel-wrap {
    position: relative;
    border-radius: 18px;
    padding: 4px 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.slots-demo-carousel-wrap-provider {
    padding: 10px 0 0;
    background: transparent;
    border: 0;
}

.slots-demo-row {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.slots-demo-row::-webkit-scrollbar {
    height: 8px;
}

.slots-demo-row::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
}

.slots-demo-row::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.slots-demo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.slots-demo-nav:hover {
    transform: translateY(-50%) scale(1.03);
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(120, 180, 255, 0.35);
}

.slots-demo-nav-prev { left: 10px; }
.slots-demo-nav-next { right: 10px; }

.slots-demo-filters {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 14px;
    margin-top: 14px;
}

.slots-demo-search,
.slots-demo-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 14px;
    position: relative;
    padding-right: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.slots-demo-search {
    padding-right: 14px;
}

.slots-demo-provider:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(120, 180, 255, 0.22);
}

.slots-demo-provider:focus-within {
    border-color: rgba(120, 180, 255, 0.45);
    box-shadow: 0 0 0 3px rgba(120, 180, 255, 0.15);
}

.slots-demo-provider::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(255, 255, 255, 0.70);
    border-bottom: 2px solid rgba(255, 255, 255, 0.70);
    transform: translateY(-55%) rotate(45deg);
    pointer-events: none;
    opacity: 0.95;
}

.slots-demo-search i,
.slots-demo-provider i {
    color: rgba(120, 180, 255, 0.9);
    font-size: 14px;
}

.slots-demo-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.slots-demo-provider select {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.90);
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0 26px 0 0;
}

.slots-demo-provider select option {
    background: #0b1220;
    color: #fff;
}

.slots-demo-provider-title {
    margin: 8px 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slots-demo-provider-name {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.92);
}

.slots-demo-provider-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.slots-demo-count {
    font-size: 14px;
}

.slots-demo-provider-nav {
    display: inline-flex;
    gap: 10px;
}

.slots-demo-nav-mini {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.slots-demo-nav-mini:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(120, 180, 255, 0.35);
}

/* Slot Cards */
.slot-card {
    position: relative;
    flex: 0 0 auto;
    width: 190px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
    transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.slot-card:hover {
    transform: translateY(-3px);
    border-color: rgba(120, 180, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.slot-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.22);
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}

.slot-fav:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.33);
}

.slot-card-media {
    height: 250px;
    position: relative;
    background: radial-gradient(110% 110% at 20% 20%, rgba(120, 180, 255, 0.35) 0%, rgba(120, 180, 255, 0.12) 35%, rgba(0,0,0,0.0) 70%), linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.0));
}

.slot-card-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 18px 45px rgba(0,0,0,0.35);
    z-index: 0;

    opacity: 1;
    transition: opacity .25s ease;
}

.slot-card-actions {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.55);
    transition: opacity .15s ease;
    z-index: 2;
}

.slot-card-actions-inner {
    width: min(320px, calc(100% - 24px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.slot-card-btn {
    height: 40px;
    flex: 1 1 0;
    min-width: 0;
    padding: 0 26px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.slot-card-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(120, 180, 255, 0.35);
}

.slot-card-btn-real {
    background: rgba(120, 180, 255, 0.18);
    border-color: rgba(120, 180, 255, 0.30);
}

.slot-card:hover .slot-card-actions,
.slot-card:focus-within .slot-card-actions {
    opacity: 1;
    pointer-events: auto;
}

.slot-card-body {
    padding: 10px 12px 12px;
}

.slot-card-name {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.15;
    max-height: 34px;
    overflow: hidden;
}

.slot-card-provider {
    margin-top: 6px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.65);
}

/* Empty state */
.slots-demo-empty {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.75);
}

/* Slot Modal */
.slot-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.slot-modal.hidden {
    display: none;
}

.slot-modal-content {
    width: min(1120px, 100%);
    height: min(720px, 92vh);
    background: rgba(10, 15, 25, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.slot-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    z-index: 5;
}

.slot-modal-close:hover {
    background: rgba(239, 68, 68, 0.8);
    border-color: rgba(239, 68, 68, 0.6);
    transform: rotate(90deg);
}

.slot-modal-header {
    padding: 22px 22px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.slot-modal-header h2 {
    font-size: 18px;
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.92);
}

.slot-modal-info {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.slot-modal-player {
    height: calc(100% - 78px);
    padding: 14px;
}

.slot-modal-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 14px;
    background: rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 900px) {
    .slots-demo-carousel-wrap {
        padding: 4px 14px;
    }
    .slots-demo-nav {
        display: none;
    }
}

@media (max-width: 680px) {
    .slots-demo-section {
        padding: 16px 14px 22px;
    }
    .slots-demo-filters {
        grid-template-columns: 1fr;
    }
    .slot-card {
        width: 160px;
    }
    .slot-card-media {
        height: 160px;
    }
    .slot-card-actions {
        opacity: 1;
        pointer-events: auto;
    }
}


/* ===== Mobile refinements (v13): Donate/Casino Offers wider + Casino modal internal navigation (mobile only) ===== */

/* Mid-size phones/tablets: reduce excessive margins (keep <=480 rules as-is) */
@media (min-width: 481px) and (max-width: 768px){
  .top-header{
    margin: 10px 14px 0 !important;
    padding: calc(12px + env(safe-area-inset-top)) 14px 12px !important;
    top: calc(10px + env(safe-area-inset-top));
  }
  .main-content{
    padding: 10px 14px calc(12px + env(safe-area-inset-bottom)) !important;
  }

  /* Make Donate/Casino Offers cards occupy more width, like About page */
  body.casino-offers-page .casino-offers-section,
  body.donate-page .casino-offers-section{
    padding: 34px 14px !important;
    max-width: 100% !important;
  }

  body.donate-page .casino-offers-section > h1{
    font-size: 22px !important;
    margin-bottom: 28px !important;
  }
}

/* Small phones: enforce full-width section (override any lingering desktop padding) */
@media (max-width: 480px){
  body.casino-offers-page .casino-offers-section,
  body.donate-page .casino-offers-section{
    padding: 28px 8px !important;
    max-width: 100% !important;
  }

  /* Donate title (inline styles override otherwise) */
  body.donate-page .casino-offers-section > h1{
    font-size: 20px !important;
    margin-bottom: 26px !important;
  }
}

/* Casino Offers modal: smaller height + internal scrolling + optional sticky nav on mobile */
.casino-modal .modal-nav-mobile{ display: none; }

@media (max-width: 768px){
  .casino-modal-content{
    display: flex;
    flex-direction: column;
    max-height: 74vh !important;
    overflow: hidden; /* scroll inside modal-body */
  }
  .casino-modal .modal-header{ flex: 0 0 auto; }
  .casino-modal .modal-body{
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* sticky internal navigation */
  .casino-modal .modal-nav-mobile{
    display: flex;
    gap: 10px;
    position: sticky;
    top: 0;
    z-index: 3;
    padding: 10px 0 10px;
    margin: -6px 0 10px;
    background: rgba(20, 25, 45, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .casino-modal .modal-nav-btn{
    flex: 1;
    padding: 10px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.85);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .casino-modal .modal-nav-btn:active{ transform: scale(0.98); }
}

@media (max-width: 480px){
  .casino-modal-content{ max-height: 72vh !important; }
}
