/* ==========================================================================
   RBX Vault - Official Clean Gaming Theme (CSS)
   Integrated with High-Converting 3-Step Verification & Sidebar Architecture
   ========================================================================== */

:root {
    /* Core Palette */
    --bg-base: #090c13;
    --bg-surface: #101420;
    --bg-card: #151b2a;
    --bg-card-hover: #1c2438;
    --bg-input: #0e121d;
    --bg-token: #090e18;

    /* Accents */
    --accent-red: #ff3366;
    --accent-red-glow: rgba(255, 51, 102, 0.4);
    --accent-cyan: #00f0ff;
    --accent-cyan-glow: rgba(0, 240, 255, 0.35);
    --accent-green: #00e676;
    --accent-green-glow: rgba(0, 230, 118, 0.35);
    --accent-gold: #ffb703;
    --accent-gold-glow: rgba(255, 183, 3, 0.35);

    /* Text */
    --text-pure: #ffffff;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-card: rgba(255, 255, 255, 0.09);
    --border-hover: rgba(0, 240, 255, 0.4);

    /* Radiuses */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background-image: 
        radial-gradient(circle at 15% 8%, rgba(0, 240, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 15%, rgba(255, 51, 102, 0.05) 0%, transparent 40%);
}

.hidden {
    display: none !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.text-cyan {
    color: var(--accent-cyan) !important;
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 12, 19, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent-red), #ff758c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 0 16px var(--accent-red-glow);
    transition: var(--transition-smooth);
}

.brand-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 51, 102, 0.5));
    transition: var(--transition-smooth);
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.08) rotate(4deg);
    filter: drop-shadow(0 0 16px rgba(255, 51, 102, 0.8));
}

.brand-logo:hover .brand-icon {
    transform: rotate(10deg) scale(1.05);
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-pure);
    letter-spacing: -0.5px;
}

.brand-name .highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 12px var(--accent-cyan-glow);
}

.brand-badge {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: var(--accent-cyan);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 6px;
    letter-spacing: 0.5px;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* ==========================================================================
   Main Content Layout
   ========================================================================== */
.main-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 70px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 50px 16px 36px;
    max-width: 880px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: var(--accent-cyan);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text-pure);
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #38bdf8 50%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Search Box */
.search-box {
    position: relative;
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.search-ico {
    position: absolute;
    left: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition-fast);
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 52px;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-pure);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.search-input:focus {
    border-color: var(--accent-cyan);
    background: #131828;
    box-shadow: 0 0 25px var(--accent-cyan-glow);
}

.search-input:focus ~ .search-ico {
    color: var(--accent-cyan);
}

.clear-search {
    position: absolute;
    right: 20px;
    color: var(--text-muted);
    cursor: pointer;
    display: none;
    font-size: 1rem;
}

.clear-search:hover {
    color: var(--text-pure);
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 45px;
}

.stat-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.stat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1.1;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Section Title Header */
.section-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--text-pure);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--accent-red);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

.results-counter {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 700;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   VIEW 1: GAMES GRID (4 on Desktop, 2 on Mobile)
   ========================================================================== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Exactly 4 cards on Desktop */
    gap: 20px;
}

.home-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.home-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-red));
    opacity: 0.7;
    transition: var(--transition-fast);
}

.home-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 20px rgba(0, 240, 255, 0.12);
}

.home-card:hover::before {
    opacity: 1;
    height: 4px;
}

.card-logo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 14px;
    background: #000;
}

.card-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-card:hover .card-logo-img {
    transform: scale(1.08);
}

.badge-codes-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--accent-red), #ff758c);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.4);
}

.card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.75rem;
}

.card-update-status {
    color: var(--accent-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-category-txt {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.btn-show-codes {
    margin-top: auto;
    width: 100%;
    padding: 10px 14px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border: 1.5px solid rgba(0, 240, 255, 0.35);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.home-card:hover .btn-show-codes {
    background: var(--accent-cyan);
    color: #060b18;
    box-shadow: 0 0 16px var(--accent-cyan-glow);
    border-color: transparent;
}

/* No results state */
.no-results-box {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-results-ico {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.no-results-box h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.no-results-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-reset {
    background: var(--accent-cyan);
    color: #060b18;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 800;
    cursor: pointer;
}

/* ==========================================================================
   VIEW 2: DEDICATED GAME CODES PAGE (SIDEBAR + FEED)
   ========================================================================== */
.details-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-back {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-back:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateX(-3px);
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb strong {
    color: var(--text-pure);
}

/* 2-Column Experience Layout */
.game-experience-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* --- Left Sidebar --- */
.experience-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 90px;
}

.sidebar-header-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.sidebar-logo-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.sidebar-game-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-pulse-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: var(--accent-green);
    border: 2px solid var(--bg-surface);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
}

.sidebar-game-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 4px;
}

.sidebar-developer {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.sidebar-game-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-align: left;
    border-top: 1px solid var(--border-subtle);
    padding-top: 14px;
}

/* Sidebar Stats Grid */
.sidebar-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-mini-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-mini-icon {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.stat-mini-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-pure);
}

.stat-mini-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Sidebar Star Rating Card */
.sidebar-rating-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.rating-header-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.stars-row {
    display: flex;
    gap: 4px;
}

.star-btn {
    color: var(--accent-gold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.star-btn:hover {
    transform: scale(1.2);
}

.rating-number {
    text-align: right;
}

.rating-number .score {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-pure);
    margin-right: 4px;
}

.rating-number .score-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.rating-feedback-msg {
    font-size: 0.8rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 12px;
}

/* Tips Box */
.sidebar-tips-box {
    border-top: 1px solid var(--border-subtle);
    margin-top: 14px;
    padding-top: 14px;
}

.sidebar-tips-box h4 {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-tips-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-tips-box li {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-tips-box li i {
    color: var(--accent-green);
    font-size: 0.75rem;
}

/* --- Right Main Feed --- */
.experience-feed {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.feed-header-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 10px;
}

.feed-title-wrap h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-pure);
}

.feed-title-wrap p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.feed-codes-counter {
    font-size: 0.82rem;
    color: var(--accent-cyan);
    font-weight: 700;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

/* Coupons Feed List */
.coupons-feed-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

/* Modern Clean Code Row Card */
.coupon-row-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 16px;
    display: flex;
    flex-direction: row; /* Horizontal layout */
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.coupon-row-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    background: #141b2c;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.coupon-reward-visual {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    background: #000;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 240, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-reward-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coupon-info-wrap {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 8px;
}

/* Code Bar: Code on LEFT, Copy Button on RIGHT */
.coupon-code-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    width: 100%;
}

.coupon-code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.coupon-code-badge {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.expiry-tag {
    font-size: 0.72rem;
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.coupon-code-badge.badge-locked {
    color: var(--accent-gold);
    background: rgba(255, 183, 3, 0.12);
    border-color: rgba(255, 183, 3, 0.35);
}

.coupon-code-badge.badge-unlocked {
    color: var(--accent-green);
    background: rgba(0, 230, 118, 0.12);
    border-color: rgba(0, 230, 118, 0.35);
}

.coupon-code-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    flex: 1 1 auto;
    transition: var(--transition-fast);
}

.coupon-code-text:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.coupon-code-text.revealed-glow {
    color: var(--accent-cyan);
    text-shadow: 0 0 14px var(--accent-cyan-glow);
    animation: pulseGlow 0.35s ease;
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Direct Copy Button on RIGHT */
.btn-copy-direct {
    background: linear-gradient(135deg, var(--accent-cyan), #00a2ff);
    color: #060b18;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 3px 12px var(--accent-cyan-glow);
    transition: var(--transition-fast);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-copy-direct:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(0, 240, 255, 0.6);
}

.btn-copy-direct.copied {
    background: linear-gradient(135deg, var(--accent-green), #00c853);
    color: #060b18;
    box-shadow: 0 4px 16px var(--accent-green-glow);
}

/* Bottom Area: Info & Details */
.coupon-details-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.coupon-tags-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.incentive-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.coupon-row-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-pure);
    line-height: 1.35;
}

.coupon-row-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.rating-badge {
    background: rgba(255, 183, 3, 0.1);
    color: var(--accent-gold);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.72rem;
}

.stock-tag {
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Hidden Codes Handling */
.coupon-row-card.hidden-code {
    display: none !important;
}

.coupon-row-card.show-revealed {
    display: flex !important;
    flex-direction: column !important;
    animation: fadeInRow 0.35s ease forwards;
}

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

/* Show All Codes Button */
.show-all-wrap {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.btn-show-all-codes {
    background: rgba(0, 240, 255, 0.08);
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    padding: 15px 36px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 520px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.15);
}

.btn-show-all-codes:hover {
    background: var(--accent-cyan);
    color: #060b18;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-cyan-glow);
}

.btn-show-all-codes.all-shown {
    background: rgba(0, 230, 118, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
    box-shadow: none;
    cursor: default;
    transform: none;
}

/* ==========================================================================
   THE VERIFICATION & CODE MODAL
   ========================================================================== */
body.modal-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 12, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-window {
    background: var(--bg-surface);
    border: 1px solid var(--border-hover);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85), 0 0 30px var(--accent-cyan-glow);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    margin: auto;
    max-height: calc(100dvh - 28px);
    max-height: calc(100vh - 28px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-window {
    transform: scale(1);
}

/* Modal Header */
.modal-window-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
}

.modal-header-game {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header-thumb {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1.5px solid rgba(0, 240, 255, 0.4);
    flex-shrink: 0;
}

.modal-brand-tag {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.modal-header-badges {
    display: flex;
    gap: 8px;
    align-items: center;
}

.m-badge-verified {
    font-size: 0.7rem;
    color: var(--accent-green);
    font-weight: 700;
}

.m-badge-stock {
    font-size: 0.7rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.modal-btn-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.modal-btn-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Modal Body Steps */
.modal-window-body {
    padding: 20px 22px;
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.modal-step {
    display: flex;
    flex-direction: column;
}

/* Step 1 Styles */
.step-incentive-box {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.step-incentive-label {
    font-size: 0.72rem;
    color: var(--accent-cyan);
    font-weight: 800;
    letter-spacing: 1px;
}

.step-incentive-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-pure);
    margin: 4px 0 6px;
}

.step-incentive-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.step-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.step-stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    text-align: center;
}

.step-stat-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-pure);
    display: block;
}

.step-stat-lbl {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.btn-modal-action {
    background: linear-gradient(135deg, var(--accent-cyan), #00a2ff);
    color: #060b18;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 18px var(--accent-cyan-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.btn-modal-action:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 240, 255, 0.6);
}

.btn-modal-action.copied {
    background: linear-gradient(135deg, var(--accent-green), #00c853);
    color: #060b18;
    box-shadow: 0 4px 20px var(--accent-green-glow);
}

.btn-modal-action.copied:hover {
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 230, 118, 0.6);
}

/* Step 2 Styles (Loader) */
.loader-content-wrap {
    padding: 30px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-progress-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.progress-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 8;
}

.progress-ring-fill {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 326.7;
    stroke-dashoffset: 326.7;
    transition: stroke-dashoffset 0.15s linear;
}

.progress-percentage-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-pure);
}

.checkmark-icon {
    font-size: 2rem;
    color: var(--accent-green);
    animation: popCheck 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popCheck {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.verification-console {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 10px 20px;
    border-radius: var(--radius-full);
}

.verification-console p {
    font-size: 0.88rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Step 3 Styles (Locked Code) */
.final-step-wrap {
    text-align: center;
}

.final-step-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 4px;
}

.final-step-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-code-box {
    background: var(--bg-card);
    border: 2px dashed rgba(0, 240, 255, 0.35);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    margin-bottom: 22px;
    animation: modalCodePop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transition: var(--transition-fast);
}

@keyframes modalCodePop {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-code-box.unlocked {
    border-color: var(--accent-green);
    background: rgba(0, 230, 118, 0.06);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.15);
}

.code-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.code-box-tag {
    font-size: 0.72rem;
    color: var(--accent-cyan);
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.code-lock-status {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    gap: 4px;
}

.code-lock-status.unlocked {
    color: var(--accent-green);
}

.code-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.masked-code, .revealed-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.masked-code {
    color: var(--text-secondary);
}

.revealed-code {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.btn-copy-revealed {
    background: var(--accent-green);
    color: #060b18;
    border: none;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 12px var(--accent-green-glow);
}

.btn-copy-revealed:hover {
    background: #fff;
}

.btn-unlock-cpa {
    background: linear-gradient(135deg, var(--accent-red), #ff758c);
    color: #fff;
    box-shadow: 0 4px 18px var(--accent-red-glow);
}

.btn-unlock-cpa:hover {
    background: #ff4d79;
    box-shadow: 0 6px 24px rgba(255, 51, 102, 0.6);
}

/* Modal Footer */
.modal-window-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    flex-shrink: 0;
}

.m-footer-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   USER PRESERVED FOOTER
   ========================================================================== */
.site-footer {
    margin-top: auto;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 40px 24px;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand .footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 6px;
    max-width: 440px;
}

.footer-links-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-btn:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.copyright-txt {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Floating Toast */
.notification-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(16, 20, 32, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--accent-green);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-green-glow);
    z-index: 3000;
    transform: translateY(120px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.notification-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-green);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toast-body strong {
    font-size: 0.9rem;
    color: var(--text-pure);
    display: block;
}

.toast-body span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   Desktop: 4 cards on home | Sidebar + Feed on game page
   Mobile: 2 cards on home | Stacked layout on game page
   ========================================================================== */
@media (max-width: 1200px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 960px) {
    .game-experience-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }

    .experience-sidebar {
        position: static;
        width: 100%;
        max-width: 100%;
    }

    .header-status {
        display: none;
    }
}

@media (max-width: 860px) {
    /* 2 cards per row strictly on tablet & mobile */
    .game-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px;
    }

    .hero-section {
        padding: 35px 10px 24px;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-box {
        padding: 12px 14px;
    }

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

    .footer-links-wrap {
        align-items: center;
    }

    .notification-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 580px) {
    .brand-logo-img {
        width: 32px;
        height: 32px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .main-content {
        padding: 0 12px 50px;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .home-card {
        padding: 10px;
        border-radius: var(--radius-md);
    }

    .card-title {
        font-size: 0.95rem;
    }

    .card-meta-line {
        font-size: 0.68rem;
    }

    .card-category-txt {
        font-size: 0.72rem;
        margin-bottom: 10px;
    }

    .btn-show-codes {
        padding: 8px 10px;
        font-size: 0.72rem;
        border-radius: var(--radius-sm);
    }

    /* Mobile Coupon Card: Code on Left, Copy Button on Right, Info Below */
    .coupon-row-card {
        padding: 12px 14px;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .coupon-code-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding-bottom: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .coupon-code-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .coupon-code-badge {
        font-size: 0.62rem;
        padding: 2px 6px;
        flex-shrink: 0;
    }

    .coupon-code-text {
        font-size: 0.95rem;
        letter-spacing: 0.5px;
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .btn-copy-direct {
        padding: 7px 14px;
        font-size: 0.78rem;
        gap: 5px;
        flex-shrink: 0;
    }

    .coupon-details-bottom {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .coupon-tags-row {
        gap: 6px;
        margin-bottom: 2px;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .incentive-text {
        font-size: 0.72rem;
        padding: 2px 6px;
    }

    .coupon-row-title {
        font-size: 0.92rem;
        line-height: 1.35;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .coupon-row-desc {
        font-size: 0.74rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .btn-show-all-codes {
        padding: 12px 20px;
        font-size: 0.85rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-heading {
        font-size: 1.8rem;
    }

/* ==========================================================================
   Mobile Overrides for New Coupon Design
   ========================================================================== */
@media (max-width: 600px) {
    .coupon-row-card {
        flex-direction: row; 
        align-items: center;
        gap: 12px;
        padding: 12px;
    }
    .coupon-reward-visual {
        width: 65px;
        height: 65px;
        flex-shrink: 0;
    }
    .coupon-info-wrap {
        width: 100%;
        gap: 8px;
        align-items: flex-start;
    }
    .coupon-code-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 8px;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
        gap: 8px;
    }
    .coupon-code-wrap {
        flex: 1;
        gap: 6px;
    }
    .coupon-code-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
    .coupon-code-text {
        font-size: 1rem;
    }
    .expiry-tag {
        font-size: 0.65rem;
        padding: 2px 6px;
        margin-left: 0;
    }
    .btn-copy-direct {
        flex-shrink: 0;
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-top: 0;
    }
    .coupon-row-title {
        font-size: 0.95rem;
        line-height: 1.2;
    }
}

/* ==========================================================================
   Roblox Username Modal Theme
   ========================================================================== */
.roblox-theme-modal {
    max-width: 400px;
    background: #0f131f;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.rblx-input-group input:focus {
    outline: none;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

    /* Mobile Modal Optimizations */
    .modal-overlay {
        padding: 10px 8px;
        align-items: center;
    }

    .modal-window {
        max-width: 100%;
        max-height: calc(100dvh - 16px);
        max-height: calc(100vh - 16px);
        border-radius: var(--radius-md);
    }

    .modal-window-header {
        padding: 12px 14px;
        gap: 10px;
    }

    .modal-header-thumb {
        width: 44px;
        height: 44px;
    }

    .modal-brand-tag {
        font-size: 0.8rem;
    }

    .modal-window-body {
        padding: 14px 12px;
    }

    .step-incentive-box {
        padding: 12px 10px;
        margin-bottom: 12px;
    }

    .step-incentive-box h3 {
        font-size: 1.05rem;
        margin: 4px 0 4px;
        line-height: 1.35;
    }

    .step-incentive-box p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .step-stats-row {
        gap: 6px;
        margin-bottom: 14px;
    }

    .step-stat-item {
        padding: 8px 4px;
    }

    .step-stat-val {
        font-size: 0.9rem;
    }

    .step-stat-lbl {
        font-size: 0.65rem;
    }

    .btn-modal-action {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .modal-code-box {
        padding: 12px 14px;
        margin-top: 4px;
        margin-bottom: 10px;
    }

    .code-box-content {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .revealed-code {
        text-align: center;
        padding: 10px 0;
        font-size: 1.25rem;
        background: rgba(0, 240, 255, 0.04);
        border-radius: var(--radius-sm);
        border: 1px dashed rgba(0, 240, 255, 0.25);
    }

    .btn-copy-revealed {
        width: 100%;
        padding: 11px 16px;
        font-size: 0.88rem;
        justify-content: center;
    }

    .modal-window-footer {
        padding: 8px 12px;
    }

    .m-footer-note {
        font-size: 0.68rem;
    }
}

/* ==========================================================================
   Adsterra Ad Slots & Layout Extensions
   ========================================================================== */
.ad-slot-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    text-align: center;
    clear: both;
}

.ad-card-item {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 10px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-grid-banner {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 10px;
    margin: 10px 0;
}

@media (min-width: 769px) {
    .mobile-ad { display: none !important; }
}

@media (max-width: 768px) {
    .desktop-ad { display: none !important; }
}
