/*
Theme Name: LucInfo Game Custom
Theme URI: https://lucinfo.ru
Author: LuciferEvgeniy
Author URI: https://lucinfo.ru
Description: Игровая тема WordPress в стиле GameConfig с темным дизайном и современным UI
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lucinfo-game
Tags: gaming, dark-theme, modern, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==================== ОСНОВНЫЕ СТИЛИ ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a12;
    --bg-secondary: #12121f;
    --bg-tertiary: #1a1a2a;
    --accent-primary: #00d4ff;
    --accent-secondary: #6366f1;
    --accent-tertiary: #8b5cf6;
    --text-primary: #f5f5f5;
    --text-secondary: #a0a0b0;
    --border-color: #2a2a3a;
    --border-glow: rgba(0, 212, 255, 0.25);
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --glass-bg: rgba(18, 18, 31, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 24px rgba(0, 212, 255, 0.35);
    --shadow-glow-strong: 0 0 48px rgba(0, 212, 255, 0.5);
    --grid-pattern: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 60%),
        var(--grid-pattern);
    pointer-events: none;
    z-index: 0;
    animation: background-pulse 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 212, 255, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(99, 102, 241, 0.15), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0, 212, 255, 0.1), transparent);
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 0% 0%, 100% 100%, 50% 50%;
    animation: stars-move 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

/* ==================== КОНТЕЙНЕР ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* ==================== ЗАГОЛОВОК ==================== */
.site-header {
    margin-bottom: 40px;
    padding: 0;
    background: 
        radial-gradient(2px 2px at 15% 25%, rgba(0, 212, 255, 0.2), transparent),
        radial-gradient(2px 2px at 85% 75%, rgba(99, 102, 241, 0.2), transparent),
        radial-gradient(1.5px 1.5px at 50% 50%, rgba(0, 212, 255, 0.15), transparent),
        radial-gradient(1px 1px at 30% 60%, rgba(139, 92, 246, 0.15), transparent),
        radial-gradient(1px 1px at 70% 40%, rgba(0, 212, 255, 0.1), transparent),
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 60%),
        var(--glass-bg);
    background-size: 
        200% 200%, 
        200% 200%, 
        150% 150%, 
        180% 180%, 
        160% 160%,
        200% 200%, 
        200% 200%, 
        150% 150%, 
        100% 100%;
    background-position: 
        0% 0%, 
        100% 100%, 
        50% 50%, 
        30% 60%, 
        70% 40%,
        0% 0%, 
        100% 100%, 
        50% 50%, 
        0% 0%;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 20px;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--glass-border), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 30px;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    animation: 
        header-particles-move 25s linear infinite,
        header-background-flow 12s ease-in-out infinite,
        border-glow 4s ease-in-out infinite;
    transition: top 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled {
    top: 20px;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--glass-border), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 8px 32px rgba(0, 0, 0, 0.6);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite, magnetic-glow 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.site-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.1) 25%, 
        rgba(99, 102, 241, 0.12) 50%, 
        rgba(0, 212, 255, 0.1) 75%, 
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 6s ease-in-out infinite;
    z-index: 0;
    transform: skewX(-20deg);
    filter: blur(1px);
}

.site-header::before {
    z-index: 0;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { 
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        left: 100%;
        opacity: 0;
    }
}

@keyframes background-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes stars-move {
    0% { background-position: 0% 0%, 100% 100%, 50% 50%; }
    100% { background-position: 100% 100%, 0% 0%, 50% 50%; }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate-3d {
    0% { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
    25% { transform: perspective(1000px) rotateY(5deg) rotateX(2deg); }
    50% { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
    75% { transform: perspective(1000px) rotateY(-5deg) rotateX(-2deg); }
    100% { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
}

@keyframes magnetic-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3), 0 0 40px rgba(0, 212, 255, 0.1); }
    50% { box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 60px rgba(0, 212, 255, 0.2); }
}

@keyframes wave {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(10px) rotate(-2deg); }
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes border-glow {
    0%, 100% {
        border-color: var(--glass-border);
        box-shadow: 0 0 0 rgba(0, 212, 255, 0);
    }
    50% {
        border-color: var(--accent-primary);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
}

@keyframes header-particles-move {
    0% {
        background-position: 
            0% 0%, 
            100% 100%, 
            50% 50%, 
            30% 60%, 
            70% 40%,
            0% 0%, 
            100% 100%, 
            50% 50%, 
            0% 0%;
    }
    25% {
        background-position: 
            25% 25%, 
            75% 75%, 
            60% 40%, 
            50% 70%, 
            50% 30%,
            25% 25%, 
            75% 75%, 
            60% 40%, 
            0% 0%;
    }
    50% {
        background-position: 
            50% 50%, 
            50% 50%, 
            70% 30%, 
            70% 80%, 
            30% 60%,
            50% 50%, 
            50% 50%, 
            70% 30%, 
            0% 0%;
    }
    75% {
        background-position: 
            75% 75%, 
            25% 25%, 
            40% 60%, 
            50% 30%, 
            50% 70%,
            75% 75%, 
            25% 25%, 
            40% 60%, 
            0% 0%;
    }
    100% {
        background-position: 
            100% 100%, 
            0% 0%, 
            50% 50%, 
            30% 60%, 
            70% 40%,
            100% 100%, 
            0% 0%, 
            50% 50%, 
            0% 0%;
    }
}

@keyframes header-background-flow {
    0%, 100% {
        background-position: 
            0% 0%, 
            100% 100%, 
            50% 50%, 
            30% 60%, 
            70% 40%,
            0% 0%, 
            100% 100%, 
            50% 50%, 
            0% 0%;
        filter: brightness(1) contrast(1);
    }
    33% {
        background-position: 
            33% 33%, 
            67% 67%, 
            60% 40%, 
            50% 70%, 
            50% 30%,
            33% 33%, 
            67% 67%, 
            60% 40%, 
            0% 0%;
        filter: brightness(1.05) contrast(1.02);
    }
    66% {
        background-position: 
            66% 66%, 
            34% 34%, 
            40% 60%, 
            50% 30%, 
            50% 70%,
            66% 66%, 
            34% 34%, 
            40% 60%, 
            0% 0%;
        filter: brightness(1.1) contrast(1.05);
    }
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 35px;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.site-branding {
    flex-shrink: 0;
    text-align: left;
    margin-right: auto;
    padding-left: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a,
.site-logo-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.site-logo img,
.site-logo svg {
    max-height: 50px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
    transition: all 0.3s ease;
    margin-left: 0;
    display: block;
}

.site-logo:hover img,
.site-logo:hover svg {
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.8));
    transform: scale(1.05);
}

/* Дополнительные эффекты для SVG логотипов */
.site-logo svg {
    height: 50px;
}

/* Анимация пульсации для логотипа */
@keyframes logo-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.8));
    }
}

.site-logo.pulse img,
.site-logo.pulse svg {
    animation: logo-pulse 3s ease-in-out infinite;
}



.site-title {
    margin: 0;
    font-size: 1.8em;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.site-title a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}


@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.6)); }
    50% { filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.9)); }
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-title a:hover {
    transform: scale(1.05);
}

.site-description {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle:hover {
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
}

.menu-toggle:hover span {
    background: var(--accent-primary);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== НАВИГАЦИЯ ==================== */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.main-navigation {
    display: flex;
    align-items: center;
}

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

.nav-menu li {
    margin: 0;
}

.main-navigation a {
    padding: 12px 24px;
    background: rgba(18, 18, 31, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.3px;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.15), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.main-navigation a:hover::before {
    left: 100%;
}

.main-navigation a:hover::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.main-navigation a span {
    position: relative;
    z-index: 1;
}

.main-navigation a:hover,
.main-navigation a:focus {
    background: rgba(0, 212, 255, 0.08);
    color: var(--accent-primary);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow), var(--shadow-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-navigation .current-menu-item > a:hover,
.main-navigation .current_page_item > a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.header-search {
    display: flex;
    align-items: center;
}

.header-search .search-form {
    display: flex;
    gap: 8px;
    margin: 0;
    align-items: center;
}

.header-search .search-form input[type="search"] {
    width: 250px;
    padding: 12px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.header-search .search-form input[type="search"]::placeholder {
    color: var(--text-secondary);
}

.header-search .search-form input[type="search"]:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(26, 26, 46, 0.9);
    box-shadow: var(--shadow-glow), 0 0 0 3px rgba(0, 217, 255, 0.2);
    width: 280px;
    transform: scale(1.02);
}

.header-search .search-form button,
.header-search .search-form input[type="submit"] {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.header-search .search-form button:hover,
.header-search .search-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

/* ==================== ОСНОВНОЙ КОНТЕНТ ==================== */
.site-main {
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--glass-border), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.site-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.3;
}

.entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.entry-title {
    color: var(--accent-primary);
    font-size: 2.4em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 15px;
}

.entry-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.entry-title a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: var(--accent-secondary);
}

.entry-content {
    color: var(--text-primary);
    font-size: 1.1em;
    line-height: 1.9;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.entry-content p {
    margin-bottom: 20px;
    text-align: justify;
    text-justify: inter-word;
}


.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: var(--accent-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.entry-content a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--text-primary);
}

.entry-content li {
    margin-bottom: 10px;
}

/* ==================== КАРТОЧКИ СТАТЕЙ ==================== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.post-card {
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    padding: 35px;
    box-shadow: var(--shadow-md), 0 0 0 1px var(--glass-border);
    border: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.post-card.animate-in {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: slide-in-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    z-index: 1;
}

.post-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow-strong), var(--shadow-lg), 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(18, 18, 31, 0.95);
}

.post-card:hover::before {
    transform: scaleX(1);
}

.post-card:hover::after {
    left: 100%;
}

.post-card-title {
    color: var(--accent-primary);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.post-card-title a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-card-title a:hover {
    color: var(--accent-secondary);
}

.post-card-excerpt {
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.post-card-meta {
    color: var(--text-secondary);
    font-size: 0.9em;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ==================== ФУТЕР ==================== */
.site-footer {
    margin-top: 60px;
    padding: 60px 50px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border-radius: 20px;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--glass-border), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    text-align: left;
}

.footer-title {
    color: var(--accent-primary);
    font-size: 1.3em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-md);
    background: rgba(26, 26, 46, 0.9);
}

.social-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.social-link:hover::before {
    transform: scaleY(1);
}

.social-icon {
    font-size: 1.3em;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9em;
}

.footer-bottom a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-secondary);
}

/* ==================== КНОПКИ ==================== */
.btn {
    padding: 12px 24px;
    font-size: 1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    background-size: 200% 200%;
    color: white;
    box-shadow: var(--shadow-glow), var(--shadow-md);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow-strong), var(--shadow-lg), 0 15px 40px rgba(0, 212, 255, 0.3);
    animation: gradient-shift 2s ease infinite, magnetic-glow 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ==================== ВИДЖЕТЫ ==================== */
.widget {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md), 0 0 0 1px var(--glass-border);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.widget:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.widget-title {
    color: var(--accent-primary);
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary)) 1;
    font-weight: 700;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-primary);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget a:hover {
    color: var(--accent-primary);
}

/* ==================== СКРОЛЛБАР ==================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 6px;
    border: 2px solid var(--bg-secondary);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-secondary), var(--accent-primary));
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) var(--bg-secondary);
}

/* ==================== HERO СЕКЦИЯ ==================== */
.hero-section {
    margin-bottom: 60px;
    padding: 100px 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: scale-in 1s ease-out, border-glow 5s ease-in-out infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: rotate 40s linear infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5em;
    margin-bottom: 25px;
    color: #00d4ff !important;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.1;
    position: relative;
    animation: slide-in-left 1s ease-out;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4), 
                 0 0 20px rgba(0, 212, 255, 0.3),
                 0 2px 8px rgba(0, 212, 255, 0.3);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4)) 
            drop-shadow(0 2px 10px rgba(0, 212, 255, 0.3));
}

/* Стили для span элементов внутри заголовка (создаются JavaScript анимацией) */
.hero-title span {
    color: #00d4ff !important;
    -webkit-text-fill-color: #00d4ff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4), 
                 0 0 15px rgba(0, 212, 255, 0.3),
                 0 2px 6px rgba(0, 212, 255, 0.3) !important;
    filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.4)) 
            drop-shadow(0 2px 8px rgba(0, 212, 255, 0.3)) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: scale-in 1.5s ease-out;
}

.hero-subtitle {
    font-size: 1.5em;
    color: var(--accent-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.15em;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== О ПРОЕКТЕ ==================== */
.about-section {
    margin-bottom: 60px;
    padding: 50px 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 50px;
    text-align: center;
}

.about-text .section-title {
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-text p strong {
    color: var(--accent-primary);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 40px;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-item:hover {
    transform: translateY(-12px) rotateX(3deg) scale(1.03);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--shadow-glow), var(--shadow-lg), 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(18, 18, 31, 0.95);
    animation: magnetic-glow 2s ease-in-out infinite;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    animation: float 4s ease-in-out infinite;
    transition: all 0.5s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotateY(15deg);
    animation: wave 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.4));
}

.feature-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.feature-item h3 {
    color: var(--accent-primary);
    font-size: 1.3em;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Стили для кликабельной карточки "Подробные гайды" */
.feature-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.feature-item-link:hover {
    text-decoration: none;
}

.feature-item-link h3,
.feature-item-link p {
    color: inherit;
}

.feature-item-link:hover h3 {
    color: var(--accent-primary);
}

/* ==================== ЗАГОЛОВОК СТРАНИЦЫ ==================== */
.page-header-section {
    margin-bottom: 40px;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.page-header-section .entry-title,
.page-header-section .page-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header-section .entry-content {
    font-size: 1.1em;
    color: var(--text-primary);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ==================== СТРАНИЦА ИНФОРМАЦИИ ==================== */
.info-section {
    margin-bottom: 50px;
    padding: 50px 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.info-main-title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-description {
    font-size: 1.15em;
    line-height: 1.9;
    color: var(--text-primary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.info-description p {
    margin-bottom: 20px;
}

.info-description strong {
    color: var(--accent-primary);
    font-size: 1.1em;
}

/* Миссия */
.mission-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.mission-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.mission-item h3 {
    color: var(--accent-primary);
    font-size: 1.3em;
    margin-bottom: 15px;
}

.mission-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Особенности */
.features-section {
    background: var(--bg-secondary);
}

.features-list {
    margin-top: 40px;
}

.feature-box {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-tertiary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.feature-box:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.feature-number {
    font-size: 3em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    min-width: 80px;
}

.feature-content h3 {
    color: var(--accent-primary);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.feature-content p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05em;
}

/* Статистика */
.stats-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-icon {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Поддерживаемые игры */
.games-section {
    background: var(--bg-secondary);
}

.games-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.game-tag {
    padding: 12px 25px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.game-tag:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

/* Контакты */
.contact-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.contact-info {
    text-align: center;
    margin-top: 30px;
}

.contact-info p {
    font-size: 1.1em;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.contact-icon {
    font-size: 1.5em;
}

/* Зачем мы это делаем - описание */
.mission-description {
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.9;
    color: var(--text-primary);
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mission-description p {
    margin-bottom: 20px;
}

/* Что мы предлагаем и куда это ведет */
.purpose-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.purpose-content {
    margin-top: 30px;
}

.purpose-content > p {
    font-size: 1.1em;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.purpose-steps {
    margin: 40px 0;
}

.purpose-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.purpose-step:hover {
    transform: translateX(10px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.step-number {
    font-size: 3em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    min-width: 60px;
    text-align: center;
}

.step-content h3 {
    color: var(--accent-primary);
    font-size: 1.5em;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05em;
}

.purpose-result {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-tertiary);
    border-radius: 15px;
    border: 2px solid var(--accent-primary);
    font-size: 1.15em;
    line-height: 1.9;
    color: var(--text-primary);
    text-align: center;
}

.purpose-result strong {
    color: var(--accent-primary);
    font-size: 1.1em;
}

/* Для кого этот ресурс */
.audience-section {
    background: var(--bg-secondary);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.audience-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-tertiary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.audience-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.audience-item h3 {
    color: var(--accent-primary);
    font-size: 1.3em;
    margin-bottom: 15px;
}

.audience-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== КАТАЛОГ ИГР ==================== */

.games-catalog {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5em;
    color: var(--accent-primary);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
    align-items: stretch;
}

.game-card {
    position: relative;
    perspective: 1000px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.game-card.animate-in {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: slide-in-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.game-card-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
}

.game-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.game-card:hover .game-card-inner {
    transform: translateY(-15px) rotateX(8deg) rotateY(-3deg) scale(1.04);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: var(--shadow-glow-strong), var(--shadow-lg), 0 25px 70px rgba(0, 0, 0, 0.5);
    background: rgba(18, 18, 31, 0.95);
    animation: rotate-3d 3s ease-in-out infinite, magnetic-glow 2s ease-in-out infinite;
}

.game-card:hover .game-card-inner::before {
    opacity: 0.1;
}

.game-icon {
    font-size: 4.5em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px var(--game-color));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
}

.game-icon img,
.game-icon .game-emoji {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--game-color));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5em;
}

.game-icon img {
    object-fit: contain;
}

.game-card:hover .game-icon {
    transform: scale(1.2);
}

.game-card:hover .game-icon img {
    transform: rotateY(360deg) rotateZ(5deg);
    filter: drop-shadow(0 0 30px var(--game-color)) drop-shadow(0 0 50px rgba(0, 212, 255, 0.3));
    animation: wave 1s ease-in-out infinite;
}

.game-title {
    margin: 15px 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-title span,
.game-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
}

.game-card:hover .game-title span,
.game-card:hover .game-title a {
    color: var(--accent-primary);
}

.game-link {
    margin-top: auto;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn-game {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.9em;
    display: inline-block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.game-card:hover .btn-game {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-color: transparent;
    color: white;
}

.recent-posts-section {
    margin-top: 60px;
}

/* ==================== ПОПУЛЯРНЫЕ ИГРЫ ==================== */
.popular-games-section {
    margin: 60px 0;
    padding: 50px 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.popular-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.popular-game-card {
    position: relative;
    perspective: 1000px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    border-radius: 18px;
    isolation: isolate;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.popular-game-card.animate-in {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: slide-in-bounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.popular-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transform-style: preserve-3d;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.popular-game-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(0, 212, 255, 0.1) 25%, 
        rgba(99, 102, 241, 0.12) 50%, 
        rgba(0, 212, 255, 0.1) 75%, 
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 6s ease-in-out infinite;
    border-radius: 18px;
    z-index: 1;
    pointer-events: none;
    transform: skewX(-20deg);
    filter: blur(1px);
}

.popular-game-card > * {
    position: relative;
    z-index: 2;
}

.popular-game-card:hover::before {
    transform: translateY(-15px) rotateX(8deg) rotateY(-3deg) scale(1.04);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: var(--shadow-glow-strong), var(--shadow-lg), 0 25px 70px rgba(0, 0, 0, 0.5);
    background: 
        linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(99, 102, 241, 0.1)),
        rgba(18, 18, 31, 0.95);
    animation: rotate-3d 3s ease-in-out infinite, magnetic-glow 2s ease-in-out infinite;
    border-radius: 18px;
    clip-path: inset(0 round 18px);
}

@keyframes slide-in-bounce {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.8);
    }
    60% {
        transform: translateX(10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) translateY(0) rotateX(0) rotateY(0);
    }
}


.popular-game-icon {
    font-size: 4.5em;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px var(--game-color));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
}

.popular-game-icon img,
.popular-game-icon .game-emoji {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px var(--game-color));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5em;
}

.popular-game-icon img {
    object-fit: contain;
}

.popular-game-card:hover .popular-game-icon {
    transform: scale(1.2);
}

.popular-game-card:hover .popular-game-icon img {
    transform: rotateY(360deg) rotateZ(5deg);
    filter: drop-shadow(0 0 30px var(--game-color)) drop-shadow(0 0 50px rgba(0, 212, 255, 0.3));
    animation: wave 1s ease-in-out infinite;
}

.popular-game-title {
    margin: 15px 0;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-game-title span,
.popular-game-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
}

.popular-game-card:hover .popular-game-title span,
.popular-game-card:hover .popular-game-title a {
    color: var(--accent-primary);
}

.popular-game-link {
    margin-top: auto;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.popular-game-card .btn {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: auto;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.popular-game-card:hover .btn-primary {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow-strong), var(--shadow-lg), 0 15px 40px rgba(0, 212, 255, 0.3);
    animation: gradient-shift 2s ease infinite, magnetic-glow 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ==================== CTA СЕКЦИЯ ==================== */
.cta-section {
    margin: 60px 0;
    padding: 100px 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(99, 102, 241, 0.15), rgba(0, 212, 255, 0.15));
    background-size: 200% 200%;
    animation: gradient-shift 6s ease infinite, scale-in 1s ease-out;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--glass-border), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8em;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.cta-description {
    font-size: 1.2em;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.9;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    color: var(--accent-primary);
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 212, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 18, 0.95);
    color: var(--accent-primary);
    border-color: rgba(0, 212, 255, 0.4);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:active {
    transform: translateY(-1px);
}

/* ==================== АНИМАЦИИ ==================== */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

.hero-section,
.about-section,
.games-catalog,
.popular-games-section,
.recent-posts-section,
.cta-section {
    animation: fadeInUp 0.6s ease-out;
}

/* ==================== АДАПТИВНОСТЬ ==================== */
@media (max-width: 1024px) {
    .header-search .search-form input[type="search"] {
        width: 200px;
    }

    .header-search .search-form input[type="search"]:focus {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .site-title {
        font-size: 1.5em;
    }


    .header-wrapper {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 15px;
    }

    .site-branding {
        flex: 1;
        min-width: 0;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
        order: 3;
        margin-top: 0;
        flex-wrap: wrap;
        gap: 10px;
    }

    .menu-toggle {
        display: flex;
        order: 1;
    }

    .main-navigation {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 10px;
    }

    .main-navigation.menu-open {
        display: block;
        width: 100%;
    }

    .nav-menu {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .main-navigation a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .header-search {
        width: 100%;
        order: 2;
        flex: 1;
        min-width: 200px;
    }

    .header-search .search-form {
        width: 100%;
    }

    .header-search .search-form input[type="search"] {
        width: 100%;
        flex: 1;
    }

    .header-search .search-form input[type="search"]:focus {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-wrapper {
        padding: 12px 15px;
    }

    .site-title {
        font-size: 1.3em;
    }

    .header-right {
        gap: 8px;
    }

    .header-search {
        min-width: 0;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .game-icon {
        font-size: 2.5em;
    }

    .game-title a {
        font-size: 1.1em;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .section-title {
        font-size: 2em;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .hero-description {
        font-size: 1em;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .about-section,
    .popular-games-section,
    .cta-section {
        padding: 30px 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .popular-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 2em;
    }

    .cta-description {
        font-size: 1em;
    }

    .page-header-section {
        padding: 30px 20px;
    }

    .page-header-section .entry-title,
    .page-header-section .page-title {
        font-size: 2em;
    }

    .info-section {
        padding: 30px 20px;
    }

    .info-main-title {
        font-size: 2.2em;
    }

    .mission-grid,
    .stats-grid,
    .tech-info {
        grid-template-columns: 1fr;
    }

    .feature-box {
        flex-direction: column;
        gap: 20px;
    }

    .feature-number {
        min-width: auto;
        text-align: center;
    }

    .contact-links {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-link {
        justify-content: center;
    }

    .mission-description {
        font-size: 1em;
    }

    .purpose-step {
        flex-direction: column;
        gap: 20px;
    }

    .step-number {
        min-width: auto;
    }

    .purpose-result {
        font-size: 1em;
        padding: 20px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== WORDPRESS СПЕЦИФИЧНЫЕ СТИЛИ ==================== */
.wp-block-group {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.wp-block-heading {
    color: var(--accent-primary);
}

.wp-block-button .wp-block-button__link {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border-radius: 8px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wp-block-button .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Стили для комментариев */
.comments-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background: var(--bg-tertiary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.comment-author {
    color: var(--accent-primary);
    font-weight: 600;
}

.comment-meta {
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-bottom: 10px;
}

.comment-content {
    color: var(--text-primary);
    line-height: 1.6;
}

/* ==================== СТРАНИЦА ИГРЫ ==================== */
.game-page-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.game-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.game-page-header-content {
    position: relative;
    z-index: 2;
}

/* Анимированный фон для всех игр (кроме ARK-Hoster) */
.game-page-header-animated {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-page-header-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.4;
    animation: backgroundMove 40s ease-in-out infinite;
    filter: blur(0.5px);
}

/* Фоновые изображения для каждой игры через data-атрибуты */
.game-page-header-bg[data-game-slug="dayz"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/221100/header.jpg');
}

.game-page-header-bg[data-game-slug="minecraft"] {
    background-image: url('https://staticg.sportskeeda.com/editor/2025/03/6dc6a-17411986110772-1920.jpg');
}

.game-page-header-bg[data-game-slug="ark-se"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/346110/header.jpg');
}

.game-page-header-bg[data-game-slug="arma-3"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/107410/header.jpg');
}

.game-page-header-bg[data-game-slug="arma-reforge"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/1874880/header.jpg');
}

.game-page-header-bg[data-game-slug="ark-ascended"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/2399830/header.jpg');
}

.game-page-header-bg[data-game-slug="enshrouded"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/1203620/header.jpg');
}

.game-page-header-bg[data-game-slug="7-days-to-die"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/251570/header.jpg');
}

.game-page-header-bg[data-game-slug="palworld"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/1623730/header.jpg');
}

.game-page-header-bg[data-game-slug="project-zomboid"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/108600/header.jpg');
}

.game-page-header-bg[data-game-slug="rust"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/252490/header.jpg');
}

.game-page-header-bg[data-game-slug="space-engineers"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/244850/header.jpg');
}

.game-page-header-bg[data-game-slug="valheim"] {
    background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/892970/header.jpg');
}

/* Анимация движения фона - плавное движение и масштабирование */
@keyframes backgroundMove {
    0% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: scale(1.08) translate(-1%, -1%) rotate(0.5deg);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.12) translate(-2%, -2%) rotate(0deg);
        opacity: 0.5;
    }
    75% {
        transform: scale(1.08) translate(-1%, -1%) rotate(-0.5deg);
        opacity: 0.45;
    }
    100% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
}

/* Дополнительный слой затемнения для лучшей читаемости текста (для всех игр с анимированным фоном) */
.game-page-header-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 32, 44, 0.9) 0%,
        rgba(26, 32, 44, 0.8) 30%,
        rgba(26, 32, 44, 0.75) 50%,
        rgba(26, 32, 44, 0.8) 70%,
        rgba(26, 32, 44, 0.9) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Улучшенная видимость контента на анимированном фоне */
.game-page-header-animated .game-page-header-content {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.game-page-header-animated .game-page-title {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 212, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.game-page-header-animated .game-page-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.6);
}

/* Специальные стили для DayZ (яркий синий) */
.game-page-header[data-game-slug="dayz"] .game-page-title {
    color: #00aaff !important;
    background: linear-gradient(135deg, #00d4ff, #00aaff, #0088cc) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 0 20px rgba(0, 170, 255, 0.5), 0 2px 15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 170, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(0, 170, 255, 0.4));
}

.game-page-icon {
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 0 30px var(--game-color));
}

.game-page-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-page-title {
    font-size: 3em;
    color: var(--text-primary);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-page-subtitle {
    font-size: 1.2em;
    color: var(--text-secondary);
    opacity: 0.9;
}

.game-info-section {
    margin-bottom: 60px;
}

.game-info-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.game-description {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.1em;
}

.game-description h3 {
    color: var(--accent-primary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.game-features {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.game-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-primary);
}

.game-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.2em;
}

.game-posts-section {
    margin-bottom: 60px;
}

.view-all-posts {
    text-align: center;
    margin-top: 40px;
}

.no-posts-message {
    text-align: center;
    padding: 60px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
}

.no-posts-message p {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .game-page-title {
        font-size: 2em;
    }
    
    .game-info-content {
        padding: 25px;
    }
    
    .game-page-icon {
        width: 120px;
        height: 120px;
    }
    
    /* Упрощенная анимация для мобильных устройств */
    .game-page-header-animated {
        min-height: 300px;
    }
    
    .game-page-header-animated .game-page-header-bg {
        animation: backgroundMoveMobile 30s ease-in-out infinite;
    }
    
    @keyframes backgroundMoveMobile {
        0%, 100% {
            transform: scale(1) translate(0, 0);
            opacity: 0.35;
        }
        50% {
            transform: scale(1.05) translate(-1%, -1%);
            opacity: 0.4;
        }
    }
}

/* ==================== ИНФОРМАЦИОННЫЕ БЛОКИ В СТАТЬЯХ ==================== */
.tip-block,
.info-block,
.warning-block,
.success-block {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: var(--shadow-md), 0 0 24px rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.tip-block {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-md), 0 0 24px rgba(0, 212, 255, 0.15);
}

.tip-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.info-block {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-md), 0 0 24px rgba(99, 102, 241, 0.15);
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-secondary), var(--accent-tertiary));
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.warning-block {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: var(--shadow-md), 0 0 24px rgba(239, 68, 68, 0.15);
}

.warning-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--error), #dc2626);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.success-block {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-md), 0 0 24px rgba(16, 185, 129, 0.15);
}

.success-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--success), #059669);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.tip-block strong,
.info-block strong,
.warning-block strong,
.success-block strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.tip-block strong {
    color: var(--accent-primary);
}

.info-block strong {
    color: var(--accent-secondary);
}

.warning-block strong {
    color: var(--error);
}

.success-block strong {
    color: var(--success);
}

.tip-block p,
.info-block p,
.warning-block p,
.success-block p {
    color: var(--text-primary);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .tip-block,
    .info-block,
    .warning-block,
    .success-block {
        padding: 20px;
        margin: 20px 0;
    }
}

/* ==================== КНОПКА ПРОКРУТКИ ВВЕРХ ==================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3), 0 0 0 0 rgba(0, 212, 255, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5), 0 0 0 4px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ==================== СТРАНИЦА КОММЕНТАРИЕВ ==================== */
.comments-page-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comments-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.comments-header-content {
    position: relative;
    z-index: 1;
}

.comments-page-title {
    font-size: 3em;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comments-page-description {
    font-size: 1.2em;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.comments-section {
    margin-bottom: 60px;
}

.comments-container {
    max-width: 1000px;
    margin: 0 auto;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.comment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.comment-card:hover::before {
    transform: scaleY(1);
}

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

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

.comment-author-avatar {
    flex-shrink: 0;
}

.comment-author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.comment-card:hover .comment-author-avatar img {
    border-color: var(--accent-secondary);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
    transform: scale(1.05);
}

.comment-author-details {
    flex: 1;
}

.comment-author-name {
    font-size: 1.3em;
    color: var(--accent-primary);
    margin: 0 0 8px 0;
    font-weight: 600;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.comment-date {
    color: var(--text-secondary);
}

.comment-separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

.comment-post-link {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-post-link:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.comment-content {
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05em;
}

.comment-content p {
    margin: 0 0 15px 0;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.no-comments {
    text-align: center;
    padding: 80px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
}

.no-comments-icon {
    font-size: 5em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-comments h2 {
    color: var(--accent-primary);
    font-size: 2em;
    margin-bottom: 15px;
}

.no-comments p {
    color: var(--text-secondary);
    font-size: 1.1em;
}

.add-comment-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.add-comment-container {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.add-comment-title {
    font-size: 2em;
    color: var(--accent-primary);
    margin-bottom: 15px;
}

.add-comment-description {
    color: var(--text-secondary);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.add-comment-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .comments-page-title {
        font-size: 2em;
    }
    
    .comments-page-description {
        font-size: 1em;
    }
    
    .comment-card {
        padding: 20px;
    }
    
    .comment-author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .comment-author-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .comment-author-name {
        font-size: 1.1em;
    }
    
    .add-comment-container {
        padding: 30px 20px;
    }
    
    .add-comment-title {
        font-size: 1.5em;
    }
}

/* ==================== СТРАНИЦА ОБНОВЛЕНИЙ ==================== */
.updates-page-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.updates-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.updates-header-content {
    position: relative;
    z-index: 1;
}

.updates-page-title {
    font-size: 3em;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.updates-page-description {
    font-size: 1.2em;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.updates-section {
    margin-bottom: 60px;
}

.updates-container {
    max-width: 1000px;
    margin: 0 auto;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.updates-date-group {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.updates-date-title {
    font-size: 1.8em;
    color: var(--accent-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-icon {
    font-size: 1.2em;
}

.updates-posts-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.update-card {
    background: var(--bg-tertiary);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.update-card:hover {
    transform: translateX(5px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: var(--shadow-md);
}

.update-card:hover::before {
    transform: scaleY(1);
}

.update-card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.update-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.update-title {
    font-size: 1.4em;
    margin: 0;
}

.update-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.update-title a:hover {
    color: var(--accent-primary);
}

.update-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.update-time {
    color: var(--text-secondary);
}

.update-categories {
    color: var(--accent-secondary);
}

.update-categories a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.update-categories a:hover {
    color: var(--accent-primary);
}

.update-thumbnail {
    border-radius: 12px;
    overflow: hidden;
    margin: 10px 0;
}

.update-thumbnail-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.update-card:hover .update-thumbnail-img {
    transform: scale(1.05);
}

.update-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05em;
}

.update-excerpt p {
    margin: 0;
}

.update-footer {
    margin-top: 10px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.95em;
}

.updates-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.updates-pagination a,
.updates-pagination span {
    display: inline-block;
    padding: 12px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
    font-weight: 500;
}

.updates-pagination a:hover,
.updates-pagination span.current {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.updates-pagination span.current {
    cursor: default;
}

.updates-pagination span.dots {
    background: transparent;
    border: none;
    padding: 12px 8px;
    cursor: default;
}

.updates-pagination span.dots:hover {
    transform: none;
    box-shadow: none;
}

.no-updates {
    text-align: center;
    padding: 80px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
}

.no-updates-icon {
    font-size: 5em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-updates h2 {
    color: var(--accent-primary);
    font-size: 2em;
    margin-bottom: 15px;
}

.no-updates p {
    color: var(--text-secondary);
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .updates-page-title {
        font-size: 2em;
    }
    
    .updates-page-description {
        font-size: 1em;
    }
    
    .updates-date-group {
        padding: 20px;
    }
    
    .updates-date-title {
        font-size: 1.4em;
    }
    
    .update-card {
        padding: 20px;
    }
    
    .update-title {
        font-size: 1.2em;
    }
    
    .update-meta {
        font-size: 0.85em;
    }
}

