/* ============================================================
   PREMIUM STYLE SYSTEM 2026 - SkinCaseReviewer.com
   CLEANED & ORGANIZED VERSION
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES & BASE SETUP
   ============================================================ */
:root {
    /* Colors */
    --primary-blue: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --dark-bg: #0b0f16;
    --card-bg: #161c27;
    --card-hover: #1c2535;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --accent-yellow: #f59e0b;
    --success-green: #22c55e;
}

/* Base Reset */
* {
    box-sizing: border-box;
}

html {
    height: -webkit-fill-available;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* ============================================================
   2. HEADER
   ============================================================ */
.premium-header {
    width: 100%;
    height: 90px;
    background: rgba(6, 9, 14, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.header-left {
    justify-self: start;
}

.logo img {
    height: 48px;
    display: block;
}

.main-nav {
    justify-self: center;
    display: flex;
    gap: 10px;
    background: none;
    border: none;
    padding: 0;
}

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    border-radius: 10px;
    transition: 0.25s;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    background: rgba(59, 130, 246, 0.15);
    color: #ffffff;
    box-shadow: inset 0 -2px 0 #3b82f6;
}

.header-right {
    justify-self: end;
}

.search-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 260px;
}

.search-box input {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    outline: none;
    width: 100%;
}

.search-icon {
    opacity: 0.5;
    font-size: 16px;
}

.nav-toggle {
    display: none;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    z-index: 1300;
}

/* ============================================================
   3. HERO SECTION
   ============================================================ */
.premium-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.08) 35%, rgba(11, 15, 22, 0.5) 70%, transparent 90%);
    overflow: hidden;
    margin-bottom: 20px;
}

.premium-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
}

.verified-badge,
.live-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    display: inline-block;
}

.live-badge {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    margin-bottom: 25px;
}

.premium-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin: 20px 0;
    font-weight: 800;
    color: white;
}

.premium-hero .highlight {
    color: var(--primary-blue);
    text-shadow: 0 0 30px var(--primary-glow);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-subtitle em {
    color: var(--text-main);
    opacity: 0.8;
}

/* Hero Decorative Skins */
.hero-skin {
    position: absolute;
    width: 320px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
    filter: drop-shadow(0 0 30px var(--primary-glow)) blur(0.5px);
}

.skin-left {
    left: 2%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    animation: floatLeft 8s ease-in-out infinite;
}

.skin-right {
    right: 2%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    animation: floatRight 8s ease-in-out infinite;
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateY(-50%) rotate(-15deg);
    }
    50% {
        transform: translateY(-58%) rotate(-10deg);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translateY(-50%) rotate(15deg);
    }
    50% {
        transform: translateY(-42%) rotate(20deg);
    }
}

.hero-glow-divider {
    width: 100px;
    height: 2px;
    background: var(--primary-blue);
    margin: 0 auto;
    box-shadow: 0 0 15px var(--primary-blue);
    border-radius: 2px;
}

/* ============================================================
   4. MAIN LAYOUT
   ============================================================ */
.main-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

.rankings-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ============================================================
   5. CARDS & GLASS EFFECTS
   ============================================================ */
.glass-card {
    background: rgba(22, 28, 39, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.card-title-v3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    margin-bottom: 40px;
}

.rank-tag {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--accent-yellow);
    color: #000;
    font-weight: 900;
    padding: 6px 18px;
    border-radius: 8px;
}

.badge-gold {
    display: inline-block;
    color: var(--accent-yellow);
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================================
   6. RANKING TABLES & ROWS
   ============================================================ */
.table-labels {
    display: grid;
    grid-template-columns: 80px 1fr 100px 120px 180px;
    padding: 0 25px 15px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
}

.rank-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px 120px 180px;
    align-items: center;
    background: var(--card-bg);
    margin-bottom: 12px;
    padding: 15px 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: 0.2s;
}

.rank-row:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(5px);
}

.row-rank {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.row-site {
    display: flex;
    gap: 15px;
    align-items: center;
}

.row-site img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    object-fit: contain;
}

.site-meta strong {
    display: block;
    font-size: 1.1rem;
    color: white;
}

.site-meta span {
    font-size: 12px;
    color: var(--text-muted);
}

.row-edge,
.row-activity {
    font-weight: 700;
    font-size: 14px;
}

.row-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Activity Status Colors */
.activity-high {
    color: var(--success-green) !important;
}

.activity-mid {
    color: var(--accent-yellow) !important;
}

.activity-low {
    color: #ef4444 !important;
}

/* ============================================================
   7. FEATURED SECTIONS
   ============================================================ */
.featured-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.featured-logo-box {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    background: var(--dark-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    padding: 20px;
}

.featured-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.featured-info {
    flex: 1;
}

.featured-info h2 {
    font-size: 2rem;
    margin: 0 0 10px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-actions {
    display: flex;
    gap: 15px;
}

/* ============================================================
   8. STATS & METRICS
   ============================================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 12px;
    text-align: center;
}

.stat-pill label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.premium-stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.p-stat {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s;
}

.p-stat:hover {
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
}

.p-stat label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.p-stat strong {
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
}

/* Rating Display */
.rating-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.stars-gold {
    color: var(--accent-yellow);
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.rating-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
}

.rating-label {
    color: var(--text-muted);
    font-size: 15px;
}

/* ============================================================
   9. BUTTONS & INTERACTIVE ELEMENTS
   ============================================================ */
.btn-play {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
    display: inline-block;
}

.btn-play:hover {
    box-shadow: 0 0 20px var(--primary-glow);
    filter: brightness(1.1);
}

/* Alternative link-style button for game mode cards */
.mode-card a,
.btn-link-style {
    color: #5b9cff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.mode-card a:hover,
.btn-link-style:hover {
    color: white;
    gap: 12px;
}

.btn-primary-glow {
    background: var(--primary-blue);
    color: white;
    padding: 18px 40px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 0 30px var(--primary-glow);
    transition: 0.3s;
    display: inline-block;
}

.btn-review {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    transition: 0.2s;
}

.btn-play-v3 {
    background: white;
    color: black;
    padding: 20px;
    display: block;
    border-radius: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.btn-play-v3:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

/* ============================================================
   10. SIDEBAR
   ============================================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px;
}

.sidebar-card h3 {
    margin: 0 0 20px;
    font-size: 1.2rem;
    color: white;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-text strong {
    display: block;
    font-size: 13px;
    color: var(--text-main);
}

.info-text p {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
}

.pro-tip-box {
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 20px;
    border-radius: 15px;
}

.promo-sidebar {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%) !important;
    border: 1px solid var(--primary-blue) !important;
    text-align: center;
    padding: 40px 30px !important;
    position: sticky;
    top: 100px;
}

.promo-top {
    font-size: 11px;
    font-weight: 900;
    color: var(--primary-blue);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.promo-code-display {
    background: rgba(59, 130, 246, 0.1);
    border: 2px dashed var(--primary-blue);
    padding: 20px;
    margin: 25px 0;
    font-size: 1.8rem;
    font-weight: 900;
    border-radius: 15px;
    color: white;
}

/* ============================================================
   11. INFO CARDS & HUB SECTIONS
   ============================================================ */

/* How Our Rankings Work Info Card */
.hub-info-card,
.hub-info-card-v2 {
    background: rgba(22, 28, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
}

.hub-info-card h3,
.hub-info-card-v2 h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
}

.card-header-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon-v2 {
    font-size: 24px;
    color: var(--primary-blue);
}

.card-intro-v2 {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Ranking Criteria Grid */
.ranking-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.grid-item-v2 {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.grid-item-v2 span {
    color: var(--success-green);
    font-size: 16px;
}

.card-footer-note-v2 {
    text-align: center;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
    opacity: 0.6;
    margin-top: 20px;
    text-transform: uppercase;
}

/* ============================================================
   12. HUB & MODE CARDS
   ============================================================ */
.section-title-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 80px 0 40px;
    font-size: 2rem;
    color: white;
}

.section-title-v2 span {
    color: var(--primary-blue);
    font-size: 24px;
}

.hub-grid,
.hub-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

/* Mode Cards - Left-aligned with header layout */
.mode-card-v2 {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mode-card-v2:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: var(--card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Header with icon and title side by side */
.card-header-v3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mode-icon-v2 {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    flex-shrink: 0;
}

.mode-icon-v2 img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Icon background colors */
.icon-orange { background: rgba(249, 115, 22, 0.1); border: 1px solid rgba(249, 115, 22, 0.2); }
.icon-yellow { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); }
.icon-blue { background: rgba(59, 130, 246, 0.1); border: 1px solid rgba(59, 130, 246, 0.2); }
.icon-red { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); }
.icon-green { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); }
.icon-purple { background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.2); }

.mode-card-v2 h3 {
    color: white;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 700;
}

.mode-card-v2 p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Button style for VIEW RANKINGS */
.btn-play-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.mode-card-v2:hover .btn-play-v2 {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-play-v2 span {
    font-size: 18px;
    margin-left: 10px;
}

/* ============================================================
   13. REVIEWS & CONTENT SECTIONS
   ============================================================ */
.review-hero-v3 {
    padding: 100px 20px 60px;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.hero-card-glass {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    max-width: 1100px;
    width: 100%;
}

.hero-logo-wrapper {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    background: var(--dark-bg);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-logo-wrapper img {
    width: 75%;
    object-fit: contain;
}

/* Pros & Cons */
.pros-cons-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 10px;
}

.side-list {
    list-style: none;
    padding: 0;
}

.side-list li {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.side-label {
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
}

.side-label.green {
    color: var(--success-green);
}

.side-label.red {
    color: #ef4444;
}

/* ============================================================
   14. GALLERIES & MEDIA
   ============================================================ */
.gallery-grid-v3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.img-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #000;
    aspect-ratio: 16/9;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.img-frame:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Game Icons Grid */
.game-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.g-icon-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 18px;
    text-align: center;
    transition: 0.3s;
}

.g-icon-box:hover {
    border-color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
}

.g-icon-box img {
    width: 40px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.g-icon-box span {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
}

/* Payment & Mini Game Grids - FIXED SIZING */
.mini-game-grid,
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    align-items: center;
    justify-items: center;
    margin: 20px 0;
}

.mini-game-grid img,
.payment-grid img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s ease;
}

.mini-game-grid img:hover,
.payment-grid img:hover {
    transform: scale(1.1);
}

/* ============================================================
   15. FORMS & USER INPUT
   ============================================================ */
.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.avg-pill {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 14px;
}

.avg-pill span {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 10px;
    font-size: 12px;
}

.premium-form {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.v3-input,
.v3-textarea {
    width: 100%;
    background: #080b11;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    color: white;
    margin-bottom: 15px;
    font-family: inherit;
}

.v3-input:focus,
.v3-textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
}

.btn-submit-v3 {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-v3:hover {
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.premium-footer {
    background: #080b11;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    text-align: left;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials img {
    width: 24px;
    filter: grayscale(1);
    transition: 0.2s;
}

.footer-socials a:hover img {
    filter: grayscale(0);
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
    padding-top: 40px;
    text-align: center;
}

.disclosure-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    font-size: 13px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 30px;
}

.age-badge {
    background: #ef4444;
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 800;
    margin-right: 10px;
}

/* ============================================================
   17. RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1100px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hub-grid,
    .hub-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-skin {
        width: 200px;
        opacity: 0.3;
    }
}

@media (max-width: 850px) {
    .table-labels {
        display: none;
    }

    .rank-row {
        grid-template-columns: 50px 1fr;
        gap: 10px;
    }

    .row-edge,
    .row-activity {
        display: none;
    }

    .row-actions {
        grid-column: span 2;
        justify-content: stretch;
    }

    .featured-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background: #06090e;
        flex-direction: column;
        gap: 18px;
        padding: 32px 24px;
        display: none;
        z-index: 1200;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-link {
        font-size: 16px;
        padding: 14px 18px;
    }

    .header-right {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    /* Hero Mobile */
    .premium-hero {
        min-height: 350px;
        padding: 60px 20px;
    }

    .hero-skin {
        display: none;
    }

    .premium-hero h1 {
        font-size: 2.2rem;
    }

    /* Featured Card Mobile */
    .featured-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .featured-logo-box {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Rank Rows Mobile */
    .rank-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .row-rank {
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.05);
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        margin: 0 auto;
    }

    .row-site {
        flex-direction: column;
        gap: 10px;
    }

    .row-edge,
    .row-activity {
        font-size: 13px;
        padding: 5px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
    }

    .row-actions {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .row-actions .btn-play {
        flex: 1;
    }

    /* Hub & Info Cards Mobile */
    .hub-grid,
    .hub-grid-v2 {
        grid-template-columns: 1fr;
    }

    .ranking-grid-v2 {
        grid-template-columns: 1fr;
    }

    .hub-info-card,
    .hub-info-card-v2 {
        padding: 25px;
    }

    .section-title-v2 {
        font-size: 1.5rem;
        justify-content: center;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Review Hero Mobile */
    .hero-card-glass {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .premium-stats-bar {
        grid-template-columns: 1fr;
    }

    .pros-cons-grid-v3,
    .gallery-grid-v3,
    .game-icon-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .featured-card {
        padding: 25px 15px;
    }

    .featured-actions {
        flex-direction: column;
    }
} 
    /* --- GIVEAWAY PREMIUM
STYLES --- */
    .countdown-pill {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(59, 130, 246,
                0.05);
        border: 1px solid rgba(59, 130, 246, 0.2);
        padding: 12px 25px;
        border-radius: 50px;
        margin-top: 10px;
        font-family: 'Courier New', Courier, monospace;
        /* Digitaler Look */
        font-weight: 800;
        color: white;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    .timer-icon {
        color: var(--primary-blue);
        font-size: 1.2rem;
    }

    .giveaway-prize-card {
        background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent), var(--card-bg);
        border-color:
            rgba(59, 130, 246, 0.3);
        overflow: hidden;
    }

    .prize-tag {
        position: absolute;
        top: 20px;
        right: 20px;
        background:
            rgba(59, 130, 246, 0.1);
        border: 1px solid var(--primary-blue);
        color: white;
        padding: 15px;
        border-radius: 12px;
        font-weight: 900;
        font-size: 1.4rem;
        text-align: center;
    }

    .prize-flex {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .prize-image-box {
        flex: 0 0 280px;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }

    .prize-image-box img {
        width: 100%;
        height: auto;
        display: block;
    }

    .status-badge {
        display: inline-block;
        font-size:
            10px;
        font-weight: 900;
        padding: 4px 10px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

    .status-badge.red {
        background:
            rgba(239, 68, 68, 0.1);
        color: #ef4444;
        border: 1px solid rgba(239, 68, 68, 0.2);
    }

    /* JOIN STEPS */
    .join-step {
        grid-template-columns: 60px 1fr !important;
        text-align: left !important;
        padding: 20px 30px !important;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
    }

    .step-text strong {
        display: block;
        color: white;
        font-size: 1.1rem;
    }

    .step-text span {
        color: var(--text-muted);
        font-size: 14px;
    }

    /* MOBILE GIVEAWAY */
    @media (max-width: 768px) {
        .prize-flex {
            flex-direction: column;
            text-align: center;
        }

        .prize-image-box {
            flex: 1;
            width:
                100%;
        }

        .prize-tag {
            position: relative;
            top: 0;
            right: 0;
            margin-bottom: 20px;
        }
    }
/* ============================================================
   COOKIE BANNER FIX V2 - CRITICAL FIX
   Replace the entire cookie banner section in premium-style.css
   ============================================================ */

/* Cookie Banner - Fixed positioning */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(22, 28, 39, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 20px 15px;
    z-index: 999999;
    box-sizing: border-box;
    max-height: 30vh;
    overflow-y: auto;
}

/* Inner container */
.cookie-banner > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Text styling */
.cookie-banner p {
    margin: 0 0 15px 0;
    color: var(--text-main);
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

/* Button container */
.cookie-banner > div > div {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-banner button {
    margin: 0;
    flex-shrink: 0;
}

/* Cookie Modal */
#cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px 10px;
        max-height: 40vh;
    }
    
    .cookie-banner p {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .cookie-banner > div > div {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .cookie-banner button {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px 8px;
    }
    
    .cookie-banner p {
        font-size: 12px;
    }
}

#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(22, 28, 39, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    z-index: 999999;
    box-sizing: border-box;
}

#cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}