/* ========================================
   Plague Inc. Review Site - Styles
   Dark theme with biohazard red accents
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #141414;
    --accent-primary: #c41e3a;
    --accent-secondary: #8b0000;
    --accent-highlight: #ff4757;
    --accent-glow: rgba(196, 30, 58, 0.4);
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: #2a2a2a;
    --shadow-dark: rgba(0, 0, 0, 0.5);
    --shadow-glow: rgba(196, 30, 58, 0.3);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(196, 30, 58, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 0, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(196, 30, 58, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulseBackground 8s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1rem, 2vw, 1.25rem); }

p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-highlight);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 10px var(--accent-glow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
    transition: var(--transition);
}

.logo:hover img {
    filter: drop-shadow(0 0 15px var(--accent-primary));
    transform: scale(1.05);
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-highlight);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-secondary);
    padding: 100px 40px 40px;
    transition: right 0.4s ease;
    z-index: 1001;
    border-left: 1px solid var(--border-color);
    pointer-events: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-list {
    flex-direction: column;
    gap: 25px;
}

.mobile-menu .nav-link {
    font-size: 1.1rem;
    display: block;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    pointer-events: none;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-title {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--accent-highlight);
    font-weight: 500;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-highlight);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 4px 20px var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-3px);
}

.google-play-btn {
    transition: var(--transition);
}

.google-play-btn img {
    height: 55px;
    filter: drop-shadow(0 4px 15px var(--shadow-dark));
}

.google-play-btn:hover {
    transform: translateY(-3px);
}

.google-play-btn:hover img {
    filter: drop-shadow(0 8px 25px var(--shadow-dark));
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ========================================
   VIDEO/TRAILER SECTION
   ======================================== */
.trailer-section {
    background: var(--bg-secondary);
    position: relative;
}

.trailer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-dark), 0 0 40px var(--shadow-glow);
    border: 1px solid var(--border-color);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 40px var(--shadow-dark), 0 0 20px var(--shadow-glow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #fff;
}

.feature-icon i {
    color: inherit;
}

.feature-title {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 30, 58, 0.3);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.review-info h4 {
    color: var(--text-primary);
    margin-bottom: 3px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.review-stars span,
.review-stars i {
    color: #ffd700;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Press Quote */
.press-quote {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border-left: 4px solid var(--accent-primary);
    padding: 25px 30px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 20px;
}

.press-quote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.press-source {
    color: var(--accent-highlight);
    font-weight: 600;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow-dark);
}

.about-text h3 {
    margin-bottom: 20px;
    color: var(--accent-highlight);
}

.about-text p {
    margin-bottom: 20px;
}

/* Developer Info */
.developer-info {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.developer-info h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* Policy pages */
.policy-section {
    padding-top: 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 48px 40px;
    border: 1px solid var(--border-color);
}

.policy-content h2 {
    font-size: 1.25rem;
    color: var(--accent-highlight);
    margin-top: 32px;
    margin-bottom: 12px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 16px;
}

.policy-content ul {
    margin: 12px 0 20px 24px;
    color: var(--text-secondary);
}

.policy-content li {
    margin-bottom: 8px;
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.award-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.award-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.award-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-primary);
}

.award-icon i {
    color: inherit;
}

.award-title {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.award-source {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ========================================
   FEATURES PAGE
   ======================================== */
.features-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-block:nth-child(even) {
    direction: rtl;
}

.feature-block:nth-child(even) > * {
    direction: ltr;
}

.feature-block-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-dark);
}

.feature-block-content h3 {
    color: var(--accent-highlight);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-highlight);
    font-weight: bold;
}

/* ========================================
   REVIEWS PAGE
   ======================================== */
.reviews-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

.rating-overview {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.rating-score {
    text-align: center;
}

.rating-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent-highlight);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 4px;
    font-size: 1.5rem;
    color: #ffd700;
    margin: 10px 0;
}

.rating-stars i {
    color: inherit;
}

.rating-count {
    color: var(--text-muted);
}

.rating-breakdown {
    flex: 1;
    max-width: 400px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating-bar-label {
    width: 20px;
    text-align: right;
    color: var(--text-secondary);
}

.rating-bar-track {
    flex: 1;
    height: 10px;
    background: var(--bg-secondary);
    border-radius: 5px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-highlight));
    border-radius: 5px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-highlight);
}

.footer-download {
    text-align: center;
}

.footer-download h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   GLASSMORPHISM CARDS
   ======================================== */
.glass-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 71, 87, 0.5), transparent);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   TIMELINE / HISTORY
   ======================================== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-highlight), var(--accent-primary));
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    max-width: 450px;
    position: relative;
    margin-right: 40px;
    transition: var(--transition);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 40px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px var(--shadow-glow);
}

.timeline-dot {
    position: absolute;
    right: -58px;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--accent-highlight);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 20px var(--accent-glow);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -58px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-highlight);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   ANIMATED COUNTER STATS
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c41e3a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px var(--shadow-glow);
}

.stat-card .stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--accent-highlight);
}

.stat-card .stat-icon i {
    color: inherit;
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-highlight);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card .stat-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   MARQUEE / SCROLLING TEXT
   ======================================== */
.marquee-section {
    background: var(--accent-primary);
    padding: 15px 0;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 60px;
    padding: 0 30px;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.marquee-item span,
.marquee-item i {
    opacity: 0.5;
    margin-right: 0.35em;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   HEXAGON GRID
   ======================================== */
.hex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.hex-item {
    width: 180px;
    height: 200px;
    background: var(--bg-card);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    transition: var(--transition);
    position: relative;
}

.hex-item::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-card);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.hex-item:hover {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    transform: scale(1.1);
}

.hex-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent-highlight);
}

.hex-icon i {
    color: inherit;
}

.hex-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   FLOATING PARTICLES
   ======================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-highlight);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 11s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 15s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 11s; }

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ========================================
   INFECTION SPREAD ANIMATION
   ======================================== */
.infection-card {
    position: relative;
    overflow: hidden;
}

.infection-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    pointer-events: none;
}

.infection-card:hover::after {
    width: 300%;
    height: 300%;
}

/* ========================================
   GLITCH TEXT EFFECT
   ======================================== */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-primary);
    clip-path: inset(0 0 50% 0);
    animation: glitch-top 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 2px 0 var(--accent-highlight);
    clip-path: inset(50% 0 0 0);
    animation: glitch-bottom 3s infinite linear alternate-reverse;
}

@keyframes glitch-top {
    0%, 90%, 100% { transform: translateX(0); }
    92% { transform: translateX(-5px); }
    94% { transform: translateX(5px); }
    96% { transform: translateX(-3px); }
    98% { transform: translateX(3px); }
}

@keyframes glitch-bottom {
    0%, 90%, 100% { transform: translateX(0); }
    91% { transform: translateX(3px); }
    93% { transform: translateX(-5px); }
    95% { transform: translateX(2px); }
    97% { transform: translateX(-2px); }
}

/* ========================================
   WHY PLAYERS LOVE SECTION
   ======================================== */
.love-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.love-card {
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border-radius: var(--radius-lg);
    padding: 35px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.love-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, transparent, var(--accent-glow), transparent 30%);
    animation: rotateBorder 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.love-card:hover::before {
    opacity: 1;
}

.love-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border-radius: calc(var(--radius-lg) - 2px);
    z-index: 0;
}

.love-card > * {
    position: relative;
    z-index: 1;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.love-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.love-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    box-shadow: 0 10px 30px var(--shadow-glow);
    color: #fff;
}

.love-icon i {
    color: inherit;
}

.love-title {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.love-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    font-family: var(--font-heading);
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: rgba(196, 30, 58, 0.05);
}

.comparison-table .check {
    color: #4ade80;
    font-size: 1.2rem;
}

.comparison-table .cross {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-highlight);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-highlight);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   NEON BORDER EFFECT
   ======================================== */
.neon-border {
    position: relative;
    border: 2px solid transparent;
    background: var(--bg-card);
    border-radius: var(--radius-md);
}

.neon-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-highlight), var(--accent-primary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-border:hover::before {
    opacity: 1;
    animation: neonPulse 1.5s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { filter: blur(5px) brightness(1); }
    50% { filter: blur(10px) brightness(1.2); }
}

/* ========================================
   PARALLAX SECTION
   ======================================== */
.parallax-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(196, 30, 58, 0.3));
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 40px;
}

/* ========================================
   PULSE RING ANIMATION
   ======================================== */
.pulse-ring {
    position: relative;
    display: inline-block;
}

.pulse-ring::before,
.pulse-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--accent-highlight);
    animation: pulseRing 2s ease-out infinite;
}

.pulse-ring::after {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-accent { color: var(--accent-highlight); }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.pt-0 { padding-top: 0; }

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .about-content,
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .policy-content {
        padding: 28px 20px;
    }

    /* скрыть только десктопную навигацию в хедере */
    .nav .nav-list {
        display: none;
    }

    /* список в бургер-меню должен быть виден */
    .mobile-menu .nav-list {
        display: flex;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .rating-overview {
        flex-direction: column;
        gap: 40px;
        padding: 30px;
    }

    .rating-number {
        font-size: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand .logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }
}

/* New blocks responsive */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .love-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 12px;
        right: auto;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-card .stat-number {
        font-size: 2.5rem;
    }

    .love-grid {
        grid-template-columns: 1fr;
    }

    .hex-grid {
        gap: 15px;
    }

    .hex-item {
        width: 140px;
        height: 160px;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .marquee-item {
        font-size: 0.85rem;
    }

    .glass-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hex-item {
        width: 120px;
        height: 140px;
        padding: 20px;
    }

    .hex-icon {
        font-size: 1.8rem;
    }

    .hex-title {
        font-size: 0.75rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .faq-question {
        padding: 20px;
        font-size: 0.9rem;
    }

    .love-card {
        padding: 25px;
    }

    .love-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
