/* ==========================================================================
   🎮 GAMERVERSE - High-Fidelity Premium Theme (Pixel-Perfect IGN Style)
   ========================================================================== */

/* --- Custom Variables & Theme Palette --- */
:root {
    --bg-dark-primary: #0b0a0f;       /* Deep space dark background */
    --bg-dark-secondary: #131219;     /* Glassmorphic card panels */
    --bg-dark-tertiary: #191822;      /* Input fields & Hover states */
    
    --color-rose: #f43f5e;            /* Neon Rose accent */
    --color-rose-glow: rgba(244, 63, 94, 0.45);
    --color-purple: #8b5cf6;          /* Cyberpunk Purple accent */
    --color-purple-glow: rgba(139, 92, 246, 0.4);
    --color-cyan: #06b6d4;            /* Neon Cyan for local developer highlights */
    --color-cyan-glow: rgba(6, 182, 212, 0.4);
    
    --color-gold: #fbbf24;            /* Editor gold star */
    --color-gold-glow: rgba(251, 191, 36, 0.3);
    
    --text-primary: #f4f4f5;          /* Off-white readable text */
    --text-muted: #8e8d9b;            /* Muted cool gray text */
    
    --border-color: rgba(var(--oh-on-bg-rgb), 0.05);
    --border-hover: rgba(244, 63, 94, 0.2);
    
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* --- Core Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-primary);
}
::-webkit-scrollbar-thumb {
    background: #201e2b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-rose);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: var(--transition-smooth);
}

/* Helper Utilities */
.bg-rose { background-color: var(--color-rose) !important; color: white !important; }
.bg-red { background-color: #ef4444 !important; color: white !important; }
.bg-purple { background-color: var(--color-purple) !important; color: white !important; }
.bg-cyan { background-color: var(--color-cyan) !important; color: var(--bg-dark-primary) !important; font-weight: 800 !important; }
.bg-orange { background-color: #f97316 !important; }
.bg-blue { background-color: #3b82f6 !important; }
.bg-gray { background-color: #71717a !important; }

.text-gold { color: var(--color-gold); }
.text-success { color: #10b981; }
.text-danger { color: #f43f5e; }
.text-neutral { color: #8e8d9b; }
.text-seeker { color: #3b82f6; }
.text-monster { color: #a855f7; }
.text-critic { color: #eab308; }


/* --- 1. PREMIUM HEADER / NAVIGATION --- */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(var(--oh-glass-rgb), 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
}

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

.nav-brand .logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: white;
}

.logo-accent {
    color: var(--color-rose);
    position: relative;
    text-shadow: 0 0 12px var(--color-rose-glow);
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.90rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-rose);
    box-shadow: 0 0 10px var(--color-rose-glow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--oh-on-bg-rgb), 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.nav-btn-icon:hover {
    color: white;
    background: rgba(var(--oh-on-bg-rgb), 0.08);
    border-color: var(--border-hover);
}


/* --- 2. USER XP WIDGET IN NAV --- */
.user-xp-widget {
    background: rgba(var(--oh-on-bg-rgb), 0.02);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px 14px 4px 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 5px;
}

.user-xp-widget:hover {
    border-color: var(--border-hover);
    background: rgba(var(--oh-on-bg-rgb), 0.04);
}

.user-avatar-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav-user-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-rose);
    background: var(--bg-dark-secondary);
}

.nav-rank-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: var(--color-rose);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xp-progress-info {
    width: 100px;
}

.xp-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 1px;
}

.xp-numbers {
    color: var(--text-muted);
}

.xp-bar-outer {
    background: rgba(var(--oh-on-bg-rgb), 0.08);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.xp-bar-inner {
    background: linear-gradient(90deg, var(--color-rose) 0%, var(--color-purple) 100%);
    height: 100%;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(244, 63, 94, 0.4);
    transition: width 0.4s ease;
}


/* --- 3. DYNAMIC VIEW SLIDES (SPA VIEWPORTS) --- */
.viewport-container {
    position: relative;
    width: 100%;
    min-height: 80vh;
}

.view-slide {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    padding: 30px 0 60px;
}

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


/* --- 4. GRID SYSTEM LAYOUTS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Hero Grid */
.grid-hero {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 24px;
    margin-bottom: 24px;
}

/* Lower Section Grid */
.grid-lower {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 24px;
}

@media (max-width: 992px) {
    .grid-hero, .grid-lower {
        grid-template-columns: 1fr;
    }
}


/* --- 5. IGN-STYLE HERO SLIDER --- */
.hero-slider-container {
    position: relative;
    height: 420px;
    background: var(--bg-dark-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.ken-burns {
    animation: sliderKenBurns 20s infinite alternate ease-in-out;
}

@keyframes sliderKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.slide-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 10, 15, 0.1) 0%, rgba(11, 10, 15, 0.95) 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 280px; /* Space for the score overlay card */
    z-index: 10;
}

.trending-badge {
    display: inline-block;
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid var(--color-rose);
    color: var(--color-rose);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.read-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2.5px solid var(--color-rose);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 30px;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.15);
    transition: var(--transition-smooth);
}

.read-review-btn:hover {
    background: var(--color-rose);
    box-shadow: 0 0 25px var(--color-rose-glow);
    transform: translateY(-2px);
}

/* Rating Score Card Over Hero */
.score-card-overlay {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 200px;
    background: rgba(var(--oh-glass-rgb), 0.85);
    backdrop-filter: blur(8px);
    border: 2px solid var(--color-rose);
    box-shadow: 0 0 25px var(--color-rose-glow);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    z-index: 10;
    animation: glowPulse 3s infinite alternate;
}

.score-cyan {
    border-color: var(--color-cyan);
    box-shadow: 0 0 25px var(--color-cyan-glow);
}

@keyframes glowPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

.overlay-score-header {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.overlay-score-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.max-score {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 700;
}

.overlay-score-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--color-rose);
    margin-top: 6px;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.score-cyan .overlay-score-tag {
    color: var(--color-cyan);
}

/* Navigation Arrow Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(var(--oh-glass-rgb), 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.slider-arrow:hover {
    background: var(--color-rose);
    border-color: var(--color-rose);
    box-shadow: 0 0 15px var(--color-rose-glow);
}

.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

/* Page Indicator Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 15;
}

.slider-dot {
    width: 25px;
    height: 3px;
    background: rgba(var(--oh-on-bg-rgb), 0.25);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--color-rose);
    width: 40px;
    box-shadow: 0 0 8px var(--color-rose-glow);
}


/* --- 6. LOCAL GAME DEVELOPER VITRINI WIDGET --- */
.sidebar-widget {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    border-left: 3px solid var(--color-rose);
    padding-left: 10px;
    line-height: 1;
}

.dev-author-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.dev-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--color-cyan);
    background: var(--bg-dark-primary);
}

.dev-author-details h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: white;
}

.dev-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.dev-showcase-media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
    border: 1px solid var(--border-color);
    margin-bottom: 18px;
}

.dev-game-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.dev-showcase-media:hover .dev-game-thumb {
    transform: scale(1.04);
}

.dev-game-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 10, 15, 0.9) 100%);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    color: white;
    letter-spacing: 0.02em;
}

.discover-btn {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(var(--oh-on-bg-rgb), 0.1);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.05em;
}

.discover-btn:hover {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 15px var(--color-cyan-glow);
}


/* --- 7. AD BANNER CENTER SPOT (ADVERTISEMENT SLOT) --- */
.ad-banner-center-wrap {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 24px;
}

.ad-label-center {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    margin-bottom: 6px;
}

.ad-center-box {
    position: relative;
    background: linear-gradient(135deg, #100a16 0%, #15141e 100%);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: 12px;
    padding: 24px 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ad-center-box:hover {
    border-color: var(--color-rose);
    box-shadow: 0 8px 30px rgba(244, 63, 94, 0.12);
}

.ad-center-content {
    position: relative;
    z-index: 5;
}

.ad-badge-center {
    display: inline-block;
    background: var(--color-rose);
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.ad-center-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
}

.ad-center-btn {
    background: var(--color-rose);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ad-center-btn:hover {
    background: #e11d48;
    box-shadow: 0 6px 18px rgba(244, 63, 94, 0.4);
    transform: translateY(-1px);
}

.ad-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 150px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}


/* --- 8. TRENDING STORIES GRID --- */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    border-left: 3px solid var(--color-rose);
    padding-left: 10px;
    line-height: 1;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

.story-card {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.story-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(244, 63, 94, 0.06);
}

.story-image-wrap {
    position: relative;
    height: 160px;
    width: 100%;
    overflow: hidden;
}

.story-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.story-card:hover .story-thumb {
    transform: scale(1.03);
}

.story-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.story-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.story-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 14px;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.story-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.auth-img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}


/* ==========================================================================
   🎮 KATEGORİ ENTEGRASYONU (NEW CATEGORIES SYSTEM STYLES)
   ========================================================================== */
.categories-section-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--oh-on-bg-rgb), 0.04);
}

.categories-container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .categories-container-grid {
        grid-template-columns: 1fr;
    }
}

.category-block {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.category-block-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.bg-gradient-mobile {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.08) 0%, rgba(139, 92, 246, 0.02) 100%);
    border-left: 4px solid var(--color-cyan);
}

.bg-gradient-console {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.08) 0%, rgba(244, 63, 94, 0.02) 100%);
    border-left: 4px solid var(--color-purple);
}

.category-block-header h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-all-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-all-category:hover {
    color: white;
}

.category-block-list {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item-card {
    display: flex;
    gap: 14px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(var(--oh-on-bg-rgb), 0.01);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.category-item-card:hover {
    background: var(--bg-dark-tertiary);
    border-color: var(--border-color);
    transform: translateX(4px);
}

.cat-item-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(var(--oh-on-bg-rgb), 0.03);
}

.cat-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat-item-info h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-item-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
}


/* --- 9. TOP RANKED USERS WIDGET (Rütbe Sistemi) --- */
.premium-ad-sidebar-widget {
    margin-bottom: 24px;
}

.ad-sidebar-title {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}

.ad-box-premium {
    background: linear-gradient(180deg, #180c10 0%, #131219 100%);
    border: 1px solid rgba(244, 63, 94, 0.18);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.ad-badge-side {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(var(--oh-on-bg-rgb), 0.05);
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 2px;
}

.ad-side-flex h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.ad-side-flex p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.ad-side-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--color-rose);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 4px;
}

/* Ranked Users List */
.rankings-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ranked-user-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(var(--oh-on-bg-rgb), 0.02);
}

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

.rank-pos {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-muted);
    width: 20px;
    text-align: center;
}

.ranked-avatar-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 3px;
    border-radius: 50%;
}

/* User Level Glowing Rings (Representing Ranks) */
.ring-purple { background: conic-gradient(from 0deg, var(--color-purple), #6d28d9, var(--color-purple)); box-shadow: 0 0 10px rgba(139, 92, 246, 0.3); }
.ring-red { background: conic-gradient(from 0deg, var(--color-rose), #e11d48, var(--color-rose)); box-shadow: 0 0 10px rgba(244, 63, 94, 0.3); }
.ring-orange { background: conic-gradient(from 0deg, #f97316, #c2410c, #f97316); box-shadow: 0 0 10px rgba(249, 115, 22, 0.3); }
.ring-blue { background: conic-gradient(from 0deg, #3b82f6, #1d4ed8, #3b82f6); box-shadow: 0 0 10px rgba(59, 130, 246, 0.3); }
.ring-gray { background: conic-gradient(from 0deg, #52525b, #27272a, #52525b); }

.rank-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-dark-secondary);
}

.xp-level-bullet {
    position: absolute;
    bottom: -2px;
    right: -2px;
    color: white;
    font-size: 0.55rem;
    font-weight: 800;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-dark-primary);
}

.ranked-user-details {
    display: flex;
    flex-direction: column;
}

.ranked-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ranked-points {
    font-size: 0.72rem;
    color: var(--text-muted);
}


/* --- 10. ARTICLE DETAIL VIEWPAGE --- */
.back-to-home-btn {
    border: 1px solid rgba(var(--oh-on-bg-rgb), 0.1);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.back-to-home-btn:hover {
    border-color: var(--color-rose);
    color: var(--color-rose);
    background: rgba(244, 63, 94, 0.05);
}

.article-details {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
}

.article-header {
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.meta-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.tag-review {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.25);
    color: var(--color-rose);
}

.article-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.neon-purple {
    color: var(--color-purple);
    text-shadow: 0 0 15px var(--color-purple-glow);
}

.article-lead {
    font-size: 1.05rem;
    color: #b1b0bd;
    line-height: 1.6;
}

/* Detailed Featured Media and Score Badge */
.hero-media-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-score-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(var(--oh-glass-rgb), 0.85);
    backdrop-filter: blur(8px);
    border: 2px solid var(--color-rose);
    box-shadow: 0 0 20px var(--color-rose-glow);
    border-radius: 12px;
    padding: 12px 18px;
    text-align: center;
    z-index: 10;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.score-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-rose);
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.hero-spec-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-spec-overlay span {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(var(--oh-on-bg-rgb), 0.1);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Detailed Article Body Typography */
.article-body p {
    font-size: 1rem;
    color: #b1b0bd;
    margin-bottom: 20px;
    line-height: 1.7;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
    margin: 30px 0 15px;
}

/* Inside article XP Callout CTA Box */
.xp-callout-box {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, rgba(139, 92, 246, 0.03) 100%);
    border: 1px solid rgba(244, 63, 94, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.callout-icon {
    font-size: 2rem;
    color: var(--color-rose);
    text-shadow: 0 0 10px var(--color-rose-glow);
    line-height: 1;
}

.callout-body h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: white;
    margin-bottom: 6px;
}

.callout-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.callout-btn {
    background: var(--color-rose);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.callout-btn:hover {
    background: #e11d48;
    transform: scale(1.02);
}

/* In-feed Paragraph Ad Block */
.inline-article-ad {
    margin: 35px 0;
    padding: 15px;
    background: var(--bg-dark-primary);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
}

.inline-ad-grid {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ad-img {
    width: 140px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.ad-details {
    flex: 1;
}

.ad-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: white;
    margin: 5px 0;
}

.ad-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.promo-code {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.2);
    color: var(--color-rose);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}

.ad-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--text-primary);
    color: var(--bg-dark-primary);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 6px;
    margin-top: 10px;
}

.ad-shop-btn:hover {
    background: white;
    transform: translateX(3px);
}

/* Detailed Pros and Cons Grid */
.pros-cons-card {
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0 10px;
}

.card-header-rating {
    background: rgba(var(--oh-on-bg-rgb), 0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header-rating h3 {
    margin: 0 !important;
    font-size: 1.15rem !important;
}

.rating-display {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
}

.rating-value {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--color-rose);
}

.rating-max {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 2px;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

.pros-box, .cons-box {
    padding: 20px;
}

.pros-box {
    border-right: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .pros-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

.pros-box h4, .cons-box h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros-box ul, .cons-box ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pros-box li, .cons-box li {
    font-size: 0.85rem;
    color: #d4d4d8;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}


/* --- 11. INDIE VITRINI (SHOWCASE DETAIL) --- */
.indie-hub-showcase {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.indie-hub-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-cyan);
}

.section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.section-title-wrap h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.badge-dev {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--color-cyan);
    font-size: 0.65rem;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.indie-card {
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}

.indie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.indie-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dev-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--color-cyan);
}

.dev-info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: white;
}

.verified-tag {
    font-size: 0.75rem;
    color: var(--color-cyan);
    display: flex;
    align-items: center;
    gap: 4px;
}

.steam-stats {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.indie-body p {
    font-size: 0.9rem;
    color: #b1b0bd;
    line-height: 1.6;
}

.indie-footer-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .indie-footer-actions {
        flex-direction: column;
    }
}

.wishlist-btn {
    flex: 1;
    background: linear-gradient(90deg, #1b2838 0%, #2a475e 100%);
    color: #66c0f4;
    border: 1px solid #66c0f4;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wishlist-btn:hover {
    background: #66c0f4;
    color: #1b2838;
    box-shadow: 0 4px 16px rgba(102, 192, 244, 0.35);
    transform: translateY(-1px);
}

.wishlist-btn.wishlisted {
    background: var(--color-rose);
    color: white;
    border-color: var(--color-rose);
    box-shadow: 0 4px 15px var(--color-rose-glow);
}

.support-dev-btn {
    background: rgba(var(--oh-on-bg-rgb), 0.04);
    border: 1px solid var(--border-color);
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.support-dev-btn:hover {
    background: var(--color-cyan);
    color: var(--bg-dark-primary);
    border-color: var(--color-cyan);
}


/* --- 12. GAMIFIED COMMENTS AREA --- */
.comments-section {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.comment-form-container {
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

.comment-form-container:focus-within {
    border-color: var(--color-rose);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.08);
}

.comment-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.form-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #b1b0bd;
}

.form-title strong {
    color: var(--color-rose);
}

.format-btn {
    background: rgba(var(--oh-on-bg-rgb), 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.format-btn:hover {
    color: var(--color-rose);
    border-color: var(--color-rose);
}

.comment-input-wrap {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.form-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-rose);
}

.comment-input-wrap textarea {
    flex: 1;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 8px;
    padding: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    outline: none;
}

.comment-input-wrap textarea:focus {
    border-color: var(--border-hover);
}

.comment-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.xp-alert-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.xp-alert-info i {
    color: var(--color-gold);
    font-size: 0.85rem;
}

.xp-alert-info strong {
    color: var(--color-rose);
    font-weight: 700;
}

.submit-comment-btn {
    background: var(--color-rose);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25);
}

.submit-comment-btn:hover {
    background: #e11d48;
    box-shadow: 0 4px 16px rgba(244, 63, 94, 0.4);
    transform: translateY(-1px);
}

/* Comments List cards */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-card {
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

/* Comment glows */
.avatar-glow {
    border-radius: 50%;
    position: relative;
    padding: 2px;
}

.editor-glow { background: conic-gradient(from 0deg, var(--color-gold), #b45309, var(--color-gold)); }
.user-glow-monster { background: conic-gradient(from 0deg, var(--color-purple), #6d28d9, var(--color-purple)); }
.user-glow-seeker { background: conic-gradient(from 0deg, #3b82f6, #1d4ed8, #3b82f6); }

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-dark-secondary);
    display: block;
}

.editor-comment.pinned-comment {
    border: 1.5px solid rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, #17130b 0%, var(--bg-dark-primary) 100%);
}

.comment-pinned-banner {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.comment-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.comment-author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-tag {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.editor-tag {
    background: rgba(251, 191, 36, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.comment-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.user-rank-status {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rank-name {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.font-editor { color: var(--color-gold); }
.font-monster { color: var(--color-purple); }

.rank-badge-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.editor-icon { background: rgba(251, 191, 36, 0.15); color: var(--color-gold); }
.monster-icon { background: rgba(139, 92, 246, 0.15); color: var(--color-purple); }
.seeker-icon { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }

.comment-body {
    font-size: 0.9rem;
    color: #d4d4d8;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Interactive Spoiler Tag blur */
.spoiler-tag {
    display: inline-block;
    background: #201e2b;
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-radius: 6px;
    padding: 3px 10px;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: var(--transition-smooth);
    vertical-align: middle;
}

.spoiler-tag:hover {
    background: #2b283d;
}

.spoiler-icon {
    color: var(--color-rose);
    font-size: 0.75rem;
    margin-right: 6px;
}

.spoiler-text-hidden {
    filter: blur(5px);
    opacity: 0.65;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

.spoiler-tag.revealed {
    background: rgba(var(--oh-on-bg-rgb), 0.02);
    border-color: var(--border-color);
}

.spoiler-tag.revealed .spoiler-icon {
    display: none;
}

.spoiler-tag.revealed .spoiler-text-hidden {
    filter: blur(0);
    opacity: 1;
}

/* Comment Upvote / Quick reaction actions */
.comment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.comment-likes {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-dark-secondary);
    padding: 2px 6px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.like-btn, .dislike-btn {
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.like-btn:hover, .like-btn.active { color: #10b981; }
.dislike-btn:hover, .dislike-btn.active { color: var(--color-rose); }

.like-count {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.quick-reactions {
    display: flex;
    gap: 6px;
}

.react-btn {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    color: white;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.react-btn:hover, .react-btn.active {
    border-color: var(--color-rose);
    background: var(--bg-dark-tertiary);
}

.react-count {
    color: var(--text-muted);
    font-weight: 600;
}


/* --- 13. SIDEBAR RANKS SHIELD (DETAIL PAGE) --- */
.ranks-showcase-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rank-item-show {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
}

.active-sidebar-rank {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.05) 0%, var(--bg-dark-primary) 100%);
}

.rank-symbol {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.active-sidebar-rank .rank-symbol {
    border-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.rank-det {
    display: flex;
    flex-direction: column;
}

.rank-det strong {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: white;
}

.rank-det span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Sticky sidebar ad */
.sticky-sidebar-container {
    position: sticky;
    top: 90px;
    margin-top: 25px;
}

.sticky-sidebar-ad {
    background: linear-gradient(180deg, #100b1a 0%, #131219 100%);
    border: 1px solid rgba(244, 63, 94, 0.15);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.sticky-sidebar-ad:hover {
    border-color: var(--color-rose);
    box-shadow: 0 12px 28px rgba(244, 63, 94, 0.08);
}

.ad-badge-sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(var(--oh-on-bg-rgb), 0.05);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 5;
}

.sticky-ad-visual {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.sidebar-ad-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.sticky-sidebar-ad:hover .sidebar-ad-img {
    transform: scale(1.03);
}

.sticky-ad-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: white;
    margin-bottom: 6px;
}

.sticky-ad-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.sidebar-ad-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-rose);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px;
    border-radius: 6px;
    width: 100%;
}


/* ==========================================================================
   🎮 İLETİŞİM, SPONSOR & REKLAM BAŞVURU SAYFASI (NEW CONTACT STYLES)
   ========================================================================== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 24px;
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-section {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
}

.contact-header-wrap {
    margin-bottom: 30px;
}

.contact-header-wrap h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.contact-header-wrap p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-success-card {
    display: none; /* Dynamic display toggled by script.js */
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border: 1.5px solid rgba(6, 182, 212, 0.35);
    box-shadow: 0 0 25px var(--color-cyan-glow);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-bottom: 30px;
    animation: glowPulse 3s infinite alternate;
}

.success-glow-icon {
    font-size: 3rem;
    color: #10b981;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    margin-bottom: 10px;
}

.contact-success-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.contact-success-card p {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

/* Form Controls */
.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row-double {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: #cbd5e1;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.req {
    color: var(--color-rose);
}

.input-glow-wrap {
    position: relative;
    width: 100%;
}

.input-glow-wrap i {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-glow-wrap input,
.input-glow-wrap select,
.contact-form-section textarea {
    width: 100%;
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-glow-wrap input,
.input-glow-wrap select {
    padding: 12px 16px 12px 42px;
}

.contact-form-section textarea {
    padding: 16px;
    resize: vertical;
}

.input-glow-wrap input:focus,
.input-glow-wrap select:focus,
.contact-form-section textarea:focus {
    border-color: var(--color-rose);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.1);
}

.input-glow-wrap:focus-within i {
    color: var(--color-rose);
}

.input-glow-wrap select {
    appearance: none;
    cursor: pointer;
}

.input-glow-wrap select option {
    background: var(--bg-dark-secondary);
    color: white;
}

.submit-form-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--color-rose) 0%, var(--color-purple) 100%);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(244, 63, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-form-btn:hover {
    box-shadow: 0 6px 24px rgba(244, 63, 94, 0.45);
    transform: translateY(-1px);
}

/* Contact Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-widget {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.info-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-widget p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
}

.direct-email-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 12px;
    border-radius: 8px;
}

.direct-email-link:hover {
    border-color: var(--color-rose);
    color: var(--color-rose);
    box-shadow: 0 0 12px var(--color-rose-glow);
}

.legal-text-desc {
    font-size: 0.8rem !important;
    line-height: 1.6 !important;
}

.legal-badge-notice {
    background: rgba(251, 191, 36, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 8px;
    padding: 12px;
    color: #fbbf24;
    font-size: 0.76rem;
    line-height: 1.5;
}

.legal-badge-notice i {
    font-size: 0.85rem;
    margin-right: 6px;
}

.legal-badge-notice strong {
    text-shadow: 0 0 4px rgba(251, 191, 36, 0.2);
}


/* ==========================================================================
   🎮 ULTR-PREMIUM FOOTER STYLES (FOOTER ENTEGRASYONU)
   ========================================================================== */
.main-footer {
    background: #09080c;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-upper {
    padding: 60px 0;
    border-bottom: 1px solid rgba(var(--oh-on-bg-rgb), 0.03);
}

.footer-upper-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-upper-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.04em;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 480px;
}

/* Newsletter Signup combination */
.newsletter-wrapper {
    margin-top: 15px;
}

.newsletter-wrapper h4 {
    margin-bottom: 6px !important;
}

.newsletter-wrapper p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.newsletter-form-container {
    max-width: 400px;
}

.newsletter-success {
    display: none; /* Toggled by script.js */
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #10b981;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 10px;
    border-radius: 6px;
}

.newsletter-input-flex {
    display: flex;
    gap: 8px;
    width: 100%;
}

.newsletter-input-flex input {
    flex: 1;
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 6px;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
}

.newsletter-input-flex input:focus {
    border-color: var(--color-rose);
}

.newsletter-btn {
    background: var(--color-rose);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.newsletter-btn:hover {
    background: #e11d48;
    box-shadow: 0 0 12px var(--color-rose-glow);
}

/* Footer Link list columns */
.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links-list a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links-list a i {
    font-size: 0.65rem;
    color: var(--color-rose);
}

/* Lower Footer Copyrights & DMCA notice */
.footer-lower {
    padding: 40px 0;
    background: #060508;
}

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

.footer-legal-notice {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-bottom: 1px solid rgba(var(--oh-on-bg-rgb), 0.02);
    padding-bottom: 20px;
}

.footer-legal-notice p {
    margin-bottom: 8px;
}

.footer-legal-notice p:last-child {
    margin-bottom: 0;
}

.footer-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 15px;
}


/* --- 14. MOBILE ANCHOR FOOTER AD --- */
.anchor-footer-ad-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(19, 18, 25, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(var(--oh-on-bg-rgb), 0.05);
    z-index: 999;
    padding: 12px 24px;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.6);
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.anchor-footer-ad-wrap.dismissed {
    transform: translateY(100%);
}

.anchor-ad-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.close-anchor-btn {
    position: absolute;
    top: -24px;
    right: 10px;
    background: #191822;
    color: var(--text-muted);
    border: 1px solid rgba(var(--oh-on-bg-rgb), 0.05);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    padding: 4px 10px;
    font-size: 0.8rem;
}

.close-anchor-btn:hover {
    color: white;
    background: var(--color-rose);
}

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

.anchor-img-wrap {
    display: flex;
    align-items: center;
}

.anchor-ad-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.anchor-ad-content {
    flex: 1;
}

.anchor-ad-content h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: white;
    margin-bottom: 2px;
}

.anchor-ad-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.anchor-ad-btn {
    background: var(--color-rose);
    color: white;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


/* --- 15. XP FLOATING ANIMS & CELEBRATION MODALS --- */
.floating-xp-container {
    position: relative;
    height: 0;
    width: 100%;
}

.floating-xp-notify {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(90deg, var(--color-rose) 0%, var(--color-purple) 100%);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideUpFade 3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    pointer-events: none;
}

@keyframes slideUpFade {
    0% { transform: translateY(20px); opacity: 0; }
    15% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(-30px); opacity: 1; }
    100% { transform: translateY(-60px); opacity: 0; }
}

/* AdBlock Warning Modal */
.adblock-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--oh-glass-rgb), 0.85);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

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

.adblock-modal-card {
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(244, 63, 94, 0.25);
    box-shadow: 0 25px 50px -12px rgba(244, 63, 94, 0.15);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    padding: 35px;
    transform: scale(0.9);
    transition: transform 0.5s ease;
}

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

.adblock-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.heart-icon-animation {
    font-size: 3rem;
    color: var(--color-rose);
    animation: heartbeat 1.5s infinite alternate ease-in-out;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.adblock-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    margin-top: 10px;
}

.adblock-modal-body p {
    font-size: 0.9rem;
    color: #b1b0bd;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.whitelist-instructions {
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.whitelist-instructions h5 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: white;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 6px;
}

.whitelist-instructions ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whitelist-instructions li {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.whitelist-success-btn {
    background: var(--color-rose);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
}

/* ==========================================================================
   🎮 ADDITIONAL SPA PORTALS: İNCELEMELER, VİDEOLAR & REHBERLER
   ========================================================================== */

/* --- A. İNCELEMELER (REVIEWS) PORTAL STYLES --- */
.reviews-header-wrap,
.videos-header-wrap,
.guides-header-wrap {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.reviews-header-wrap h2,
.videos-header-wrap h2,
.guides-header-wrap h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.reviews-header-wrap p,
.videos-header-wrap p,
.guides-header-wrap p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Platform Filter Bar */
.reviews-filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-tab {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover {
    border-color: var(--border-hover);
    color: white;
}

.filter-tab.active {
    background: var(--color-rose);
    border-color: var(--color-rose);
    color: white;
    box-shadow: 0 0 15px var(--color-rose-glow);
}

/* Featured Large Spotlight Review */
.featured-review-card {
    position: relative;
    display: grid;
    grid-template-columns: 7fr 5fr;
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    cursor: pointer;
}

.featured-review-card:hover {
    border-color: var(--color-rose);
    box-shadow: 0 8px 30px rgba(244, 63, 94, 0.08);
}

.featured-review-media {
    position: relative;
    height: 340px;
}

.feat-rev-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.featured-review-card:hover .feat-rev-bg {
    transform: scale(1.03);
}

.feat-rev-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--bg-dark-secondary) 100%);
}

.featured-review-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 5;
}

.spot-badge {
    display: inline-block;
    background: rgba(244, 63, 94, 0.15);
    border: 1px solid var(--color-rose);
    color: var(--color-rose);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 0.08em;
}

.featured-review-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    line-height: 1.25;
    margin-bottom: 12px;
}

.featured-review-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.read-feat-btn {
    background: transparent;
    border: 2.5px solid var(--color-rose);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px 24px;
    border-radius: 30px;
    letter-spacing: 0.05em;
}

.featured-review-card:hover .read-feat-btn {
    background: var(--color-rose);
    box-shadow: 0 0 15px var(--color-rose-glow);
}

.featured-review-score {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(var(--oh-glass-rgb), 0.9);
    border: 2px solid var(--color-rose);
    box-shadow: 0 0 15px var(--color-rose-glow);
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    z-index: 10;
}

.feat-score-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.feat-score-label {
    font-size: 0.55rem;
    font-weight: 900;
    color: var(--color-rose);
    margin-top: 3px;
    letter-spacing: 0.05em;
}

/* Review Lists Cards Grid */
.reviews-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .featured-review-card {
        grid-template-columns: 1fr;
    }
    .feat-rev-overlay {
        background: linear-gradient(180deg, transparent 0%, var(--bg-dark-secondary) 100%);
    }
    .reviews-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .reviews-list-grid {
        grid-template-columns: 1fr;
    }
}

.review-grid-card {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.review-grid-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.rev-card-media {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.rev-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.review-grid-card:hover .rev-card-media img {
    transform: scale(1.05);
}

.rev-score-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--bg-dark-primary);
    border: 1.5px solid var(--color-rose);
    box-shadow: 0 0 10px var(--color-rose-glow);
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rev-card-body {
    padding: 20px;
}

.rev-card-platform-tag {
    display: inline-block;
    background: rgba(var(--oh-on-bg-rgb), 0.05);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.rev-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 8px;
}

.rev-card-body p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}


/* --- B. VİDEOLAR (VIDEOS HUB) PORTAL STYLES --- */
.featured-video-player-wrap {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    cursor: pointer;
}

.featured-video-player-wrap:hover {
    border-color: var(--border-hover);
}

.featured-video-media {
    position: relative;
    height: 460px;
}

.feat-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 0 35px var(--color-rose-glow);
    transition: var(--transition-smooth);
    z-index: 10;
}

.featured-video-player-wrap:hover .video-play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 50px var(--color-rose-glow);
}

.video-duration-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(var(--oh-glass-rgb), 0.85);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    color: white;
}

.featured-video-details {
    padding: 30px;
}

.video-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-rose);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.featured-video-details h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.featured-video-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Secondary Videos Grid */
.videos-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .featured-video-media {
        height: 300px;
    }
    .videos-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .videos-grid-container {
        grid-template-columns: 1fr;
    }
}

.video-grid-card-item {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-grid-card-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.video-thumb-wrap {
    position: relative;
    height: 160px;
}

.video-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vid-time-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(var(--oh-glass-rgb), 0.85);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    color: white;
    font-weight: 700;
}

.play-small-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition-smooth);
}

.video-grid-card-item:hover .play-small-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-grid-card-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: white;
    padding: 15px 15px 5px;
    line-height: 1.35;
}

.video-meta-views {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0 15px 15px;
}


/* --- C. REHBERLER (GUIDES) PORTAL STYLES --- */
.guides-search-wrapper {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 45px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.guides-search-input-box {
    display: flex;
    background: var(--bg-dark-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 5px;
    align-items: center;
}

.guides-search-input-box i {
    color: var(--text-muted);
    font-size: 1.1rem;
    padding-left: 15px;
}

.guides-search-input-box input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.95rem;
    padding: 12px 15px;
    flex-grow: 1;
}

.guides-search-btn {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-purple) 100%);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 6px;
    box-shadow: 0 4px 15px var(--color-rose-glow);
}

.guides-search-btn:hover {
    box-shadow: 0 6px 20px var(--color-rose-glow);
    transform: translateY(-1px);
}

/* Guides Cards Grid */
.guides-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .guides-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .guides-grid-container {
        grid-template-columns: 1fr;
    }
}

.guide-card-item {
    background: var(--bg-dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.guide-card-item:hover {
    border-color: var(--border-hover);
}

.guide-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.guide-cat-badge {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.65rem;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.guide-likes {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.guide-card-item h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: white;
    line-height: 1.3;
    margin-bottom: 12px;
}

.guide-card-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.read-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-rose);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    align-self: flex-start;
}

.read-guide-link:hover {
    color: white;
}

