* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    color: #e0e5f0;
    overflow-x: hidden;
    line-height: 1.6;
    background: #0a0a1a;
    cursor: none;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(125deg, #0a0015, #1a0a2e, #0d0d2b, #2a0a1a, #0a0a2a, #1a0a2e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(255,80,40,0.2) 0%, transparent 60%);
    animation: pulseRadial 6s ease-in-out infinite alternate;
}

@keyframes pulseRadial {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.3); }
}

.animated-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(255,100,50,0.05) 0px, rgba(255,100,50,0.05) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
    animation: starMove 20s linear infinite;
}

@keyframes starMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.cursor-glow {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,100,50,0.5) 0%, rgba(255,100,50,0) 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s;
}

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

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

@keyframes pulseGlow {
    0% { text-shadow: 0 0 0px rgba(255, 80, 40, 0); }
    100% { text-shadow: 0 0 20px rgba(255, 80, 40, 0.8); }
}

@keyframes borderGlow {
    0% { border-color: #ff5722; box-shadow: 0 0 5px #ff5722; }
    50% { border-color: #ffaa44; box-shadow: 0 0 20px #ffaa44; }
    100% { border-color: #ff5722; box-shadow: 0 0 5px #ff5722; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3, .logo-font, .lang-btn {
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.lang-bar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 60px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    border: 1px solid rgba(255, 100, 50, 0.6);
    box-shadow: 0 0 15px rgba(255,80,40,0.3);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #ffd9b5;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    transition: 0.2s;
}

.lang-btn.active {
    background: #d63e2c;
    color: white;
    box-shadow: 0 0 10px #ff5722;
}

.lang-btn:hover {
    background: #ff5e3a70;
    transform: scale(1.02);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(214,62,44,0.2);
    border: 1px solid #d63e2c;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-icon {
    font-size: 60px;
    color: #ff724c;
    margin-bottom: 15px;
    display: inline-block;
    animation: pulseGlow 1.5s infinite alternate;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff8e7, #ff8c42, #d63e2c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.hero-tags span {
    font-size: 0.8rem;
    background: rgba(255,100,50,0.15);
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255,100,50,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #cdd9ff;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 14px 38px;
    background: linear-gradient(95deg, #d63e2c, #ff6a3a);
    color: white;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 18px rgba(214, 62, 44, 0.7);
    border: none;
    font-family: 'Orbitron', monospace;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ff6a3a;
    box-shadow: none;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #ff5a3a;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.7rem;
    opacity: 0.7;
    animation: float 2s infinite;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.section-title span {
    background: linear-gradient(135deg, #ff8c42, #d63e2c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.factions {
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(8px);
    padding: 60px 0;
    border-bottom: 1px solid #ff6a2e60;
    border-top: 1px solid #ff6a2e40;
}

.faction-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px;
    align-items: center;
}

.faction-item {
    text-align: center;
    transition: all 0.3s;
    filter: drop-shadow(0 0 6px #ff6a2e60);
    cursor: pointer;
}

.faction-item i { font-size: 3.4rem; color: #ffaa66; transition: 0.2s; }
.faction-item:hover i { transform: scale(1.1) translateY(-5px); text-shadow: 0 0 15px #ff884d; }
.faction-item span { display: block; font-weight: bold; margin-top: 8px; font-size: 1rem; }
.faction-desc { font-size: 0.7rem; opacity: 0.7; margin-top: 4px; }

.media-showcase {
    background: rgba(3, 6, 23, 0.6);
    backdrop-filter: blur(4px);
    padding: 80px 0;
}

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

.video-card {
    background: #0a0f1aee;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ff7b2c60;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px #000000cc;
    border-color: #ff8c42;
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

.video-caption {
    padding: 12px;
    text-align: center;
    font-weight: 500;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.screenshot-card {
    background: #0e1222;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #ff7b2c40;
    transition: 0.25s;
}

.screenshot-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}

.screenshot-card:hover {
    transform: scale(1.02);
    border-color: #ff8c42;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.stats-counter {
    background: rgba(0,0,0,0.5);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
}

.stat-card {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Orbitron', monospace;
    color: #ff8c42;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.lore-deep {
    background: rgba(1, 3, 20, 0.85);
    backdrop-filter: blur(5px);
    padding: 80px 0;
}

.lore-content {
    max-width: 1100px;
    margin: 0 auto;
    background: #0a0f1cee;
    padding: 50px;
    border-radius: 48px;
    border-left: 6px solid #ff5722;
    font-size: 1.05rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: borderGlow 3s infinite;
}

.lore-content h2 { font-size: 2.5rem; margin: 35px 0 15px; color: #ffa05e; }
.lore-content h3 { font-size: 1.8rem; margin: 30px 0 12px; color: #ffc285; }
.lore-content h4 { font-size: 1.3rem; margin: 20px 0 10px; color: #ffaa66; }
.lore-content p { margin-bottom: 1.3rem; }
.lore-content ul { margin-left: 30px; margin-bottom: 1.3rem; }

.features-highlight {
    background: linear-gradient(145deg, rgba(7, 17, 38, 0.8), rgba(3, 5, 12, 0.9));
    backdrop-filter: blur(3px);
    padding: 80px 0;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    flex: 1 1 280px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    padding: 30px 20px;
    border-radius: 30px;
    text-align: center;
    border: 1px solid #ff884d30;
    transition: 0.2s;
    position: relative;
    overflow: hidden;
}

.feature-card i { font-size: 3rem; color: #ff7e3a; margin-bottom: 15px; display: inline-block; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card:hover { border-color: #ff884d; transform: translateY(-5px); }
.feature-hover {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    background: #ff5722;
    color: white;
    padding: 8px;
    font-size: 0.8rem;
    transition: 0.3s;
    opacity: 0;
}
.feature-card:hover .feature-hover {
    bottom: 0;
    opacity: 1;
}

.testimonial-section {
    background: rgba(0,0,0,0.4);
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(10,15,30,0.8);
    padding: 30px;
    border-radius: 30px;
    border: 1px solid #ff884d40;
    text-align: center;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #ff884d;
}

.testimonial-card i {
    font-size: 2rem;
    color: #ff884d;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card span {
    color: #ffaa66;
    font-weight: bold;
}

footer {
    background: #00020be6;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #ff7b2c30;
}

.footer-logo {
    font-size: 1.2rem;
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffaa66;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #ff5722;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.3rem; }
    .lore-content { padding: 25px; }
    .lang-bar { top: 10px; right: 10px; gap: 5px; padding: 5px 12px; }
    .lang-btn { font-size: 0.65rem; padding: 3px 8px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-tags { flex-wrap: wrap; }
}

.placeholder-fallback {
    background: linear-gradient(145deg, #1a1f2e, #0a0e1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffaa66;
    font-size: 0.8rem;
    text-align: center;
    height: 180px;
    border-radius: 16px;
}
