/* 
 * Darling Games - Official Web Platform Style
 * Middle-Earth / Epic Isekai Fantasy & Dark Neon Aesthetic, Glassmorphism, Micro-Animations
 * Founder & Developer: Ramazan Şerif Akbuz (Samsun, Türkiye)
 */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Cinzel+Decorative:wght@700;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #080a10;
    --bg-darker: #040508;
    --bg-card: rgba(14, 18, 28, 0.82);
    --bg-card-hover: rgba(22, 30, 48, 0.92);
    --bg-glass: rgba(11, 15, 25, 0.72);
    
    --neon-gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --neon-cyan: #00f5d4;
    --neon-purple: #9d4edd;
    --neon-pink: #f72585;
    --neon-amber: #ffb703;
    --neon-green: #2ec4b6;
    --neon-red: #e63946;
    
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #cbd5e1;
    --text-gold: #ffd700;
    
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-gold-glow: rgba(255, 215, 0, 0.35);
    --border-glow: rgba(0, 245, 212, 0.35);
    --border-purple-glow: rgba(157, 78, 221, 0.4);
    
    --font-heading: 'Cinzel', serif;
    --font-brand: 'Cinzel Decorative', 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-tech: 'Cinzel', serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-neon-gold: 0 0 25px rgba(255, 215, 0, 0.35);
    --shadow-neon-cyan: 0 0 25px rgba(0, 245, 212, 0.35);
    --shadow-neon-purple: 0 0 25px rgba(157, 78, 221, 0.35);
}

/* Global High Contrast Text Helpers */
.text-muted {
    color: #cbd5e1 !important;
}

.text-secondary {
    color: #e2e8f0 !important;
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Background Ambient Glows */
body::before {
    content: '';
    position: fixed;
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.12) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .brand-title {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    color: #ffffff;
    font-weight: 700;
}

.font-tech {
    font-family: var(--font-tech);
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00f0ff 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #ffd166 0%, #ff7b00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-pink {
    background: linear-gradient(135deg, #ff007f 0%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.text-purple {
    color: var(--neon-purple) !important;
}

.text-pink {
    color: var(--neon-pink) !important;
}

.text-amber {
    color: var(--neon-amber) !important;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.glass-panel-glow {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Navbar */
.navbar-darling {
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.navbar-darling.scrolled {
    padding: 0.65rem 0;
    background: rgba(4, 5, 8, 0.95);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff !important;
}

.brand-icon-wrapper {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon-cyan);
    color: #000;
    font-size: 1.25rem;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-cyan) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Custom Buttons */
.btn-neon-primary {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #0077b6 100%);
    color: #040508;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.6rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-neon-cyan);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-neon-primary:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
}

.btn-neon-purple {
    background: linear-gradient(135deg, var(--neon-purple) 0%, #5a189a 100%);
    color: #fff;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.6rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-neon-purple);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-neon-purple:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(157, 78, 221, 0.65);
}

.btn-neon-outline {
    background: rgba(16, 23, 38, 0.6);
    color: #fff;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.6rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-neon-outline:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon-cyan);
}

.btn-play-store {
    background: #0f172a;
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-play-store:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--neon-green);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

/* Hero Section with Video Showcase */
.hero-section {
    position: relative;
    padding: 8rem 0 5rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(20, 30, 55, 0.6) 0%, rgba(7, 9, 14, 1) 85%);
}

.hero-video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.15);
    background: #000;
}

.hero-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(4, 5, 8, 0.9) 0%, rgba(4, 5, 8, 0.2) 60%, rgba(4, 5, 8, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    pointer-events: none;
}

.hero-badge {
    background: rgba(0, 240, 255, 0.12);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: pulse 1.5s infinite;
}

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

.stats-card {
    background: rgba(16, 23, 38, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.stats-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-4px);
    box-shadow: var(--shadow-neon-cyan);
}

.stats-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--neon-cyan);
}

.stats-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Category Filter Tabs */
.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: rgba(16, 23, 38, 0.8);
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover, .filter-btn.active {
    background: rgba(0, 240, 255, 0.15);
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.25);
}

/* Game Card */
.game-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--shadow-neon-cyan);
}

.game-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #0d121d;
}

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

.game-card:hover .game-card-img {
    transform: scale(1.06);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(7, 9, 14, 0.9) 0%, rgba(7, 9, 14, 0.1) 60%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.game-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.badge-neon-purple {
    background: rgba(157, 78, 221, 0.85);
    color: #fff;
    box-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.badge-neon-cyan {
    background: rgba(0, 240, 255, 0.85);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.badge-neon-green {
    background: rgba(0, 255, 136, 0.85);
    color: #000;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.badge-neon-amber {
    background: rgba(255, 183, 3, 0.85);
    color: #000;
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.5);
}

.badge-neon-pink {
    background: rgba(255, 0, 127, 0.85);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.game-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.game-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.game-meta-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.game-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid var(--border-glass);
    padding-top: 1rem;
}

/* Play & WebGL Player Arena */
.webgl-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: #040508;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), var(--shadow-neon-cyan);
    overflow: hidden;
}

.webgl-canvas {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
    background: #080c14;
}

.webgl-controls-bar {
    background: rgba(13, 18, 30, 0.95);
    border-top: 1px solid var(--border-glass);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* Unity/WebGL Iframe Wrapper */
.unity-iframe-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #000;
}

.unity-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Screenshots Gallery */
.screenshot-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: #0e1422;
}

.screenshot-item:hover {
    border-color: var(--neon-cyan);
    transform: scale(1.03);
    box-shadow: var(--shadow-neon-cyan);
}

.screenshot-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Feature Check Item */
.feature-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.85rem;
}

.feature-check-icon {
    color: var(--neon-green);
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Audio SFX Switcher Button */
.audio-toggle-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(16, 23, 38, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glow);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-neon-cyan);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition-smooth);
}

.audio-toggle-btn:hover {
    transform: scale(1.1);
    background: var(--neon-cyan);
    color: #000;
}

/* Modal Customization */
.modal-content.gaming-modal {
    background: rgba(13, 18, 30, 0.96);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), var(--shadow-neon-cyan);
    color: #fff;
}

.modal-header.gaming-modal-header {
    border-bottom: 1px solid var(--border-glass);
    padding: 1.5rem 2rem;
}

.modal-footer.gaming-modal-footer {
    border-top: 1px solid var(--border-glass);
    padding: 1.25rem 2rem;
}

.btn-close-white {
    filter: invert(1);
    opacity: 0.8;
}

/* Footer */
.footer-darling {
    background: #030407;
    border-top: 1px solid var(--border-glass);
    padding: 4rem 0 2rem 0;
    position: relative;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.footer-social-link:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-cyan);
}

/* Buy Me a Coffee Button */
.btn-buymeacoffee {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #FFDD00 0%, #FBB034 100%);
    color: #000 !important;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 0.88rem;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 221, 0, 0.35);
    transition: var(--transition-smooth);
    border: none;
}

.btn-buymeacoffee:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 221, 0, 0.55);
    color: #000 !important;
}

/* LinkedIn Button */
.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 102, 194, 0.15);
    color: #38bdf8 !important;
    border: 1px solid rgba(56, 189, 248, 0.4);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-linkedin:hover {
    background: #0a66c2;
    color: #fff !important;
    border-color: #0a66c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 18px rgba(10, 102, 194, 0.5);
}

/* Middle-Earth Fantasy Ambient Music Bar */
.fantasy-music-bar {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1050;
    background: rgba(11, 15, 25, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-gold-glow);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--shadow-neon-gold);
    transition: var(--transition-smooth);
}

.fantasy-music-bar:hover {
    border-color: var(--neon-gold);
}

.fantasy-music-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-gold), #e0a96d);
    color: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.fantasy-music-btn:hover {
    transform: scale(1.1);
}

.fantasy-music-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-gold);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Blog & Devlog Cards */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 215, 0, 0.2);
}

.blog-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #030407;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--neon-gold);
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

/* Gold Gradient utilities */
.text-gradient-gold {
    background: linear-gradient(135deg, #FFF6BD 0%, #FFD700 50%, #FFB703 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-neon-gold {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding: 6.5rem 0 3rem 0;
    }
    .hero-title {
        font-size: 2.2rem !important;
    }
    .fantasy-music-bar {
        left: 12px;
        bottom: 12px;
        padding: 0.35rem 0.75rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    .stats-num {
        font-size: 1.8rem;
    }
}
