:root {
    --primary-color: #0b1e3b;
    --secondary-color: #122c5a;
    --accent-color: #00ccff;
    --accent-glow: #00ccff80;
    --text-color: #ffffff;
    --text-color-muted: #8aa0c1;
    --card-bg: rgba(13, 37, 77, 0.6);
    --card-bg-hover: rgba(15, 42, 88, 0.8);
    --gradient-primary: linear-gradient(135deg, #0b1e3b 0%, #122c5a 100%);
    --gradient-accent: linear-gradient(135deg, #0062ff 0%, #00ccff 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.2);
    --shadow-accent: 0 0 15px var(--accent-glow);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-color);
    background-image: radial-gradient(circle at 15% 50%, rgba(25, 60, 125, 0.2) 0%, transparent 45%),
                     radial-gradient(circle at 85% 30%, rgba(0, 204, 255, 0.1) 0%, transparent 55%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/noise.png');
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.cursor {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width 0.2s, height 0.2s;
    z-index: 9999;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--accent-glow);
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9998;
    opacity: 0.3;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(11, 30, 59, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background var(--transition-normal);
}

header.scrolled {
    background: rgba(11, 30, 59, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.logo .accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding: 5px;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.social-button.discord {
    background-color: #5865f2;
}

.social-button.telegram {
    background-color: #26a5e4;
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

section {
    padding: 100px 5%;
    max-width: 1440px;
    margin: 0 auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.glitch-text {
    font-size: 70px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

.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-color);
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: 2px 0 var(--accent-color);
    animation: glitch-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0%, 24%, 45%, 90%, 100% { clip-path: inset(0 0 0 0); }
    25% { clip-path: inset(0 0 70% 0); }
    50% { clip-path: inset(25% 0 40% 0); }
    75% { clip-path: inset(60% 0 5% 0); }
}

@keyframes glitch-2 {
    0%, 14%, 34%, 71%, 100% { clip-path: inset(0 0 0 0); }
    15% { clip-path: inset(15% 0 70% 0); }
    35% { clip-path: inset(60% 0 10% 0); }
    72% { clip-path: inset(30% 0 55% 0); }
}

.subtitle {
    font-size: 20px;
    color: var(--text-color-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.primary-button, 
.secondary-button,
.download-button {
    padding: 12px 30px;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    font-size: 16px;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.primary-button {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.4);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-button:hover, 
.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 204, 255, 0.6);
}

.secondary-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.primary-button::before,
.download-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

.hero-graphic {
    position: relative;
    width: 40%;
    z-index: 1;
}
.hero-graphic {
    position: relative;
    width: 40%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic video {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

@keyframes rotateCube {
    0% { transform: rotateY(0) rotateX(0); }
    100% { transform: rotateY(360deg) rotateX(360deg); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.features {
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--card-bg-hover);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 204, 255, 0.3);
    border-color: rgba(0, 204, 255, 0.3);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color-muted);
    font-size: 16px;
}

.showcase {
    overflow: hidden;
}

.showcase-wrapper {
    display: flex;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    gap: 30px;
}

.showcase-item {
    min-width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.showcase-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(0, 204, 255, 0.3);
    transition: all var(--transition-normal);
    filter: brightness(0.9);
}

.showcase-item:hover img {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.showcase-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 30px;
}

.showcase-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-nav-btn:hover {
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.showcase-dots {
    display: flex;
    gap: 10px;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.showcase-dot.active {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-glow);
}

.download {
    background: linear-gradient(to bottom, transparent, rgba(0, 204, 255, 0.05), transparent);
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
}

.download-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.download-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    width: 330px;
    position: relative;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-md);
}

.download-card:hover {
    transform: translateY(-10px);
    background: var(--card-bg-hover);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 204, 255, 0.2);
    border-color: rgba(0, 204, 255, 0.2);
}

.download-card.premium {
    transform: scale(1.05);
    border-color: rgba(0, 204, 255, 0.3);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(0, 204, 255, 0.3);
    z-index: 1;
}

.download-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
}

.download-card.vip {
    background: linear-gradient(135deg, rgba(18, 44, 90, 0.6) 0%, rgba(13, 37, 77, 0.6) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(255, 215, 0, 0.3);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.download-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

.download-card-header i {
    font-size: 40px;
    margin-bottom: 15px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-card.vip .download-card-header i {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.download-card-header h3 {
    font-size: 24px;
    font-weight: 600;
}

.download-features {
    margin-bottom: 30px;
}

.download-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-features li i {
    font-size: 16px;
}

.download-features .fa-check {
    color: #4caf50;
}

.download-features .fa-times {
    color: #ff5252;
}

.download-button {
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius-md);
    background: var(--gradient-accent);
    color: white;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.3);
}

.download-card.vip .download-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.faq {
    background: linear-gradient(to top, transparent, rgba(0, 204, 255, 0.05), transparent);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 204, 255, 0.2);
    border-color: rgba(0, 204, 255, 0.2);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
}

.faq-question i {
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-color-muted);
}

footer {
    background: linear-gradient(to top, rgba(11, 30, 59, 0.95), rgba(18, 44, 90, 0.8));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1440px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.footer-logo p {
    color: var(--text-color-muted);
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-color);
}

.footer-links-column a {
    color: var(--text-color-muted);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    color: var(--text-color-muted);
    font-size: 14px;
    max-width: 1440px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-graphic {
        width: 80%;
    }
}

@media (max-width: 992px) {
    .nav-links, .social-links {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .glitch-text {
        font-size: 50px;
    }
    .download-options {
        flex-direction: column;
        align-items: center;
    }
    .download-card {
        width: 100%;
        max-width: 350px;
    }
    .download-card.premium {
        transform: scale(1);
    }
    .download-card.premium:hover {
        transform: translateY(-10px);
    }
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .primary-button, .secondary-button {
        width: 100%;
        justify-content: center;
    }
    .section-title {
        font-size: 32px;
    }
} 