@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f1419;
    --secondary: #1a1f2e;
    --tertiary: #252d3d;
    --accent: #00ff88;
    --accent-glow: #00ff8844;
    --text: #e8e8e8;
    --text-dim: #a0a0a0;
    --text-darker: #707070;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 1.5s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; pointer-events: none; }
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--secondary);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo::before {
    content: '';
    width: 32px;
    height: 32px;
    background: url('https://cdn.discordapp.com/attachments/1516868592367571185/1516923851265802361/ChatGPT_Image_18_Haz_2026_00_53_39.png') no-repeat center;
    background-size: contain;
    display: inline-block;
}

.logo-icon {
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
    display: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn-download {
    padding: 0.7rem 1.8rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-btn-download:hover {
    background: #00ff99;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    background: linear-gradient(135deg, var(--accent), #00ff66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--primary);
    text-transform: uppercase;
}

.btn-hero-primary:hover {
    background: #00ff99;
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    text-transform: uppercase;
}

.btn-hero-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: inset 0 0 20px var(--accent-glow);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent);
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.hero-showcase {
    position: relative;
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.showcase-main {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    overflow: hidden;
    background: var(--tertiary);
}

.showcase-main canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.showcase-mini {
    position: relative;
    width: 100%;
    height: 80px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    overflow: hidden;
    background: var(--tertiary);
    display: flex;
    align-items: center;
}

.showcase-mini canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.mini-label {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    background: rgba(0, 0, 0, 0.6);
    padding: 2px 8px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .hero-showcase {
        height: auto;
    }

    .showcase-main {
        height: 300px;
    }

    .showcase-mini {
        height: 60px;
    }
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--accent), #00ff66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-dim);
}

/* Features */
.features {
    background: var(--secondary);
}

.features-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: rgba(37, 45, 61, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    transition: all 0.4s;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(0, 255, 136, 0.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Video Section */
.video-section {
    background: var(--secondary);
}

.video-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.video-player {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    background: var(--tertiary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.video-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 255, 136, 0.9);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 11;
}

.video-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.video-info p {
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .video-container {
        grid-template-columns: 1fr;
    }

    .video-info {
        order: -1;
    }

    .play-btn {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}
.gallery {
    background: var(--primary);
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.4s;
    aspect-ratio: 16/9;
}

.gallery-item.hero-item {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .gallery-item.hero-item {
        grid-column: span 1;
    }
}

.gallery-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.gallery-item canvas {
    width: 100%;
    height: 100%;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--accent);
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Story Section */
.story {
    background: var(--secondary);
}

.story-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent), #00ff66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 0.3rem;
}

.story-visual {
    position: relative;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.story-visual canvas {
    width: 100%;
    height: 100%;
}

/* Characters */
.characters {
    background: var(--primary);
}

.chars-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.char-card {
    padding: 2rem;
    background: var(--secondary);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    transition: all 0.4s;
    text-align: center;
}

.char-card:hover {
    border-color: var(--accent);
    background: rgba(0, 255, 136, 0.05);
}

.char-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    overflow: hidden;
}

.char-image canvas {
    width: 100%;
    height: 100%;
}

.char-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.char-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Download */
.download-section {
    background: linear-gradient(135deg, var(--accent) 0%, #00ff66 100%);
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
}

.download-section h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.download-section > p {
    font-size: 1.1rem;
    color: rgba(15, 20, 25, 0.85);
    margin-bottom: 3rem;
}

.download-box {
    background: rgba(15, 20, 25, 0.95);
    border: 2px solid rgba(15, 20, 25, 0.5);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.download-header {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.download-details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    color: var(--text-dim);
    font-weight: 600;
}

.btn-download-large {
    background: var(--primary);
    color: var(--accent);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-download-large:hover {
    background: rgba(15, 20, 25, 0.8);
    transform: translateY(-2px);
}

.system-req {
    color: var(--text-dim);
    margin-top: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.social-link:hover {
    color: rgba(15, 20, 25, 0.7);
}

/* Footer */
.footer {
    background: var(--secondary);
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    color: var(--text-dim);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-showcase {
        height: 300px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}
