/* ============================================
   FANTASTIC HOST-HYTALE.RU - EPIC STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #050510;
    --bg-secondary: #0a0a1e;
    --bg-tertiary: #151528;
    --accent-primary: #FFE066;
    --accent-secondary: #FF8C42;
    --accent-tertiary: #4ECDC4;
    --accent-quaternary: #95E1D3;
    --accent-gold: #FFE066;
    --accent-orange: #FF8C42;
    --accent-cyan: #4ECDC4;
    --accent-green: #95E1D3;
    --accent-purple: #C44569;
    --text-primary: #ffffff;
    --text-secondary: #c4c4e0;
    --text-muted: #7a7a9a;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-glow: rgba(255, 224, 102, 0.25);
    --shadow-glow-cyan: rgba(78, 205, 196, 0.25);
    --shadow-glow-orange: rgba(255, 140, 66, 0.25);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#particles {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-tertiary), transparent);
    top: 50%;
    right: 5%;
    animation-delay: 8s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--accent-secondary), transparent);
    bottom: 5%;
    left: 45%;
    animation-delay: 16s;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ============================================
   GLASSMORPHISM
   ============================================ */

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(5, 5, 16, 0.85);
    backdrop-filter: blur(25px) saturate(150%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 224, 102, 0.05);
    border-bottom: 1px solid rgba(255, 224, 102, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s;
}

.logo:hover .logo-glow {
    opacity: 0.5;
}

.logo-icon {
    filter: drop-shadow(0 0 10px var(--accent-gold));
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--accent-gold)); }
    50% { filter: drop-shadow(0 0 20px var(--accent-gold)); }
}

.logo-main {
    color: var(--text-primary);
}

.logo-accent {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary), var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    background-size: 300% 300%;
    filter: drop-shadow(0 0 15px rgba(255, 224, 102, 0.5));
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-gold);
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleY(1);
    transform-origin: top;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    text-shadow: 0 0 10px var(--accent-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 10px var(--accent-gold);
}

.header-actions {
    display: flex;
    gap: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-ghost:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-primary));
    background-size: 200% 200%;
    color: var(--bg-primary);
    border: none;
    position: relative;
    animation: gradient-shift 3s ease infinite;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
                0 0 40px rgba(255, 107, 53, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                0 0 60px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.btn-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.btn-3d:hover {
    transform: translateY(-3px) rotateX(5deg);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-3d:hover .btn-bg {
    left: 100%;
}

.btn-content {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-outline-glow {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-outline-glow:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 30px var(--shadow-glow-cyan);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(5, 5, 16, 0.5) 50%, transparent 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
}

.badge-content {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #FFD700, #FF6B35, #00D4FF, #FFD700);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradient-border 3s linear infinite;
    z-index: -1;
}

@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 224, 102, 0.4), transparent);
    opacity: 0;
    animation: badge-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.badge-icon-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px rgba(255, 224, 102, 0.7));
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(5deg); }
}

.badge-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.badge-text-prefix {
    color: var(--text-secondary);
}

.badge-text-accent {
    background: linear-gradient(135deg, #FFE066, #4ECDC4, #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 224, 102, 0.6);
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

.badge-sparkles {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 0.25rem;
    margin-left: 0.25rem;
}

.sparkle {
    font-size: 1rem;
    display: inline-block;
    animation: sparkle-rotate 2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.8));
}

.sparkle-1 {
    animation-delay: 0s;
}

.sparkle-2 {
    animation-delay: 1s;
}

@keyframes sparkle-rotate {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% { 
        transform: rotate(180deg) scale(1.3);
        opacity: 0.7;
    }
}

.hero-badge:hover .badge-content {
    transform: translateY(-2px);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-badge:hover .badge-glow {
    animation-duration: 1.5s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    position: relative;
}

.title-line:first-child {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.title-line.title-accent {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.title-line.title-main {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary), var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    background-size: 300% 300%;
    text-shadow: 0 0 60px rgba(255, 224, 102, 0.6);
    filter: drop-shadow(0 0 30px rgba(78, 205, 196, 0.4));
    letter-spacing: -2px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    min-width: 200px;
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    opacity: 0;
    filter: blur(30px);
    transition: opacity 0.3s;
}

.stat-card:hover .stat-glow {
    opacity: 0.3;
}

.stat-icon {
    display: none;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
    filter: drop-shadow(0 0 20px rgba(255, 224, 102, 0.4));
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--accent-gold));
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    animation: fade-in-up 1s ease-out 2s both;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 224, 102, 0.5);
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
    box-shadow: 0 0 10px rgba(255, 224, 102, 0.8);
}

.scroll-indicator span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 224, 102, 0.3);
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Градиентные переходы между секциями */
section::before,
section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
    z-index: 0;
}

section::before {
    top: 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(5, 5, 16, 0.5) 50%, transparent 100%);
}

section::after {
    bottom: 0;
    background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(5, 5, 16, 0.5) 50%, transparent 100%);
}

/* Убираем градиенты у первой и последней секций */
section:first-child::before,
section:last-child::after {
    display: none;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary), var(--accent-secondary), var(--accent-quaternary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    background-size: 300% 300%;
    filter: drop-shadow(0 0 20px rgba(255, 224, 102, 0.3));
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   ADVANTAGES
   ============================================ */

.advantages {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
    position: relative;
}

.advantages::before {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(5, 5, 16, 0.5) 50%, transparent 100%);
}

.advantages::after {
    background: linear-gradient(0deg, var(--bg-tertiary) 0%, rgba(21, 21, 40, 0.5) 50%, transparent 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.advantage-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary), var(--accent-secondary));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    animation: gradient-border 4s linear infinite;
    z-index: -1;
}

.advantage-card:hover::before {
    opacity: 0.6;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 70px rgba(255, 224, 102, 0.25),
        0 0 60px rgba(78, 205, 196, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(40px);
}

.advantage-card:hover .card-glow {
    opacity: 0.2;
}

.advantage-icon {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    opacity: 0.2;
    filter: blur(20px);
    border-radius: 50%;
}

.advantage-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.advantage-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    color: var(--text-primary);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

/* ============================================
   HYTALE VIDEO
   ============================================ */

.hytale-video {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
    position: relative;
}

.hytale-video::before {
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, rgba(21, 21, 40, 0.5) 50%, transparent 100%);
}

.hytale-video::after {
    background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(5, 5, 16, 0.5) 50%, transparent 100%);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.video-thumbnail {
    aspect-ratio: 16/9;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.3s;
}

.video-thumbnail:hover .video-glow {
    opacity: 0.3;
}

.play-button {
    transition: transform 0.3s;
    z-index: 1;
}

.video-thumbnail:hover .play-button {
    transform: scale(1.2);
}

.video-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   TARIFFS
   ============================================ */

.tariffs {
    background: var(--bg-primary);
    position: relative;
}

.tariffs::before {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(5, 5, 16, 0.5) 50%, transparent 100%);
}

.tariffs::after {
    background: linear-gradient(0deg, var(--bg-primary) 0%, rgba(5, 5, 16, 0.7) 70%, transparent 100%);
}

.duration-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem;
    border-radius: 20px;
    flex-wrap: wrap;
}

.duration-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.duration-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.duration-btn.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--bg-primary);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.discount {
    color: var(--accent-green);
    font-size: 0.85rem;
}

.infinity {
    font-size: 1.2rem;
    color: var(--accent-cyan);
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.tariff-card {
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
    border: 2px solid transparent;
}

.tariff-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 102, 0.1), transparent);
    transition: left 0.5s;
}

.tariff-card:hover::after {
    left: 100%;
}

.tariff-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 25px 70px rgba(255, 224, 102, 0.2),
        0 0 50px rgba(78, 205, 196, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 224, 102, 0.2);
}

.tariff-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-primary);
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 25px rgba(255, 224, 102, 0.6);
    white-space: nowrap;
    z-index: 10;
}

.tariff-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tariff-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
    filter: drop-shadow(0 0 15px rgba(255, 224, 102, 0.4));
}

.price-period {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.tariff-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tariff-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tariff-feature:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tariff-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tariff-card.highlighted .tariff-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    color: var(--bg-primary);
    border-color: transparent;
}

.tariff-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* ============================================
   PROMO
   ============================================ */

.promo {
    background: var(--bg-primary);
    padding: 6rem 0;
    position: relative;
}

.promo::before {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(5, 5, 16, 0.7) 70%, transparent 100%);
}

.promo::after {
    background: linear-gradient(0deg, var(--bg-secondary) 0%, rgba(10, 10, 30, 0.5) 50%, transparent 100%);
}

.promo-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.promo-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-gold), transparent);
    opacity: 0.1;
    filter: blur(60px);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promo-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.promo-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--text-primary);
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright,
.footer-trademark {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--accent-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .title-line:first-child { font-size: 2.5rem; }
    .title-line.title-accent { font-size: 3rem; }
    .title-line.title-main { font-size: 4rem; }
    
    .video-content {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 1rem 0;
    }
    
    .title-line:first-child { font-size: 2rem; }
    .title-line.title-accent { font-size: 2.5rem; }
    .title-line.title-main { font-size: 3rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .advantages-grid,
    .tariffs-grid {
        grid-template-columns: 1fr;
    }
    
    .duration-selector {
        flex-direction: column;
    }
    
    .duration-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
}
