/* ==========================================================================
   DENEMEBONUS.COM - MASTERPIECE STYLESHEET (ADMIN PANEL EXTENSION ACTIVE)
   Dark Luxury Glassmorphism & Gold/Purple Neon Accents
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    --bg-primary: #070914;
    --bg-secondary: #0d1224;
    --bg-card: rgba(16, 23, 42, 0.88);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    --gold-primary: #ffd700;
    --gold-secondary: #ffb700;
    --gold-gradient: linear-gradient(135deg, #ffe066 0%, #ffd700 50%, #b8860b 100%);
    
    --accent-purple: #7928ca;
    --accent-pink: #ff0080;
    --neon-gradient: linear-gradient(135deg, #7928ca 0%, #ff0080 100%);
    --emerald-green: #00e676;
    --ruby-red: #ff3366;
    
    --border-glass: rgba(255, 215, 0, 0.28);
    --border-subtle: rgba(255, 255, 255, 0.1);
    
    --shadow-glass: 0 10px 40px 0 rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

button, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
button { cursor: pointer; transition: var(--transition); }

/* Ambient Background Glowing Orbs Animation */
.bg-glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    animation: orbPulse 10s ease-in-out infinite alternate;
}

.orb-top-left { top: -100px; left: -100px; width: 500px; height: 500px; background: #7928ca; animation-delay: 0s; }
.orb-top-right { top: 100px; right: -100px; width: 600px; height: 600px; background: #ffd700; animation-delay: 3s; }
.orb-center { top: 45%; left: 30%; width: 450px; height: 450px; background: #ff0080; animation-delay: 6s; }
.orb-bottom { bottom: -100px; right: 10%; width: 550px; height: 550px; background: #00e676; animation-delay: 2s; }

@keyframes orbPulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    100% { transform: scale(1.25) translate(40px, -40px); opacity: 0.5; }
}

/* Floating Background Emojis */
.floating-emoji {
    position: fixed;
    font-size: 2.2rem;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
    animation: floatBounce 6s ease-in-out infinite alternate;
}

.float-emoji-1 { top: 18%; left: 4%; animation-delay: 0s; }
.float-emoji-2 { top: 55%; left: 3%; animation-delay: 1.5s; }
.float-emoji-3 { top: 25%; right: 4%; animation-delay: 3s; }
.float-emoji-4 { top: 72%; right: 3%; animation-delay: 2s; }
.float-emoji-5 { top: 85%; left: 8%; animation-delay: 4.5s; }

@keyframes floatBounce {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-30px) rotate(15deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255, 215, 0, 0.4); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

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

.section-padding { padding: 80px 0; }
.hidden { display: none !important; }
.text-center { text-align: center; }
.margin-top-lg { margin-top: 35px; }

/* Glassmorphism Panel */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite alternate;
    background-size: 200% 200%;
}

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

.highlight { color: var(--gold-primary); }
.logo-domain { color: var(--emerald-green); font-weight: 900; font-size: 1rem; }

.emoji-icon { font-size: 1.2rem; display: inline-block; }

.emoji-xl {
    font-size: 2rem;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite alternate;
}

@keyframes floatIcon {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-6px) scale(1.1); }
}

/* Floating Telegram VIP Button */
.telegram-float-btn {
    position: fixed;
    bottom: 92px;
    right: 28px;
    z-index: 2500;
    background: linear-gradient(135deg, #0088cc, #005588);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 6px 25px rgba(0, 136, 204, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    animation: tgPulse 2s infinite;
}

@keyframes tgPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7); }
    50% { box-shadow: 0 0 0 14px rgba(0, 136, 204, 0); }
}

.telegram-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff;
}

.tg-badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
}

/* Floating Live Support Button */
.support-float-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 2500;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    animation: supportPulse 2s infinite;
    transition: var(--transition);
}

@keyframes supportPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { box-shadow: 0 0 0 14px rgba(16, 185, 129, 0); }
}

.support-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff;
}

.support-status-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px #fff;
}


/* Buttons & Badges */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    transition: var(--transition);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35);
    animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35); }
    50% { box-shadow: 0 6px 28px rgba(255, 215, 0, 0.65); }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.75);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.18);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(30deg);
    animation: glowSweep 3s infinite;
}

@keyframes glowSweep {
    0% { transform: translateX(-100%) rotate(30deg); }
    30%, 100% { transform: translateX(100%) rotate(30deg); }
}

.badge-pro {
    background: var(--neon-gradient);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    animation: badgeGlow 2s infinite alternate;
}

@keyframes badgeGlow {
    from { box-shadow: 0 0 6px rgba(255, 0, 128, 0.4); }
    to { box-shadow: 0 0 16px rgba(255, 0, 128, 0.85); }
}

/* --------------------------------------------------------------------------
   2. Navbar Header
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    z-index: 1000;
    background: rgba(7, 9, 20, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-icon-box {
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
    animation: crownPulse 2s infinite alternate;
}

@keyframes crownPulse {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.logo-text-group {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
}

.nav-link {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.highlight-admin {
    border: 1px dashed var(--gold-primary) !important;
    padding: 6px 12px !important;
    border-radius: var(--radius-sm);
    color: var(--gold-primary) !important;
    background: rgba(255, 215, 0, 0.05);
    font-weight: 800 !important;
}

.highlight-admin:hover {
    background: var(--gold-gradient) !important;
    color: var(--text-dark) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    color: var(--text-main);
    font-size: 1.4rem;
}

/* --------------------------------------------------------------------------
   3. Hero Section & FOMO
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 140px 0 50px 0;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 20px;
    animation: badgeSlideDown 0.8s ease-out;
}

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

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--emerald-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--emerald-green);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    50% { transform: scale(1.3); box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 30px auto;
    animation: fadeInUp 1s ease-out;
}

.fomo-bar {
    max-width: 760px;
    margin: 0 auto 35px auto;
    padding: 14px 20px;
    border: 1px solid var(--gold-primary);
    animation: fadeInUp 1.2s ease-out;
}

.fomo-info { font-size: 0.88rem; margin-bottom: 8px; }

.fomo-progress-wrap {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.fomo-progress-bar {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    box-shadow: 0 0 12px var(--gold-primary);
    animation: progressGlow 2s infinite alternate;
}

@keyframes progressGlow {
    from { opacity: 0.8; }
    to { opacity: 1; filter: drop-shadow(0 0 8px var(--gold-primary)); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto 40px auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    text-align: left;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.stat-icon-wrap {
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
}

.stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* Search & Filter Bar */
.search-filter-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    max-width: 960px;
    margin: 0 auto 25px auto;
    transition: var(--transition);
}

.search-filter-box:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-emoji-icon { position: absolute; left: 14px; font-size: 1rem; }

.search-input-wrapper input {
    width: 100%;
    padding: 10px 36px 10px 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-input-wrapper input:focus { border-color: var(--gold-primary); }
.clear-btn { position: absolute; right: 12px; background: transparent; color: var(--text-muted); font-size: 0.9rem; display: none; }

.sorting-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.custom-select {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.custom-select:hover { border-color: var(--gold-primary); }
.custom-select option { background: var(--bg-secondary); color: var(--text-main); }

.filter-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-btn {
    padding: 9px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.pill-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pill-btn:hover {
    border-color: var(--gold-primary);
    color: var(--text-main);
    transform: translateY(-3px);
}

.pill-btn.active {
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. HOT DEAL BANNER ANIMATED
   -------------------------------------------------------------------------- */
.hot-deal-section { padding: 15px 0 40px 0; }

.hot-deal-card {
    position: relative;
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(121, 40, 202, 0.18) 100%);
    border: 1.5px solid var(--gold-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-gold);
    animation: hotDealPulse 4s infinite alternate;
}

@keyframes hotDealPulse {
    from { box-shadow: 0 0 15px rgba(255, 215, 0, 0.25); }
    to { box-shadow: 0 0 35px rgba(255, 215, 0, 0.55); }
}

.hot-deal-card:hover { transform: translateY(-4px) scale(1.01); }

.hot-deal-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--ruby-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    padding: 3px 14px;
    border-radius: 20px;
    animation: badgeWiggle 3s infinite;
}

@keyframes badgeWiggle {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-3deg) scale(1.05); }
    20%, 40% { transform: rotate(3deg) scale(1.05); }
}

.hot-deal-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hot-deal-left { display: flex; align-items: center; gap: 16px; }

.hot-deal-logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.hot-deal-text h3 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; }
.hot-deal-text p { color: var(--text-muted); font-size: 0.88rem; }

.hot-deal-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.deal-amount { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; color: var(--gold-primary); display: block; line-height: 1; }
.deal-sub { font-size: 0.82rem; color: var(--emerald-green); font-weight: 700; }

/* --------------------------------------------------------------------------
   5. BONUS GRID & CARD ANIMATIONS
   -------------------------------------------------------------------------- */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
}

.section-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; margin-bottom: 4px; }
.section-subtitle { color: var(--text-muted); font-size: 0.95rem; }

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.bonus-card {
    position: relative;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    animation: cardFadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(25px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.bonus-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.35);
}

.card-featured-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--neon-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
}

.card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }

.site-logo-wrap {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
    transition: var(--transition);
}

.bonus-card:hover .site-logo-wrap {
    transform: rotate(5deg) scale(1.08);
}

.site-info { overflow: hidden; }

.site-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating-box { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; margin-top: 2px; }

.card-amount-box {
    background: rgba(255, 215, 0, 0.07);
    border: 1px dashed var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
    margin-bottom: 16px;
    transition: var(--transition);
}

.bonus-card:hover .card-amount-box {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--gold-primary);
}

.amount-title { font-size: 0.72rem; font-weight: 800; color: var(--text-muted); }

.amount-value {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-top: 2px;
}

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }

.tag-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    transition: var(--transition);
}

.tag-badge:hover { transform: translateY(-2px); }

.tag-badge.gold { background: rgba(255, 215, 0, 0.1); color: var(--gold-primary); border-color: rgba(255, 215, 0, 0.25); }

.promo-code-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.bonus-card:hover .promo-code-bar {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
}

.promo-code-bar label { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; white-space: nowrap; }

.code-display {
    font-family: monospace;
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-copy-sm { padding: 5px 10px; font-size: 0.78rem; border-radius: 6px; white-space: nowrap; flex-shrink: 0; }
.card-actions { display: flex; gap: 10px; }
.card-actions .btn { flex: 1; }

/* --------------------------------------------------------------------------
   6. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-wrapper { padding: 10px 24px; border-radius: var(--radius-lg); }

.faq-item { border-bottom: 1px solid var(--border-subtle); margin: 0; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    user-select: none;
    transition: var(--transition);
}

.faq-question:hover { color: var(--gold-primary); }
.faq-toggle-icon { font-size: 0.8rem; color: var(--gold-primary); transition: transform 0.3s ease; }
.faq-item.active .faq-toggle-icon { transform: rotate(180deg); }

.faq-answer {
    padding: 0 0 20px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: faqSlideDown 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   7. SEO & FEATURES & REVIEWS
   -------------------------------------------------------------------------- */
.seo-content-box { padding: 35px; border-radius: var(--radius-xl); }
.seo-heading { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; color: var(--gold-primary); }
.seo-lead { color: var(--text-muted); font-size: 0.98rem; line-height: 1.7; margin-bottom: 24px; }

.seo-subgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.seo-subcard { padding: 24px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-glass); }
.seo-subcard h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-main); }
.seo-subcard p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.seo-steps-box { padding: 24px; border-radius: var(--radius-md); background: rgba(255, 215, 0, 0.05); border: 1px solid var(--border-glass); }
.seo-steps-box h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--text-main); }
.seo-steps-list { margin-left: 20px; color: var(--text-muted); line-height: 1.8; font-size: 0.92rem; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card { padding: 26px 18px; text-align: center; transition: var(--transition); }

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box { transform: scale(1.1) rotate(6deg); }
.feature-emoji { font-size: 1.8rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { padding: 22px; transition: var(--transition); }
.review-card:hover { transform: translateY(-5px); border-color: var(--gold-primary); }

.review-user { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-gradient); color: var(--text-dark); font-weight: 900; display: flex; align-items: center; justify-content: center; }
.review-text { font-size: 0.88rem; color: var(--text-muted); font-style: italic; margin-bottom: 10px; }

.live-winner-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 2400;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--emerald-green);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: winnerSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes winnerSlideIn {
    from { transform: translateX(-120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.cta-section {
    padding: 10px 0 40px 0;
    margin-top: -35px;
}

.cta-card { padding: 40px 30px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-form { display: flex; gap: 10px; min-width: 380px; }
.cta-form input { flex: 1; padding: 12px 16px; background: rgba(0, 0, 0, 0.4); border: 1px solid var(--border-glass); border-radius: var(--radius-md); color: var(--text-main); }

.footer { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); padding-top: 60px; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 30px; margin-bottom: 40px; }

/* --------------------------------------------------------------------------
   8. MODALS & OVERLAY (PERFECT CENTERED CARD & HIGH Z-INDEX)
   -------------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 6, 14, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 5000; /* Above all floats and toasts */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.25s ease-out;
}

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

.modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 28px;
    background: #0d1224;
    border: 1.5px solid var(--gold-primary);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 215, 0, 0.3);
    margin: auto;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--ruby-red);
    color: #fff;
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-right: 40px;
}

.modal-site-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-site-icon-wrap .emoji-xl { font-size: 1.8rem; }

.modal-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.modal-bonus-banner {
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}

.modal-amount-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
    color: rgba(0, 0, 0, 0.7);
}

.modal-bonus-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    margin-top: 2px;
    line-height: 1.1;
    color: var(--text-dark);
}

.modal-detail-box, .modal-steps { margin-bottom: 20px; }

.modal-detail-box h4, .modal-steps h4 {
    font-size: 0.98rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.modal-detail-box ul { list-style: none; }

.modal-detail-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.modal-promo-box {
    background: rgba(255, 215, 0, 0.08);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-glass);
    margin-bottom: 20px;
}

.modal-promo-box label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 8px;
}

.copy-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-input-group input {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--gold-primary);
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 900;
    padding: 10px 14px;
    text-align: center;
    letter-spacing: 1px;
}

.modal-steps ol {
    margin-left: 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.modal-footer { margin-top: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 0.9rem;
}

.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 6000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid var(--gold-primary);
    color: var(--text-main);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: slideUp 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   10. ADMIN PANEL DASHBOARD CUSTOM STYLES
   -------------------------------------------------------------------------- */
.admin-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    margin-bottom: 25px;
    gap: 20px;
}

.admin-header-left h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.admin-header-left p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.admin-stat-card {
    padding: 20px;
    text-align: center;
}

.admin-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-top: 4px;
}

.admin-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 25px;
    align-items: start;
}

.admin-table-container {
    padding: 24px;
}

.table-header h3, .form-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 10px;
    color: var(--text-main);
}

.table-scroll {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    padding: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 2px solid var(--border-subtle);
}

.admin-table td {
    padding: 14px 12px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-main);
    vertical-align: middle;
}

.admin-table tbody tr {
    transition: var(--transition);
}

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

.admin-mini-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--border-glass);
}

.admin-actions-cell {
    display: flex;
    gap: 8px;
}

.btn-action-edit {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-primary);
    padding: 6px 12px;
    font-size: 0.78rem;
    border-radius: 6px;
}

.btn-action-edit:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-action-delete {
    background: rgba(255, 51, 102, 0.15);
    color: var(--ruby-red);
    padding: 6px 12px;
    font-size: 0.78rem;
    border-radius: 6px;
}

.btn-action-delete:hover {
    background: var(--ruby-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 51, 102, 0.4);
}

.admin-form-container {
    padding: 24px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.checkbox-row {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.form-actions-admin {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   11. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-subgrid { grid-template-columns: 1fr; }
    .hot-deal-content { flex-direction: column; text-align: center; }
    .hot-deal-left { flex-direction: column; }
    .hot-deal-right { flex-direction: column; width: 100%; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .cta-card { flex-direction: column; text-align: center; }
    .cta-form { min-width: 100%; }
    
    .admin-stats-grid { grid-template-columns: 1fr 1fr; }
    .admin-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    .nav-links.active { left: 0; }
    .mobile-toggle { display: block; }
    #navActionBtn { display: none; }
    
    .hero-title { font-size: 2.1rem; }
    .hero-stats { grid-template-columns: 1fr; }
    .search-filter-box { flex-direction: column; }
    .sorting-wrapper { width: 100%; justify-content: space-between; }

    .bonus-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    
    .admin-stats-grid { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    
    /* Prevent iOS zoom-on-focus by enforcing minimum 16px font-size */
    .search-input-wrapper input,
    .custom-select,
    .form-group input,
    .form-group textarea {
        font-size: 16px !important;
    }
}

@media (max-width: 580px) {
    .filter-pills {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 6px 4px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .filter-pills::-webkit-scrollbar {
        display: none;
    }
    .pill-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; line-height: 1.25; }
    .hero-subtitle { font-size: 0.88rem; }
    .bonus-card { padding: 16px; }
    .card-top { gap: 10px; }
    .site-logo-wrap { width: 46px; height: 46px; min-width: 46px; }
    .site-logo-wrap .logo-initial { font-size: 1.3rem !important; }
    .amount-value { font-size: 1.6rem; }
    .promo-code-bar { padding: 6px 10px; }
    .cta-card { padding: 24px 16px; }
    .cta-form { flex-direction: column; }
    .modal-card { padding: 18px; max-height: 90vh; }
    
    /* Perfect Android & iOS Wheel sizing scaling */
    .wheel-modal-card { padding: 16px !important; }
    .wheel-modal-layout { gap: 12px; }
    .canvas-holder { width: 250px !important; height: 250px !important; border-width: 4px !important; }
    #wheelCanvas { width: 100% !important; height: 100% !important; }
    .wheel-spin-btn { width: 52px !important; height: 52px !important; font-size: 0.68rem !important; border-width: 3px !important; }
    .wheel-pointer { top: -18px !important; font-size: 2.2rem !important; }

    /* Compact Circular Mobile Floating Action Buttons (FABs) */
    .telegram-float-btn,
    .support-float-btn,
    .wheel-float-btn {
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        right: 16px !important;
    }
    .telegram-float-btn { bottom: 84px !important; }
    .support-float-btn { bottom: 24px !important; }
    .wheel-float-btn { bottom: 144px !important; }
    
    .tg-text, .tg-badge, .support-text, .wheel-text {
        display: none !important;
    }
    .tg-icon, .support-icon, .wheel-icon-spin {
        font-size: 1.4rem !important;
        margin: 0 !important;
        display: inline-block !important;
    }
}

/* --------------------------------------------------------------------------
   12. HOT DEAL BANNER CAROUSEL SLIDER STYLES
   -------------------------------------------------------------------------- */
.hot-deal-card.slider-active {
    padding-bottom: 40px; /* Space for indicators */
    overflow: hidden;
}

.hot-deal-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 80px;
}

.hot-deal-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    transform: translateY(10px);
}

.hot-deal-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Slide arrows styling */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    border-color: var(--gold-primary);
}

.slider-arrow.prev { left: -16px; }
.slider-arrow.next { right: -16px; }

/* Dot indicators */
.slider-indicators {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold-primary);
    box-shadow: 0 0 8px var(--gold-primary);
}

/* Adjust layout on mobile */
@media (max-width: 1024px) {
    .slider-arrow.prev { left: 4px; }
    .slider-arrow.next { right: 4px; }
}

/* --------------------------------------------------------------------------
   13. LUCKY SPIN WHEEL WIDGET STYLES
   -------------------------------------------------------------------------- */
.wheel-layout-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
    border-radius: var(--radius-xl);
    background: rgba(13, 18, 36, 0.6);
    border: 1px solid var(--border-glass);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(121, 40, 202, 0.15);
}

.wheel-left-spin {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal specific wheel overrides */
.wheel-modal-card {
    max-width: 500px !important;
    padding: 24px !important;
}

.wheel-modal-header {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding-right: 0;
}

.wheel-modal-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.wheel-header-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.wheel-modal-body {
    padding-top: 10px;
}

.wheel-modal-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.wheel-result-container {
    width: 100%;
    text-align: center;
    min-height: 80px;
}

.wheel-instruction-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.chosen-site-banner {
    margin: 0 auto 12px auto;
    max-width: 280px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--gold-primary);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chosen-initial {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border: 1px solid var(--border-glass);
}

.chosen-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.chosen-bonus-text {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.chosen-claim-link {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.canvas-holder {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(121, 40, 202, 0.4);
    border: 6px solid #1e1b4b;
    background: #09061a;
}

#wheelCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
}

.wheel-pointer {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    z-index: 100;
    color: var(--ruby-red);
    text-shadow: 0 0 15px rgba(255, 51, 102, 0.8);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
    animation: pointerWiggle 0.8s ease-in-out infinite alternate;
}

@keyframes pointerWiggle {
    0% { transform: translateX(-50%) translateY(0) scale(1); }
    100% { transform: translateX(-50%) translateY(5px) scale(1.1); }
}

.wheel-spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 4px solid #111827;
    color: #0f172a;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    z-index: 50;
    transition: var(--transition);
}

.wheel-spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 1);
}

.wheel-spin-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    background: #475569;
    color: #cbd5e1;
    box-shadow: none;
}

.wheel-right-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
}

.wheel-instructions h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--gold-primary);
}

.wheel-instructions p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wheel-prizepool-badge {
    display: inline-block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: rgba(121, 40, 202, 0.15);
    border: 1px dashed rgba(121, 40, 202, 0.4);
    font-size: 0.9rem;
}

/* Success result animations */
.wheel-success-card {
    text-align: center;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

.confetti-emoji {
    font-size: 2.2rem;
    margin-bottom: 8px;
    animation: confettiBounce 0.6s infinite alternate;
}

@keyframes confettiBounce {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

.wheel-success-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
}

.chosen-site-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #1e1b4b, #7928ca);
    border: 1px solid var(--border-glass);
    max-width: 320px;
    margin: 0 auto 16px auto;
    box-shadow: 0 10px 25px rgba(121, 40, 202, 0.3);
}

.chosen-initial {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-gradient);
    color: #0f172a;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.chosen-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
}

.chosen-bonus-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Responsive constraints */
@media (max-width: 1024px) {
    .wheel-layout-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }
    .canvas-holder {
        width: 320px;
        height: 320px;
    }
}

/* Floating Lucky Wheel Button */
.wheel-float-btn {
    position: fixed;
    bottom: 156px;
    right: 28px;
    z-index: 2500;
    background: linear-gradient(135deg, #7928ca, #ff0080);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 6px 25px rgba(121, 40, 202, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    animation: wheelPulse 2s infinite;
    transition: var(--transition);
}

@keyframes wheelPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(121, 40, 202, 0.7); }
    50% { box-shadow: 0 0 0 14px rgba(121, 40, 202, 0); }
}

.wheel-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff;
}

.wheel-icon-spin {
    display: inline-block;
    animation: spinSlow 6s linear infinite;
}

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

/* Confetti particles */
.confetti-piece {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 12px;
    z-index: 6000; /* above all overlays */
    pointer-events: none;
    border-radius: 1px;
    animation: confettiFall 2.5s cubic-bezier(0.1, 0.8, 0.25, 1) forwards;
}

@keyframes confettiFall {
    0% {
        transform: translate3d(var(--x), var(--y), 0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--tr));
        opacity: 0;
    }
}

/* Custom SVG Logo Animations */
.db-logo-svg {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.45));
    transition: var(--transition);
}

.logo:hover .db-logo-svg {
    transform: rotate(15deg) scale(1.12);
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.8));
}

/* Custom Slot Machine SVG Animations */
.slot-machine-svg {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.35));
    transition: var(--transition);
}

.slot-machine-svg:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.7));
}

.slot-reel {
    animation: reelSpin 2s linear infinite;
}

.reel-1 { animation-duration: 0.9s; }
.reel-2 { animation-duration: 0.6s; }
.reel-3 { animation-duration: 0.8s; }

@keyframes reelSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-24px); } /* matches vertical offset for text loop */
}

/* Animated Fire SVG CSS */
.fire-svg {
    filter: drop-shadow(0 0 3px #ff4500);
}

.fire-back {
    animation: flameFlickerBack 1.2s infinite alternate ease-in-out;
    transform-origin: bottom center;
}

.fire-mid {
    animation: flameFlickerMid 0.8s infinite alternate ease-in-out;
    transform-origin: bottom center;
}

.fire-front {
    animation: flameFlickerFront 0.5s infinite alternate ease-in-out;
    transform-origin: bottom center;
}

@keyframes flameFlickerBack {
    0% { transform: scale(0.9) skewX(-2deg); opacity: 0.9; }
    100% { transform: scale(1.1) skewX(2deg); opacity: 1; }
}

@keyframes flameFlickerMid {
    0% { transform: scale(1.1) skewX(3deg); }
    100% { transform: scale(0.85) skewX(-3deg); }
}

@keyframes flameFlickerFront {
    0% { transform: scale(0.85) skewX(-4deg); opacity: 0.95; }
    100% { transform: scale(1.15) skewX(4deg); opacity: 1; }
}

/* Spark SVG Animations */
.spark-svg {
    filter: drop-shadow(0 0 3px #ff3366);
}
.spark-main {
    animation: sparkPulse 1.5s infinite alternate ease-in-out;
    transform-origin: center;
}
@keyframes sparkPulse {
    0% { transform: scale(0.8) rotate(0deg); }
    100% { transform: scale(1.18) rotate(90deg); }
}

/* Gift SVG Animations */
.gift-svg {
    filter: drop-shadow(0 0 3px #ffd700);
    animation: giftBounce 1.8s infinite ease-in-out;
    transform-origin: bottom center;
}
@keyframes giftBounce {
    0%, 100% { transform: translateY(0) scaleY(1); }
    50% { transform: translateY(-4px) scaleY(0.92); }
}

/* Book SVG Animations */
.book-svg {
    filter: drop-shadow(0 0 3px #3b82f6);
    animation: bookPulse 2s infinite ease-in-out;
    transform-origin: center;
}
@keyframes bookPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-4deg); }
}

/* Money SVG Animations */
.money-svg {
    filter: drop-shadow(0 0 4px #ffd700);
    animation: moneyPulse 2.2s infinite ease-in-out;
    transform-origin: center;
}
@keyframes moneyPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.14) rotate(8deg); }
}

/* Shield SVG Animations */
.shield-svg {
    filter: drop-shadow(0 0 4px #ffd700);
    animation: shieldShine 2.5s infinite ease-in-out;
    transform-origin: center;
}
@keyframes shieldShine {
    0%, 100% { transform: scale(1) rotateY(0deg); }
    50% { transform: scale(1.08) rotateY(180deg); }
}

/* Rocket SVG Animations */
.rocket-svg {
    filter: drop-shadow(0 0 5px #ff3366);
    animation: rocketWiggle 1.5s infinite ease-in-out;
    transform-origin: bottom left;
}
@keyframes rocketWiggle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(2px, -3px) rotate(4deg); }
}

/* Checkmark SVG Animations */
.check-svg {
    filter: drop-shadow(0 0 3px #00e676);
    animation: checkPulse 1.8s infinite alternate ease-in-out;
    transform-origin: center;
}
@keyframes checkPulse {
    0% { transform: scale(0.92); }
    100% { transform: scale(1.12); }
}

/* Document SVG Animations */
.doc-svg {
    filter: drop-shadow(0 0 3px #3b82f6);
    animation: docWiggle 2.5s infinite alternate ease-in-out;
    transform-origin: center;
}
@keyframes docWiggle {
    0% { transform: rotate(-5deg); }
    100% { transform: rotate(5deg); }
}

/* Lightning SVG Animations */
.lightning-svg {
    filter: drop-shadow(0 0 4px #ffd700);
    animation: lightPulse 1.2s infinite alternate ease-in-out;
    transform-origin: center;
}
@keyframes lightPulse {
    0% { transform: scale(0.9) skewX(-2deg); }
    100% { transform: scale(1.15) skewX(2deg); }
}

/* Key SVG Animations */
.key-svg {
    filter: drop-shadow(0 0 3px #ffd700);
    animation: keyTilt 2s infinite alternate ease-in-out;
    transform-origin: center;
}
@keyframes keyTilt {
    0% { transform: rotate(-8deg); }
    100% { transform: rotate(8deg); }
}

/* Refresh SVG Animations */
.refresh-svg {
    filter: drop-shadow(0 0 3px #3b82f6);
}
.refresh-svg path {
    animation: spinSlow 3s linear infinite;
    transform-origin: center;
}

/* Headphones SVG Animations */
.headphones-svg {
    filter: drop-shadow(0 0 4px #ff3366);
    animation: headphonesPulse 1.5s infinite alternate ease-in-out;
    transform-origin: center;
}
@keyframes headphonesPulse {
    0% { transform: scale(0.92) rotate(-3deg); }
    100% { transform: scale(1.08) rotate(3deg); }
}

/* Trophy SVG Animations */
.trophy-svg {
    filter: drop-shadow(0 0 5px #ffd700);
    animation: trophyShine 2s infinite ease-in-out;
    transform-origin: center;
}
@keyframes trophyShine {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(8deg); }
}

/* Mail SVG Animations */
.mail-svg {
    filter: drop-shadow(0 0 4px #ff3366);
    animation: mailPulse 1.8s infinite alternate ease-in-out;
    transform-origin: center;
}
@keyframes mailPulse {
    0% { transform: scale(0.9) translateY(0); }
    100% { transform: scale(1.1) translateY(-2px); }
}











