/* Vera.bet CSS Design System */

:root {
    --bg-color: #02120d;
    --header-bg: rgba(3, 31, 21, 0.95);
    --sidebar-bg: #031c12;
    --card-bg: #042419;
    --card-hover: #063424;
    --neon-green: #00e676;
    --neon-green-glow: rgba(var(--neon-green-glow-raw), 0.4);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --red: #ff3d00;
    --red-glow: rgba(255, 61, 0, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #90ab9f;
    --text-muted: #5e7a6f;
    --border-color: var(--neon-green-glow);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Dynamic customization fallbacks */
    --btn-entrar-bg: rgba(255, 255, 255, 0.08);
    --btn-entrar-border: rgba(255, 255, 255, 0.15);
    --btn-entrar-text: #ffffff;
    --btn-entrar-bg-hover: rgba(255, 255, 255, 0.15);
    --btn-entrar-border-hover: rgba(255, 255, 255, 0.35);

    --btn-cadastrar-bg-start: var(--neon-green);
    --btn-cadastrar-bg-end: var(--neon-green);
    --btn-cadastrar-hover-start: var(--neon-green);
    --btn-cadastrar-hover-end: var(--neon-green);
    --btn-cadastrar-text: #000000;
    --btn-cadastrar-glow: var(--neon-green-glow);
    --btn-cadastrar-hover-glow: var(--neon-green-glow);

    --modal-bg: #031c12;
    --modal-border: var(--neon-green-glow);
    --modal-glow: var(--neon-green-glow);

    --modal-input-bg: #0b2018;
    --modal-input-border: var(--neon-green-glow);
    --modal-input-focus: var(--neon-green);
    --modal-input-focus-glow: var(--neon-green-glow);

    --btn-auth-submit-bg-start: var(--neon-green);
    --btn-auth-submit-bg-end: var(--neon-green);
    --btn-auth-submit-hover-start: var(--neon-green);
    --btn-auth-submit-hover-end: var(--neon-green);
    --btn-auth-submit-text: #000000;
    --btn-auth-submit-glow: var(--neon-green-glow);
    --btn-auth-submit-hover-glow: var(--neon-green-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: var(--card-bg);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}

/* Utilities */
.text-green { color: var(--neon-green) !important; }
.text-gold { color: var(--gold) !important; }
.text-red { color: var(--red) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-red { background-color: var(--red) !important; }
.bg-gold { background-color: var(--gold) !important; color: #000 !important; }
.bg-cyan { background-color: #00e5ff !important; color: #000 !important; }
.bg-green { background-color: var(--neon-green) !important; color: #000 !important; }
.bg-purple { background-color: #d500f9 !important; }
.text-xs { font-size: 0.75rem; }

/* Top Header */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 17px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sidebar-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}
.sidebar-toggle:hover {
    color: var(--neon-green);
    background: var(--neon-green-glow);
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
}

.logo-v {
    background: var(--neon-green);
    color: #02120d;
    padding: 0px 8px;
    border-radius: 6px;
    margin-right: 2px;
    display: inline-block;
    transform: skewX(-10deg);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.logo-text {
    color: var(--text-primary);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition);
}
.nav-item:hover, .nav-item.active {
    color: var(--neon-green);
    background: var(--neon-green-glow);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Auth Buttons */
.btn-entrar {
    background: var(--btn-entrar-bg, rgba(255, 255, 255, 0.08));
    border: 1px solid var(--btn-entrar-border, rgba(255, 255, 255, 0.15));
    color: var(--btn-entrar-text, var(--text-primary));
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transform: skewX(-12deg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-entrar:hover {
    border-color: var(--btn-entrar-border-hover, rgba(255, 255, 255, 0.35));
    background: var(--btn-entrar-bg-hover, rgba(255, 255, 255, 0.15));
}

.cadastrar-wrapper {
    position: relative;
}

.pix-badge {
    position: absolute;
    top: -9px;
    right: 8px;
    background: var(--gold);
    color: #000;
    font-size: 0.62rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    transform: skewX(-12deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.btn-cadastrar {
    background: linear-gradient(135deg, var(--btn-cadastrar-bg-start, #00e676), var(--btn-cadastrar-bg-end, #00c853));
    color: var(--btn-cadastrar-text, #000);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transform: skewX(-12deg);
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--btn-cadastrar-glow, rgba(0, 230, 118, 0.2));
    position: relative;
    overflow: hidden;
}
.btn-cadastrar:hover {
    background: linear-gradient(135deg, var(--btn-cadastrar-hover-start, #00ff88), var(--btn-cadastrar-hover-end, #00e676));
    box-shadow: 0 4px 20px var(--btn-cadastrar-hover-glow, rgba(0, 230, 118, 0.3));
    transform: skewX(-12deg) translateY(-1px);
}

.btn-text {
    transform: skewX(12deg);
    display: inline-block;
    position: relative;
    z-index: 2;
}

.btn-entrar::after,
.btn-cadastrar::after,
.btn-deposit-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 100%
    );
    animation: shimmer 1.8s infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0%   { left: -80%; }
    100% { left: 140%; }
}

/* User Wallet Dashboard */
.user-wallet {
    display: flex;
    align-items: center;
    background: rgba(4, 36, 25, 0.6);
    border: 1px solid var(--border-color);
    padding: 4px 4px 4px 15px;
    border-radius: 30px;
    gap: 12px;
}
.wallet-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-secondary);
}
.wallet-value {
    font-weight: 800;
    color: var(--neon-green);
    font-size: 0.95rem;
}
.wallet-deposit-btn {
    background: var(--neon-green);
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    font-weight: 800;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.wallet-deposit-btn:hover {
    background: #00ff88;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.user-profile .avatar {
    width: 32px;
    height: 32px;
    background: var(--card-bg);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-transform: uppercase;
}
.user-profile .username {
    font-weight: 600;
    font-size: 0.85rem;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.logout-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    padding: 5px;
}
.logout-btn:hover {
    color: var(--red);
}

/* Layout Framework */
.app-layout {
    display: flex;
    margin-top: 72px;
    min-height: calc(100vh - 72px);
}

/* Left Sidebar */
.sidebar-left {
    width: 260px;
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: calc(100vh - 112px);
    position: sticky;
    top: 92px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow-y: auto;
    transition: var(--transition);
}

/* Collapsed Sidebar State (Desktop) */
.sidebar-left.collapsed {
    width: 70px;
    padding: 15px 5px;
    align-items: center;
    overflow-x: hidden;
}

.sidebar-left.collapsed .sidebar-boxes-grid {
    display: none;
}

.sidebar-left.collapsed .sidebar-section-header {
    display: none;
}

.sidebar-left.collapsed .sidebar-menu {
    align-items: center;
    gap: 8px;
    width: 100%;
}

.sidebar-left.collapsed .sidebar-menu li {
    width: 100%;
    display: flex;
    justify-content: center;
}

.sidebar-left.collapsed .sidebar-menu li::after {
    display: none !important;
}

.sidebar-left.collapsed .sidebar-menu li a {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #021a11;
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 10px;
    transition: var(--transition);
}

.sidebar-left.collapsed .sidebar-menu li a:hover {
    background: #032d1e;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.25);
    transform: translateY(-1px);
}

.sidebar-left.collapsed .sidebar-menu li a span:not(.flag-icon) {
    display: none;
}

.sidebar-left.collapsed .sidebar-menu li a i {
    font-size: 1.1rem;
    margin: 0;
    opacity: 1;
    color: var(--text-secondary);
}

.sidebar-left.collapsed .sidebar-menu li a:hover i {
    color: var(--neon-green);
}

.sidebar-left.collapsed .sidebar-menu li a .flag-icon {
    font-size: 1.2rem;
    margin: 0;
}


.sidebar-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.sidebar-box-card {
    position: relative;
    background: #021a11;
    border: 1px solid var(--neon-green-glow);
    border-radius: 12px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    min-height: 65px;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-box-card:hover {
    background: #032d1e;
    border-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
    transform: translateY(-2px);
}
/* Watermark stylized skewed 'V' logo outline behind card content */
.sidebar-box-card::before {
    content: 'V';
    position: absolute;
    left: 8px;
    bottom: -22px;
    font-size: 4.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-green-glow);
    transform: skewX(-15deg) rotate(-5deg);
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}
.sidebar-box-card:hover::before {
    -webkit-text-stroke-color: var(--neon-green);
    transform: skewX(-15deg) rotate(-5deg) scale(1.05);
}
.sidebar-box-card span.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.55rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-align: left;
    z-index: 2;
    text-transform: uppercase;
    pointer-events: none;
}
.sidebar-box-card .card-image {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 38px;
    height: 38px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-box-card:hover .card-image {
    transform: scale(1.1) rotate(5deg);
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sidebar-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: linear-gradient(90deg, var(--neon-green-glow), transparent);
    border-top: 1px solid var(--neon-green-glow);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-bottom: 12px;
}
.sidebar-section-header .section-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sidebar-svg-icon {
    width: 18px;
    height: 18px;
    color: var(--neon-green);
    fill: currentColor;
    flex-shrink: 0;
}
.sidebar-section-header .section-link {
    font-size: 0.6rem;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
    background: rgba(0, 230, 118, 0.15);
    padding: 0 10px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    line-height: 1;
    text-transform: uppercase;
    transition: var(--transition);
}
.sidebar-section-header .section-link:hover {
    background: rgba(0, 230, 118, 0.25);
    transform: translateY(-1px);
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.sidebar-menu li {
    position: relative;
}
.sidebar-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03) 20%, rgba(255, 255, 255, 0.03) 80%, transparent);
}
.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 14px;
    border-radius: 8px;
    transition: var(--transition);
}
.sidebar-menu li a:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.02);
    padding-left: 18px;
}
.sidebar-menu li a i {
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    color: var(--text-secondary);
    opacity: 0.8;
    transition: var(--transition);
}
.sidebar-menu li a:hover i {
    color: var(--neon-green);
    opacity: 1;
}
.badge-hot {
    background: var(--red);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 4px;
    margin-left: auto;
}

.leagues-menu li a {
    padding: 8px 10px;
}
.flag-icon {
    font-size: 0.95rem;
}

.sidebar-right {
    width: 280px;
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 112px);
    position: sticky;
    top: 92px;
    z-index: 10;
    overflow: hidden;
}
.sidebar-right-header {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-win-title h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.header-win-title p {
    font-size: 0.65rem;
    color: var(--neon-green);
    font-weight: 800;
    margin-top: 2px;
}
.trophy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.trophy-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}
@media (min-width: 1200px) {
    .trophy-img {
        height: 100px;
    }
}

.win-feed-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 10px;
}
.win-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%; /* Garante que o container ocupe o espaço */
}

.win-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.win-card:hover {
    background: var(--card-hover);
}
.win-card-icon {
    width: 42px; /* Aumentado levemente */
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Para a imagem respeitar o border-radius */
}
.win-game-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.win-card-icon.aviator { background: rgba(255, 61, 0, 0.1); color: var(--red); }
.win-card-icon.tiger { background: rgba(255, 215, 0, 0.1); color: var(--gold); }
.win-card-icon.mines { background: rgba(0, 229, 255, 0.1); color: #00e5ff; }
.win-card-icon.slots { background: rgba(0, 230, 118, 0.1); color: var(--neon-green); }

.win-card-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.win-username {
    font-size: 0.75rem;
    font-weight: 800;
}
.win-game {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 700;
}
.win-amount {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--neon-green);
}

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

/* Main Content Section */
.main-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow-x: hidden;
}

/* Banner Slider */
/* Banners Carousel Section */
.banners-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.banners-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.banners-track {
    display: flex;
    gap: 16px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.banners-carousel-wrapper .banner-item {
    flex: 0 0 calc((100% - 3 * 16px) / 4);
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 587 / 290;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.banners-carousel-wrapper .banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.banners-carousel-wrapper .banner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--neon-green-glow);
    border-color: var(--neon-green);
}

.banners-carousel-wrapper .banner-item:hover img {
    transform: scale(1.03);
}

/* Banners Navigation Arrows */
.banners-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(3, 31, 21, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--neon-green);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.banners-carousel-wrapper:hover .banners-arrow {
    opacity: 1;
    pointer-events: auto;
}

.banners-arrow:hover {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px var(--neon-green-glow);
}

.banners-arrow.prev {
    left: -20px;
}

.banners-arrow.next {
    right: -20px;
}

/* Home Main Layout Grid */
.home-main-layout {
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
}

.home-center-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}

/* Responsiveness for Banners & Layout */
@media (max-width: 1200px) {
    .banners-carousel-wrapper .banner-item {
        flex: 0 0 calc((100% - 12px) / 2);
    }
    .banners-track {
        gap: 12px;
    }
    .banners-arrow {
        opacity: 0.8;
        pointer-events: auto;
    }
}

@media (max-width: 992px) {
    .home-main-layout {
        flex-direction: column;
    }
    
    .sidebar-right {
        width: 100% !important;
        height: 400px !important;
        position: static !important;
    }
}

@media (max-width: 576px) {
    .banners-arrow {
        display: none !important;
    }
    
    .banners-viewport {
        overflow: hidden !important;
        border-radius: 12px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .banners-track {
        gap: 0 !important;
    }
    
    .banners-carousel-wrapper .banner-item {
        flex: 0 0 100% !important;
        scroll-snap-align: none !important;
    }
}


/* Search Bar */
.search-bar-container {
    width: 100%;
    margin-bottom: 5px; /* Reduzido para aproximar da navegação */
}
.search-input-wrapper {
    position: relative;
    width: 100%;
}
.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}
#gameSearchInput {
    width: 100%;
    height: 48px;
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding-left: 48px;
    padding-right: 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    transition: var(--transition);
}
#gameSearchInput:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.05);
}

/* Sections Header */
.section-header-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.section-header-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.carousel-nav-arrows {
    display: flex;
    gap: 6px;
}
.arrow-btn {
    width: 32px;
    height: 32px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.arrow-btn:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
    background: rgba(0, 230, 118, 0.02);
}

/* Recommended Game Cards Grid */
.games-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 12px;
    padding-bottom: 24px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.games-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.games-grid .game-card {
    flex: 0 0 calc((100% - 5 * 12px) / 6);
    min-width: 150px;
}
.games-grid.expanded-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    padding-bottom: 0 !important;
}
.games-grid.expanded-grid .game-card {
    flex: 1 1 auto !important;
    width: auto !important;
}

@media (max-width: 1200px) {
    .games-grid.expanded-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .games-grid.expanded-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .games-grid.expanded-grid .game-card {
        flex: 1 1 auto !important;
        width: auto !important;
    }
}
.game-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.02);
    transition: var(--transition);
}
.game-card:hover {
    background: var(--card-hover);
    transform: translateY(-5px);
}
.game-thumbnail {
    height: 180px; /* Aumentado um pouco mais para caber os novos elementos */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #02120d;
    border-radius: 12px;
}

/* Novos elementos do card conforme imagem */
.card-fav-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}
.card-fav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.card-online-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}
.online-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--neon-green);
}

.game-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: visible;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.02);
    transition: var(--transition);
    margin-bottom: 25px; /* Aumentado para o selo e barra brilharem */
    position: relative;
}

/* Barras de destaque no rodapé dos cards */
.game-card.item-aviator { border-bottom: 3px solid #ff1111; box-shadow: 0 4px 15px rgba(255, 17, 17, 0.2); }
.game-card.item-tiger { border-bottom: 3px solid #ffeb3b; box-shadow: 0 4px 15px rgba(255, 235, 59, 0.2); }
.game-card.item-mines { border-bottom: 3px solid #d500f9; box-shadow: 0 4px 15px rgba(213, 0, 249, 0.2); }
.game-card.item-roulette { border-bottom: 3px solid var(--neon-green); box-shadow: 0 4px 15px var(--neon-green-glow); }
.game-card.item-ox { border-bottom: 3px solid #ff6f00; box-shadow: 0 4px 15px rgba(255, 111, 0, 0.2); }
.game-card.item-bacbo { border-bottom: 3px solid var(--neon-green); box-shadow: 0 4px 15px var(--neon-green-glow); }

/* Balloon Payout Style */
.bg-game-balloon-bg { background-color: #031c12; }
.bg-game-balloon-icon { background-color: var(--neon-green); }
.text-game-balloon-bg { color: #031c12; }
.text-game-balloon-text { color: rgba(255, 255, 255, 0.7); }
.text-game-balloon-value { color: var(--neon-green); }

.card-payout-info {
    position: absolute;
    bottom: -22px; /* Descido mais um pouco para ficar bem destacado como na imagem */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    display: flex;
    justify-content: center;
    z-index: 10;
}

/* Utilitários rápidos para o balão fornecido */
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.shadow-md { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8); }
.shrink-0 { flex-shrink: 0; }
.min-w-0 { min-width: 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.leading-tight { line-height: 1.25; }
.font-bold { font-weight: 700; }
.gap-1\.5 { gap: 0.375rem; }
.pr-3 { padding-right: 0.75rem; }
.pl-1 { padding-left: 0.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.text-\[8px\] { font-size: 9px; }
.text-\[10px\] { font-size: 11px; }
.border-primary\/30 { border: 1.5px solid rgba(0, 230, 118, 0.4); }

.game-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.game-card:hover .game-img-cover {
    transform: scale(1.1);
}

.aviator-bg { background: linear-gradient(45deg, #1b0000, #ff1744); }
.tiger-bg { background: linear-gradient(45deg, #3e2723, #ff6f00); }
.mines-bg { background: linear-gradient(45deg, #001f3f, #00e5ff); }
.roulette-bg { background: linear-gradient(45deg, #002d1a, #00c853); }
.ox-bg { background: linear-gradient(45deg, #1a0f00, #ff8f00); }
.bacbo-bg { background: linear-gradient(45deg, #2a0033, #d500f9); }
.live-bg-1 { background: linear-gradient(45deg, #b71c1c, #4a148c); }
.live-bg-2 { background: linear-gradient(45deg, #0d47a1, #006064); }
.live-bg-3 { background: linear-gradient(45deg, #e65100, #ffd600); }
.live-bg-4 { background: linear-gradient(45deg, #1b5e20, #0d47a1); }

.thumb-main-icon {
    font-size: 3rem;
}
.thumb-main-emoji {
    font-size: 3.5rem;
}

.game-play-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}
.game-card:hover .game-play-hover {
    opacity: 1;
}

.play-btn-custom {
    background: var(--neon-green);
    color: #000;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px var(--neon-green-glow);
    transform: skewX(-15deg) scale(0.8);
    transition: var(--transition);
    text-transform: uppercase;
}
.play-btn-custom i {
    transform: skewX(15deg);
    font-size: 0.8rem;
}
.game-card:hover .play-btn-custom {
    transform: skewX(-15deg) scale(1);
}

.game-card-footer {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.game-card-title {
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}
.game-card-tag {
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 4px;
}

/* Sports horizontal circular nav */
.sports-nav-container {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}
.sports-nav-wrapper {
    display: flex;
    gap: 15px;
    min-width: max-content;
}
.sports-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.sports-nav-item:hover {
    transform: translateY(-2px);
}
.sports-nav-item .circle-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: var(--transition);
}
.sports-nav-item:hover .circle-icon, .sports-nav-item.active .circle-icon {
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.15);
    background: var(--card-hover);
}
.sports-nav-item span {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-secondary);
}
.sports-nav-item:hover span, .sports-nav-item.active span {
    color: var(--text-primary);
}

/* Weekly grid (vertical rectangular cards) */
.weekly-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.weekly-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.weekly-card:hover {
    background: var(--card-hover);
    transform: translateY(-5px);
}
.weekly-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.like-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
}
.like-btn:hover, .like-btn.liked {
    color: var(--red);
}
.like-count {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
}

.weekly-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
}
.weekly-emoji {
    font-size: 4rem;
}
.weekly-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    text-align: center;
}
.weekly-provider {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.weekly-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 12px;
}
.payout-today-text {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 800;
}
.payout-today-val {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--neon-green);
}

.item-rabbit { border-bottom: 3px solid #e91e63; }
.item-dragon { border-bottom: 3px solid #ff9800; }
.item-tiger { border-bottom: 3px solid var(--gold); }
.item-ox { border-bottom: 3px solid #795548; }
.item-pinata { border-bottom: 3px solid #d500f9; }

.weekly-card.item-rabbit:hover { box-shadow: 0 5px 20px rgba(233, 30, 99, 0.1); }
.weekly-card.item-dragon:hover { box-shadow: 0 5px 20px rgba(255, 152, 0, 0.1); }
.weekly-card.item-tiger:hover { box-shadow: 0 5px 20px var(--gold-glow); }
.weekly-card.item-ox:hover { box-shadow: 0 5px 20px rgba(121, 85, 72, 0.1); }
.weekly-card.item-pinata:hover { box-shadow: 0 5px 20px rgba(213, 0, 249, 0.1); }

.ver-todos-btn {
    font-size: 0.75rem;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(0, 230, 118, 0.02);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.ver-todos-btn:hover {
    background: rgba(0, 230, 118, 0.1);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: var(--sidebar-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 230, 118, 0.1);
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Split-Screen Modal Layout Styles */
.auth-modal-split {
    display: flex;
    width: 920px;
    max-width: 95vw;
    height: 680px;
    max-height: 95vh;
    padding: 0 !important;
    border-radius: 20px;
    overflow: hidden;
    background: var(--modal-bg, #031c12);
    border: 2px solid var(--modal-border, var(--border-color));
    box-shadow: 0 15px 50px var(--modal-glow, rgba(0, 230, 118, 0.15));
}

.auth-modal-left {
    flex: 1.1;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.auth-promo-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-promo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.auth-promo-btn-skew {
    background: linear-gradient(135deg, #00e676, #00c853);
    color: #000;
    align-self: flex-start;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    transform: skewX(-12deg);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.3);
}

.auth-promo-btn-text {
    transform: skewX(12deg);
    display: inline-block;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-responsibility-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.62rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.badge-age-circle {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-weight: 900;
}

.badge-responsibility-text, .badge-portaria-text {
    white-space: nowrap;
}

.badge-divider {
    color: rgba(255,255,255,0.2);
}

.auth-modal-right {
    flex: 1.2;
    padding: 60px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: var(--modal-bg, #031c12);
    overflow-y: auto;
}

.auth-brand-logo {
    text-align: center;
    margin-bottom: 25px;
}

.auth-brand-logo .brand-logo {
    display: inline-flex;
    font-size: 1.8rem;
}

.auth-form-split {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group-split {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-split label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.form-group-split input {
    background: var(--modal-input-bg, #0b2018);
    border: 1px solid var(--modal-input-border, rgba(0, 230, 118, 0.08));
    border-radius: 8px;
    height: 44px;
    padding: 0 15px;
    color: #fff;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.form-group-split input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group-split input:focus {
    border-color: var(--modal-input-focus, var(--neon-green));
    box-shadow: 0 0 8px var(--modal-input-focus-glow, rgba(0, 230, 118, 0.1));
}

.password-field-wrapper {
    position: relative;
    width: 100%;
}

.password-field-wrapper input {
    width: 100%;
    padding-right: 45px;
}

.password-toggle-eye {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.password-toggle-eye:hover {
    color: var(--neon-green);
}

.forgot-password-align {
    text-align: right;
    margin-top: -6px;
    margin-bottom: 10px;
}

.forgot-password-link {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.76rem;
    transition: var(--transition);
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.btn-auth-submit-split {
    background: linear-gradient(135deg, var(--btn-auth-submit-bg-start, #00e676), var(--btn-auth-submit-bg-end, #00c853));
    color: var(--btn-auth-submit-text, #000);
    border: none;
    height: 48px;
    width: 100%;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    cursor: pointer;
    transform: skewX(-12deg);
    box-shadow: 0 4px 15px var(--btn-auth-submit-glow, rgba(0, 230, 118, 0.25));
    transition: var(--transition);
    margin-top: 5px;
}

.btn-auth-submit-split:hover {
    background: linear-gradient(135deg, var(--btn-auth-submit-hover-start, #00ff88), var(--btn-auth-submit-hover-end, #00e676));
    box-shadow: 0 4px 20px var(--btn-auth-submit-hover-glow, rgba(0, 230, 118, 0.35));
    transform: skewX(-12deg) translateY(-1px);
}

.btn-auth-text {
    transform: skewX(12deg);
    display: inline-block;
}

.auth-footer-split {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.auth-footer-split a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.auth-footer-split a:hover {
    text-decoration: underline;
}

.close-modal-round {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.close-modal-round:hover {
    background: rgba(255, 61, 0, 0.1);
    color: var(--red);
    border-color: rgba(255, 61, 0, 0.2);
    transform: rotate(90deg);
}

/* CPF specific validate layout */
.input-with-action-btn {
    display: flex;
    gap: 8px;
}

.input-with-action-btn input {
    flex: 1;
}

.btn-input-action-validate {
    background: var(--neon-green);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-input-action-validate:hover {
    filter: brightness(1.15);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

/* Phone input split-row */
.phone-input-row-split {
    display: flex;
    gap: 8px;
}

.phone-country-code-pill {
    background: var(--modal-input-bg, #0b2018);
    border: 1px solid var(--modal-input-border, rgba(0, 230, 118, 0.08));
    border-radius: 8px;
    height: 44px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.phone-input-row-split input {
    flex: 1;
}

/* Terms Acceptance and Checkbox split styling */
.terms-acceptance-row-split {
    margin-top: 6px;
    margin-bottom: 8px;
}

.custom-checkbox-split {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox-split input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark-split {
    width: 18px;
    height: 18px;
    background: var(--modal-input-bg, #0b2018);
    border: 1px solid var(--modal-input-border, rgba(0, 230, 118, 0.2));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: var(--transition);
}

.custom-checkbox-split input:checked ~ .checkbox-checkmark-split {
    background: var(--neon-green);
    border-color: var(--neon-green);
}

.checkbox-checkmark-split::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: #000;
    display: none;
}

.custom-checkbox-split input:checked ~ .checkbox-checkmark-split::after {
    display: block;
}

.checkbox-label-text {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.terms-link-highlight {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
}

.terms-link-highlight:hover {
    text-decoration: underline;
}

/* Referral code split inline box */
.inline-referral {
    background: rgba(0, 230, 118, 0.02);
    border: 1px dashed rgba(0, 230, 118, 0.15);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.inline-referral label {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.inline-referral input {
    background: transparent;
    border: none;
    height: auto;
    padding: 0;
    color: var(--neon-green);
    font-weight: 800;
    font-size: 0.85rem;
    width: auto;
    text-align: right;
    pointer-events: none;
    box-shadow: none !important;
}

.limits-link-align {
    text-align: center;
    margin-top: 10px;
}

.limits-link-muted {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 700;
    transition: var(--transition);
}

.limits-link-muted:hover {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* Split Modal Responsive Overrides */
@media (max-width: 768px) {
    .auth-modal-split {
        flex-direction: column;
        width: 100%;
        max-width: 450px;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    .auth-modal-left {
        display: none;
    }
    .auth-modal-right {
        width: 100%;
        padding: 30px 20px;
    }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.close-modal:hover {
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 25px;
    text-align: center;
}
.modal-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
}
.modal-header p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-secondary);
}
.form-group input, .form-group select {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    height: 44px;
    padding: 0 15px;
    color: var(--text-primary);
    outline: none;
    font-weight: 500;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--neon-green);
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}
.forgot-password {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
}
.forgot-password:hover {
    text-decoration: underline;
}

.error-message {
    color: #ff3d00;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    min-height: 18px;
}

.auth-submit-btn {
    background: var(--neon-green);
    color: #000;
    border: none;
    height: 46px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 0 15px var(--neon-green-glow);
    transition: var(--transition);
}
.auth-submit-btn:hover {
    background: #00ff88;
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.modal-footer a {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 700;
}
.modal-footer a:hover {
    text-decoration: underline;
}

/* GAME MODALS / OVERLAYS */
.game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 1500;
    align-items: center;
    justify-content: center;
}
.game-modal-content {
    background: #020f0a;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 0 40px rgba(0, 230, 118, 0.15);
    overflow: hidden;
    animation: zoomIn 0.3s ease-out;
}
.game-modal-header {
    background: var(--modal-bg, #031c12);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}
.game-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
}
.close-game-modal {
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.close-game-modal:hover {
    color: var(--text-primary);
}

.game-play-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    height: 480px;
}

.game-control-panel {
    background: var(--modal-bg, #031c12);
    padding: 20px;
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.bet-adjust-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.8rem;
    transition: var(--transition);
}
.bet-adjust-btn:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
}

.control-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.control-row input {
    flex: 1;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.game-action-btn {
    border: none;
    height: 54px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}
.color-aviator { background: var(--red); color: #fff; box-shadow: 0 0 15px var(--red-glow); }
.color-aviator:hover { background: #ff1744; }
.color-mines { background: var(--neon-green); color: #000; box-shadow: 0 0 15px var(--neon-green-glow); }
.color-mines:hover { background: #00ff88; }
.color-tiger { background: var(--gold); color: #000; box-shadow: 0 0 15px var(--gold-glow); }
.color-tiger:hover { background: #ffea00; }

/* Aviator Screen */
.aviator-screen {
    background: #020906;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.aviator-plane-wrapper {
    position: absolute;
    bottom: 20px;
    left: 20px;
    transition: all 0.1s linear;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.aviator-multiplier {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
    margin-bottom: 20px;
}
.aviator-plane {
    font-size: 2.5rem;
    color: var(--red);
    position: relative;
    transform: rotate(15deg);
    text-shadow: 0 0 15px var(--red-glow);
}
.plane-trail {
    position: absolute;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red));
    right: 30px;
    top: 50%;
    transform-origin: right center;
    opacity: 0.6;
}
.aviator-message {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Mines Screen */
.mines-grid-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020906;
    padding: 20px;
}
.mines-grid {
    display: grid;
    grid-template-columns: repeat(5, 54px);
    grid-template-rows: repeat(5, 54px);
    gap: 8px;
}
.mines-tile {
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    transition: var(--transition);
}
.mines-tile:hover {
    background: var(--card-hover);
    border-color: var(--neon-green);
    transform: scale(1.05);
}
.mines-tile.revealed-star {
    background: rgba(0, 230, 118, 0.1);
    color: var(--gold);
    border-color: var(--gold);
}
.mines-tile.revealed-mine {
    background: rgba(255, 61, 0, 0.1);
    color: var(--red);
    border-color: var(--red);
    animation: shake 0.2s double;
}

.mines-stats-row {
    display: flex;
    gap: 10px;
}
.stat-box {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-lbl {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 800;
}
.stat-val {
    font-size: 0.95rem;
    font-weight: 900;
    margin-top: 3px;
}

/* Fortune Tiger Reels */
.tiger-game-theme {
    background: linear-gradient(180deg, #5c0606, #2d0202);
}
.tiger-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}
.tiger-header-character {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.tiger-emoji {
    font-size: 3.5rem;
    animation: bobTiger 2s infinite ease-in-out;
}

@keyframes bobTiger {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.03); }
}

.tiger-bubble {
    background: #ffd700;
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    position: relative;
    margin-top: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.tiger-reels-box {
    background: #ffd700;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), 0 0 15px var(--gold-glow);
}
.tiger-reels {
    display: flex;
    gap: 6px;
    background: #5c0606;
    padding: 6px;
    border-radius: 10px;
}
.tiger-reel {
    width: 68px;
    height: 180px;
    background: #2d0202;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transition: transform 0.5s ease-out;
}
.reel-symbol {
    font-size: 2.2rem;
    transition: var(--transition);
}

.tiger-status-banner {
    background: #ffd700;
    color: #5c0606;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    padding: 6px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
}

/* Footer & Regulatory Stamp Custom Styles */

/* Full-width footer — sits outside .app-layout */
.app-footer {
    width: 100%;
    background: var(--sidebar-bg);
    border-top: 1px solid var(--border-color);
    padding: 50px 40px 30px;
    margin-top: 0;
    box-sizing: border-box;
}

.footer-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer-logo {
    font-size: 1.8rem;
}
.footer-description {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 36px;
    height: 36px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}
.social-links a:hover {
    color: var(--neon-green);
    border-color: var(--neon-green);
    background: rgba(0, 230, 118, 0.05);
}

.footer-links-col h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}
.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links-col ul li a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.footer-links-col ul li a:hover {
    color: var(--text-primary);
}

.footer-certificates {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.cert-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.cert-logo-mock {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--text-muted);
}
.cert-age-badge {
    background: transparent;
    border: 2px solid var(--red);
    color: var(--red);
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cert-responsibility-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
}
.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
}
.payment-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
}
.pix-logo-white {
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: lowercase;
    border: 1px solid rgba(0, 230, 118, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: -0.5px;
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.03);
    margin: 20px auto;
    max-width: 1400px;
}

.footer-disclaimer {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.disclaimer-text p {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: justify;
}
.disclaimer-text a {
    text-decoration: none;
    font-weight: 800;
    font-size: 0.7rem;
    margin-top: 5px;
    display: inline-block;
}

/* Authorized Seal style matching images */
.authorized-seal {
    border: 1px solid rgba(0, 230, 118, 0.15);
    background: rgba(4, 36, 25, 0.4);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    justify-content: center;
}
.seal-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.seal-flag {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #00c853, #ffd700, #002d1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.3);
    position: relative;
}
.seal-circle-blue {
    width: 16px;
    height: 16px;
    background: #0d47a1;
    border-radius: 50%;
    border: 1px solid #fff;
}
.seal-text-wrapper {
    display: flex;
    flex-direction: column;
}
.seal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}
.seal-subtitle {
    font-size: 0.55rem;
    color: var(--text-secondary);
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-top: 1px;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.03);
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 600;
}
.footer-bottom-links {
    display: flex;
    gap: 15px;
}
.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top-btn:hover {
    background: var(--neon-green);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--neon-green-glow);
}

/* Responsive Rules */
@media (max-width: 1200px) {
    .payout-cards-grid { grid-template-columns: repeat(3, 1fr); }
    .games-grid .game-card { flex: 0 0 calc((100% - 3 * 12px) / 4); }
    .weekly-cards-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top-row { grid-template-columns: repeat(2, 1fr); }
    .app-footer { padding: 40px 30px 24px; }
}

@media (max-width: 991px) {
    .sidebar-right { display: none; }
    .footer-disclaimer { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .sidebar-left {
        position: fixed;
        left: -260px;
        top: 0 !important;
        height: 100vh !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        border-right: 1px solid var(--border-color) !important;
        z-index: 999;
        transition: transform 0.3s ease-in-out;
    }
    .sidebar-left.open {
        transform: translateX(260px);
    }
    .payout-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .games-grid .game-card { flex: 0 0 140px; }
    .weekly-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .game-play-area { grid-template-columns: 1fr; height: auto; }
    .game-control-panel { border-left: none; border-top: 1px solid var(--border-color); }
    .footer-top-row { grid-template-columns: 1fr; }
    .slide-text h2 { font-size: 1.4rem; }
    .slide-image { font-size: 4rem; }
    .footer-certificates { justify-content: center; }
    .app-footer { padding: 32px 20px 20px; }
    .footer-bottom-bar { flex-direction: column; gap: 10px; text-align: center; }
}

/* Password Strength Indicator Popover */
.password-requirements-popover {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: var(--modal-bg, #031c12); /* dark background matching modal container */
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 8px;
    padding: 16px;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
    display: none; /* hidden by default */
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    opacity: 0;
    transform: translateY(-5px);
}

.password-requirements-popover.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.popover-progress-bar-wrapper {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}

.popover-progress-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
    border-radius: 3px;
}

/* Progress bar states */
.popover-progress-bar.red {
    background-color: #ff3d00;
    box-shadow: 0 0 10px rgba(255, 61, 0, 0.4);
}
.popover-progress-bar.yellow {
    background-color: #ffb300;
    box-shadow: 0 0 10px rgba(255, 179, 0, 0.4);
}
.popover-progress-bar.blue {
    background-color: #00b0ff;
    box-shadow: 0 0 10px rgba(0, 176, 255, 0.4);
}
.popover-progress-bar.green {
    background-color: #00e676;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
}

.popover-requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.req-item .req-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.68rem;
    transition: all 0.25s ease;
}

/* Invalid state */
.req-item.invalid {
    color: var(--text-muted);
}
.req-item.invalid .req-icon {
    color: #ff3d00;
    background: rgba(255, 61, 0, 0.1);
}

/* Valid state */
.req-item.valid {
    color: var(--text-primary);
}
.req-item.valid .req-icon {
    color: #00e676;
    background: rgba(0, 230, 118, 0.1);
}

.popover-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
}

.btn-popover-close {
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.25);
    color: var(--neon-green);
    padding: 6px 14px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

/* Logged In Header Buttons matching user mockup exactly */
.logged-in-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.header-btn, .header-card {
    border: none;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    transition: var(--transition);
    transform: skewX(-12deg);
}

.header-btn .skew-content, .header-card .skew-content {
    transform: skewX(12deg);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

/* 1. DEPOSITAR Button */
.btn-deposit-glow {
    background: linear-gradient(135deg, #00e676, #00b552);
    color: #02120d;
    padding: 0 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-deposit-glow:hover {
    background: linear-gradient(135deg, #00ff88, #00c853);
    box-shadow: 0 0 18px rgba(0, 230, 118, 0.6);
    transform: skewX(-12deg) scale(1.03);
}

/* 2. SALDO Card */
.card-balance {
    background: rgba(3, 28, 18, 0.8);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: #00e676;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 120px;
}

.card-balance:hover {
    background: rgba(3, 40, 26, 0.9);
    border-color: rgba(0, 230, 118, 0.4);
}

.card-balance .fa-rotate {
    font-size: 0.8rem;
    color: rgba(0, 230, 118, 0.7);
    cursor: pointer;
    transition: transform 0.4s ease;
}

.card-balance:hover .fa-rotate {
    transform: rotate(180deg);
    color: #00e676;
}

/* 3. PROFILE Button */
.btn-profile-skew {
    background: rgba(3, 28, 18, 0.8);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: #00e676;
    width: 44px;
    border-radius: 6px;
    font-size: 0.95rem;
}

.btn-profile-skew:hover {
    background: rgba(3, 40, 26, 0.9);
    border-color: rgba(0, 230, 118, 0.4);
    color: #fff;
}

/* 4. PLUS Button */
.btn-plus-skew {
    background: rgba(3, 28, 18, 0.8);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: #00e676;
    width: 44px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.btn-plus-skew:hover {
    background: rgba(3, 40, 26, 0.9);
    border-color: rgba(0, 230, 118, 0.4);
}

/* Notification Badge & Bell */
.notification-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.notification-bell-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #031c12;
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: var(--text-secondary);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    z-index: 5;
}

.notification-bell-badge:hover {
    color: #ffd700;
    border-color: #ffd700;
}

.notification-bell-badge .badge-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: #ff3d00;
    border-radius: 50%;
    box-shadow: 0 0 6px #ff3d00;
}

/* Dropdown Menus styling */
.profile-dropdown-wrapper {
    position: relative;
}

.profile-header-dropdown, .notifications-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: #031c12;
    border: 1px solid rgba(0, 230, 118, 0.25);
    border-radius: 8px;
    padding: 16px;
    display: none;
    flex-direction: column;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
    width: 220px;
    transform: translateY(-5px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.profile-header-dropdown.show, .notifications-dropdown.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Content */
.dropdown-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-user-info .info-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.dropdown-user-info .info-email {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dropdown-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 12px 0;
}

.dropdown-logout-btn {
    background: transparent;
    border: 1px solid rgba(255, 61, 0, 0.3);
    color: #ff3d00;
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.dropdown-logout-btn:hover {
    background: rgba(255, 61, 0, 0.1);
    border-color: #ff3d00;
}

/* Notifications Dropdown content */
.notifications-dropdown {
    width: 280px;
}

.notifications-dropdown .dropdown-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.notification-item {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.notification-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notification-item .item-icon {
    font-size: 0.85rem;
    color: #00e676;
    margin-top: 2px;
}

.notification-item.unread .item-icon {
    color: #ffd700;
}

.notification-item .item-text p {
    font-size: 0.74rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.notification-item.unread .item-text p {
    color: #fff;
    font-weight: 500;
}

.notification-item .item-time {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Responsive Overrides for Logged In Header Buttons */
@media (max-width: 768px) {
    .logged-in-buttons-wrapper {
        gap: 6px;
    }
    .btn-deposit-glow {
        padding: 0 14px;
        font-size: 0.78rem;
        height: 36px;
    }
    .card-balance {
        padding: 0 10px;
        font-size: 0.82rem;
        min-width: 100px;
        height: 36px;
    }
    .btn-profile-skew, .btn-plus-skew {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    .notification-bell-badge {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        top: -5px;
        right: -5px;
    }
}

@media (max-width: 480px) {
    .btn-deposit-glow {
        padding: 0 10px;
        font-size: 0.72rem;
        height: 34px;
    }
    .card-balance {
        padding: 0 8px;
        font-size: 0.75rem;
        min-width: 85px;
        height: 34px;
    }
    .btn-profile-skew, .btn-plus-skew {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* =====================================================
   PROFILE DRAWER PANEL
   ===================================================== */

/* Dark overlay behind drawer */
.profile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.profile-drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Drawer panel sliding from right */
.profile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 95vw;
    height: 100vh;
    background: var(--modal-bg, #031c12);
    border-left: 1px solid var(--modal-border, rgba(0, 230, 118, 0.15));
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.8);
}
.profile-drawer.open {
    transform: translateX(0);
}

/* Close X button */
.profile-drawer-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}
.profile-drawer-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ---- HEADER ---- */
.pdrawer-header {
    padding: 32px 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.pdrawer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2.5px solid #00e676;
    background: rgba(0, 230, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(0, 230, 118, 0.25);
}

.pdrawer-avatar-letter {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #00e676;
    line-height: 1;
}

.pdrawer-username {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* ---- BODY (Scrollable) ---- */
.pdrawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 230, 118, 0.2) transparent;
}
.pdrawer-body::-webkit-scrollbar {
    width: 4px;
}
.pdrawer-body::-webkit-scrollbar-track {
    background: transparent;
}
.pdrawer-body::-webkit-scrollbar-thumb {
    background: rgba(0, 230, 118, 0.2);
    border-radius: 2px;
}

/* ---- SECTION TITLE ---- */
.pdrawer-section-title {
    padding: 16px 24px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ---- SECTION WRAPPER ---- */
.pdrawer-section {
    padding: 4px 14px;
    margin-bottom: 4px;
}

/* ---- MENU LIST ---- */
.pdrawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

/* ---- MENU ITEM ---- */
.pdrawer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.18s ease, color 0.18s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer;
}
.pdrawer-menu li:last-child .pdrawer-item {
    border-bottom: none;
}
.pdrawer-item:hover {
    background: rgba(var(--neon-green-glow-raw, 0, 230, 118), 0.07);
    color: #fff;
}
.pdrawer-item:hover .pdrawer-arrow {
    color: var(--neon-green, #00e676);
    transform: translateX(3px);
}

/* ---- ITEM ICON ---- */
.pdrawer-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: var(--transition);
}
/* Icon color themes matching reference images */
.pdi-missions    { background: rgba(255, 152, 0, 0.15);  color: #ff9800; }
.pdi-tournaments { background: rgba(255, 215, 0, 0.12);  color: #ffd700; }
.pdi-loja        { background: rgba(0, 176, 255, 0.12);  color: #00b0ff; }
.pdi-minigames   { background: rgba(255, 61, 0, 0.12);   color: #ff5252; }
.pdi-niveis      { background: rgba(156, 39, 176, 0.15); color: #ce93d8; }
.pdi-notif       { background: rgba(100, 181, 246, 0.12);color: #64b5f6; }
.pdi-promo       { background: rgba(0, 230, 118, 0.12);  color: #00e676; }
.pdi-carteira    { background: rgba(0, 230, 118, 0.1);   color: #00e676; }
.pdi-premios     { background: rgba(0, 230, 118, 0.1);   color: #00e676; }
.pdi-dados       { background: rgba(0, 230, 118, 0.1);   color: #00e676; }
.pdi-historico   { background: rgba(0, 230, 118, 0.1);   color: #00e676; }
.pdi-config      { background: rgba(0, 230, 118, 0.1);   color: #00e676; }
.pdi-indique     { background: rgba(0, 230, 118, 0.1);   color: #00e676; }
.pdi-irpf        { background: rgba(0, 230, 118, 0.1);   color: #00e676; }
.pdi-protecoes   { background: rgba(0, 230, 118, 0.1);   color: #00e676; }

/* ---- ITEM LABEL ---- */
.pdrawer-item-label {
    flex: 1;
}

/* ---- ARROW ---- */
.pdrawer-arrow {
    font-size: 0.72rem;
    color: var(--text-muted);
    transition: color 0.18s ease, transform 0.18s ease;
}

/* ---- LOGOUT BUTTON ---- */
.pdrawer-logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 61, 0, 0.07);
    border: 1px solid rgba(255, 61, 0, 0.25);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-align: left;
}
.pdrawer-logout-btn:hover {
    background: rgba(255, 61, 0, 0.15);
    border-color: rgba(255, 61, 0, 0.5);
}
.pdrawer-logout-btn:hover .pdrawer-arrow {
    color: #ff3d00;
    transform: translateX(3px);
}

.pdrawer-logout-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 61, 0, 0.15);
    color: #ff5252;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.pdrawer-logout-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pdrawer-logout-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ff5252;
}
.pdrawer-logout-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ---- TRUST BADGE ---- */
.pdrawer-trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 24px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.pdrawer-trust-icon {
    color: #00e676;
    font-size: 0.85rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 480px) {
    .profile-drawer {
        width: 100vw;
    }
}

/* =====================================================
   LOGOUT CONFIRMATION DIALOG (inside profile drawer)
   ===================================================== */

/* Full-drawer overlay that blurs/dims the content behind */
.logout-confirm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 20;
    display: flex;
    align-items: flex-end;          /* stick to bottom like in the screenshot */
    justify-content: center;
    padding: 0 14px 80px;           /* gap from bottom above trust badge */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.logout-confirm-overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* The white-bordered card */
.logout-confirm-box {
    width: 100%;
    background: var(--modal-bg, #042a18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 22px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform: translateY(16px);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.logout-confirm-overlay.show .logout-confirm-box {
    transform: translateY(0);
}

/* Question text */
.logout-confirm-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

/* Button row */
.logout-confirm-btns {
    display: flex;
    gap: 10px;
}

/* Shared button base */
.logout-confirm-yes,
.logout-confirm-no {
    flex: 1;
    height: 42px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    border: 1px solid transparent;
}

/* "Sim" — red text, subtle red border */
.logout-confirm-yes {
    background: rgba(255, 61, 0, 0.08);
    border-color: rgba(255, 61, 0, 0.35);
    color: #ff5252;
}
.logout-confirm-yes:hover {
    background: rgba(255, 61, 0, 0.18);
    border-color: #ff5252;
}

/* "Não" — white/muted, dark bg */
.logout-confirm-no {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}
.logout-confirm-no:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   QUICK ACCESS DROPDOWN (Plus + Bell button)
   ===================================================== */

.quick-access-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 280px;
    background: var(--modal-bg, #031c12);
    border: 1px solid rgba(0, 230, 118, 0.18);
    border-radius: 12px;
    z-index: 500;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    display: block; /* always in DOM, controlled by opacity/pointer-events */
}

.quick-access-dropdown.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* ---- Menu list ---- */
.qa-menu {
    list-style: none;
    padding: 6px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* ---- Each row ---- */
.qa-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
    transition: background 0.16s ease;
    cursor: pointer;
}
.qa-menu li:last-child .qa-item {
    border-bottom: none;
}
.qa-item:hover {
    background: rgba(0, 230, 118, 0.07);
    color: #fff;
}
.qa-item:hover .qa-arrow {
    color: #00e676;
    transform: translateX(3px);
}

/* ---- Item icon box ---- */
.qa-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    flex-shrink: 0;
    transition: var(--transition);
}
/* Icon themes matching reference */
.qa-sacar    { background: rgba(0, 230, 118, 0.12); color: #00e676; }
.qa-favoritos{ background: rgba(0, 230, 118, 0.12); color: #00e676; }
.qa-recentes { background: rgba(0, 230, 118, 0.12); color: #00e676; }
.qa-notif    { background: rgba(0, 230, 118, 0.12); color: #00e676; }
.qa-premios  { background: rgba(0, 230, 118, 0.12); color: #00e676; }
.qa-promo    { background: rgba(0, 230, 118, 0.12); color: #00e676; }

/* ---- Label ---- */
.qa-label {
    flex: 1;
}

/* ---- Right arrow ---- */
/* ---- Right arrow ---- */
.qa-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: color 0.16s ease, transform 0.16s ease;
}

/* =====================================================
   DEPOSIT MODAL CUSTOM STYLES (Mockup Match)
   ===================================================== */
.deposit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 15px;
    animation: fadeInModal 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.deposit-modal-content {
    background: #0d211a;
    border: 1px solid rgba(0, 230, 118, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 230, 118, 0.08);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    padding: 24px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none; /* Hide scrollbar for clean app look */
}
.deposit-modal-content::-webkit-scrollbar {
    display: none;
}

.deposit-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.deposit-modal-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}
.deposit-modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--neon-green);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
}
.deposit-modal-close:hover {
    background: rgba(0, 230, 118, 0.15);
    transform: rotate(90deg);
}

/* 1. Promotional Offer Banner */
.deposit-promo-banner {
    background: linear-gradient(135deg, #d35400, #e67e22);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.deposit-promo-text {
    width: 60%;
    z-index: 2;
}
.deposit-promo-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.deposit-promo-text p {
    font-size: 0.72rem;
    color: #fff;
    line-height: 1.3;
    font-weight: 600;
}
.deposit-promo-text p span.highlight {
    color: #ffe082;
    font-weight: 800;
    text-decoration: underline;
}

.deposit-promo-character {
    position: absolute;
    right: 0px;
    bottom: -15px;
    height: 160px;
    width: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

/* 2. Timer blocks */
.deposit-timer-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    z-index: 2;
}
.deposit-timer-block {
    background: #111;
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 4px 6px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.deposit-timer-block span.lbl {
    font-size: 0.55rem;
    color: #90ab9f;
    margin-left: 2px;
    font-weight: 700;
}
.deposit-timer-divider {
    color: #fff;
    font-weight: 800;
    font-size: 0.75rem;
}

.deposit-promo-footer-text {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-top: 12px;
    z-index: 2;
    text-transform: uppercase;
}

/* 3. Payment Gateway Carousel */
.deposit-gateways-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 8px;
}
.gateway-arrow {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    width: 28px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    transition: var(--transition);
}
.gateway-arrow:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--neon-green);
    border-color: rgba(0, 230, 118, 0.2);
}
.gateways-viewport {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}
.gateways-viewport::-webkit-scrollbar {
    display: none;
}
.gateways-track {
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
}
.gateway-card {
    flex: 0 0 130px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}
.gateway-card img {
    height: 12px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: brightness(0.9);
}
.gateway-card span.gateway-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-secondary);
}
.gateway-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}
.gateway-card.active {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid var(--neon-green);
}
.gateway-card.active span.gateway-name {
    color: #fff;
}
.gateway-card.active img {
    opacity: 1;
    filter: none;
}

/* 4. Form inputs layout */
.deposit-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.deposit-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.deposit-input-group label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.deposit-readonly-field {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Main Amount input styling */
.deposit-amount-wrapper {
    margin-bottom: 20px;
}
.deposit-amount-wrapper label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}
.deposit-amount-input-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}
.deposit-amount-input-box:focus-within {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.15);
}
.deposit-amount-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.deposit-currency-symbol {
    color: var(--neon-green);
    font-weight: 800;
    font-size: 1.25rem;
}
.deposit-amount-field {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    width: 200px;
    font-family: inherit;
}
.deposit-amount-right {
    display: flex;
    align-items: center;
    gap: 6px;
}
.brl-flag {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
}
.currency-txt {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-secondary);
}

/* 5. Coupon trigger */
.deposit-coupon-wrapper {
    margin-bottom: 20px;
}
.deposit-coupon-toggle {
    color: var(--neon-green);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
}
.deposit-coupon-toggle:hover {
    color: #00ff88;
    text-shadow: 0 0 8px rgba(0, 230, 118, 0.2);
}

.deposit-coupon-input-box {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    animation: fadeInModal 0.2s ease forwards;
}
.deposit-coupon-input-box input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.8rem;
    outline: none;
    flex: 1;
}
.deposit-coupon-input-box input:focus {
    border-color: var(--neon-green);
}
.deposit-coupon-apply-btn {
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--neon-green);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.deposit-coupon-apply-btn:hover {
    background: var(--neon-green);
    color: #000;
}

/* 6. Quick amounts grid */
.deposit-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.quick-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 10px;
    border-radius: 10px;
    color: var(--neon-green);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.quick-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}
.quick-btn.active {
    background: rgba(0, 230, 118, 0.05);
    border: 1px solid var(--neon-green);
    box-shadow: inset 0 0 10px rgba(0, 230, 118, 0.1);
}
.quick-btn .btn-check-icon {
    display: none;
    font-size: 0.72rem;
    color: var(--neon-green);
}
.quick-btn.active .btn-check-icon {
    display: inline-block;
}
.quick-btn .badge-hot {
    position: absolute;
    top: -8px;
    right: 8px;
    background: #ffeb3b;
    color: #000;
    font-size: 0.52rem;
    font-weight: 900;
    padding: 1px 4px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Submit Action Button */
.btn-deposit-submit {
    position: relative;
    background: transparent;
    border: none;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    width: 100%;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.btn-deposit-submit:focus {
    outline: none;
}
.btn-deposit-submit .btn-skew-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 8px; /* rounded-lg */
    background-color: var(--neon-green);
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.22) 100%
    );
    transform: skewX(-20deg);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.25);
    transition: var(--transition);
}
.btn-deposit-submit:hover .btn-skew-bg {
    background-color: #00ff88;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35);
    transform: skewX(-20deg) scale(1.02);
}
.btn-deposit-submit .btn-content {
    position: relative;
    z-index: 10;
}

/* 7. PIX PAYMENT SCREEN (Stage 2) */
.deposit-payment-stage {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInModal 0.25s ease forwards;
}
.pix-instruction {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}
.qr-code-box {
    background: #fff;
    padding: 12px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.qr-code-box img {
    width: 200px;
    height: 200px;
    display: block;
}

.pix-copy-box {
    width: 100%;
    margin-bottom: 20px;
}
.pix-copy-box label {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
    text-align: left;
}
.pix-copy-row {
    display: flex;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}
.pix-copy-field {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 12px 14px;
    font-size: 0.75rem;
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pix-copy-btn {
    background: rgba(0, 230, 118, 0.1);
    border: none;
    border-left: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--neon-green);
    padding: 0 18px;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--transition);
}
.pix-copy-btn:hover {
    background: var(--neon-green);
    color: #000;
}

.pix-payment-timer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.pix-payment-timer span.time {
    color: var(--neon-green);
    font-weight: 800;
}

.btn-payment-confirm {
    position: relative;
    background: transparent;
    border: none;
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    width: 100%;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.btn-payment-confirm:focus {
    outline: none;
}
.btn-payment-confirm .btn-skew-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 8px; /* rounded-lg */
    background-color: var(--neon-green);
    background-image: linear-gradient(
        rgba(255, 255, 255, 0.1) 0%,
        rgba(0, 0, 0, 0.22) 100%
    );
    transform: skewX(-20deg);
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.25);
    transition: var(--transition);
}
.btn-payment-confirm:hover .btn-skew-bg {
    background-color: #00ff88;
    box-shadow: 0 4px 20px rgba(0, 230, 118, 0.35);
    transform: skewX(-20deg) scale(1.02);
}
.btn-payment-confirm .btn-content {
    position: relative;
    z-index: 10;
}

.btn-payment-back {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-payment-back:hover {
    color: #fff;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
        transform: scale(0.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =====================================================
   AFFILIATE MODULE PREMIUM DASHBOARD
   ===================================================== */
.affiliate-modal-content {
    background: var(--modal-bg, #031c12) !important;
    border: 2px solid var(--modal-border, var(--border-color)) !important;
    border-radius: 20px !important;
    width: 1100px !important;
    max-width: 95vw !important;
    height: 820px !important;
    max-height: 95vh !important;
    padding: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 15px 50px var(--modal-glow, rgba(0, 230, 118, 0.15)) !important;
}

.affiliate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.2);
}

.affiliate-back-btn {
    background: transparent;
    border: none;
    color: var(--text-primary, #fff);
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.affiliate-back-btn:hover {
    color: var(--neon-green);
}

.affiliate-tabs {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.affiliate-tabs li {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 5px;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
}

.affiliate-tabs li:hover, .affiliate-tabs li.active {
    color: var(--text-primary, #fff);
}

.affiliate-tabs li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--neon-green);
    border-radius: 2px;
}

.affiliate-body {
    flex: 1;
    padding: 25px 30px;
    overflow-y: auto;
}

.affiliate-tab-pane {
    display: none;
    animation: fadeInModal 0.25s ease-out;
}

.affiliate-tab-pane.active {
    display: block;
}

/* Grid & Cards */
.aff-grid-row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.aff-grid-row-2 {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 20px;
    margin-bottom: 20px;
}

.aff-grid-row-3 {
    display: grid;
    grid-template-columns: 1.3fr 1.7fr;
    gap: 20px;
    margin-bottom: 20px;
}

.aff-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.aff-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.aff-card-title .dot-yellow {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

.aff-card-title .dot-orange {
    width: 8px;
    height: 8px;
    background: #ff5722;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff5722;
}

.aff-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}

.aff-metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(0, 0, 0, 0.15);
    padding: 12px 6px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.02);
}

.aff-metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
}

.aff-metric-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
}

.aff-commission-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.aff-agent-level {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.04);
    border: 1px solid rgba(0, 230, 118, 0.12);
    border-radius: 10px;
    padding: 12px 10px;
    min-width: 90px;
    text-align: center;
}

.aff-agent-level i {
    font-size: 1.8rem;
    color: var(--gold);
    filter: drop-shadow(0 0 6px rgba(255,215,0,0.4));
}

.aff-agent-level span {
    font-size: 0.6rem;
    font-weight: 900;
    color: var(--neon-green);
    text-transform: uppercase;
}

.aff-commission-stats {
    display: flex;
    gap: 25px;
    flex: 1;
}

.aff-commission-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aff-commission-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
}

.aff-commission-value.paid {
    color: #fff;
}

.aff-commission-value.unpaid {
    color: var(--neon-green);
}

.aff-commission-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.aff-transfer-btn-wrapper {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.aff-transfer-btn {
    background: linear-gradient(135deg, var(--neon-green), #00c853);
    color: #000;
    border: none;
    padding: 11px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.aff-transfer-btn:hover {
    background: linear-gradient(135deg, #00ff88, var(--neon-green));
    box-shadow: 0 0 12px rgba(0,230,118,0.35);
}

.aff-transfer-subtext {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 600;
}

.aff-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.aff-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.aff-social-btn.facebook { background: #3b5998; }
.aff-social-btn.whatsapp { background: #25d366; }
.aff-social-btn.telegram { background: #0088cc; }
.aff-social-btn.twitter { background: #1da1f2; }
.aff-social-btn.email { background: #888888; }

.aff-social-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
}

.aff-share-link-box {
    display: flex;
    gap: 10px;
}

.aff-share-link-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 9px 12px;
    color: #fff;
    font-size: 0.8rem;
    outline: none;
}

.aff-copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--neon-green);
    padding: 0 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.aff-copy-btn:hover {
    background: var(--neon-green);
    color: #000;
}

/* Custom Diagram */
.diagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

/* Tab Tables */
.aff-search-row {
    margin-bottom: 20px;
    max-width: 300px;
}

.aff-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
}

.aff-table-wrapper {
    overflow-x: auto;
    background: rgba(0,0,0,0.15);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
}

.aff-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.82rem;
}

.aff-table th, .aff-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.aff-table th {
    background: rgba(0,0,0,0.1);
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
}

.aff-table td {
    color: #fff;
}

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

.aff-table-empty {
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
}

.aff-table-empty i {
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: block;
    color: var(--text-secondary);
    opacity: 0.5;
}

.aff-table-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.03);
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
}

.aff-rules-flex {
    display: flex;
    gap: 30px;
}

.aff-rules-left {
    flex: 1.2;
}

.aff-rules-right {
    flex: 0.8;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.02);
}

.aff-rules-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.aff-rules-text ol {
    padding-left: 20px;
    margin: 15px 0;
}

.aff-rules-text li {
    margin-bottom: 8px;
}

.aff-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aff-faq-item {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 15px 20px;
}

.aff-faq-question {
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.aff-faq-answer {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.aff-tutorial-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.aff-tutorial-step {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.aff-tutorial-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--neon-green);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    margin: 0 auto 15px;
}

.aff-tutorial-step-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.aff-tutorial-step-desc {
    font-size: 0.76rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .affiliate-modal-content {
        height: 90vh !important;
    }
    .aff-grid-row-1, .aff-grid-row-2, .aff-grid-row-3 {
        grid-template-columns: 1fr;
    }
    .aff-rules-flex {
        flex-direction: column;
    }
    .aff-tutorial-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .affiliate-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 15px 20px;
    }
    .affiliate-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    .affiliate-body {
        padding: 15px 20px;
    }
    .aff-metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
    .aff-commission-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .aff-tutorial-steps {
        grid-template-columns: 1fr;
    }
}


