
:root {
    --bg-dark: #0f172a;       
    --bg-card: #1e293b;       
    --primary: #38bdf8;       
    --accent: #f472b6;        
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --discord: #5865F2;
    --glass: rgba(30, 41, 59, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }


.background-animation {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(244, 114, 182, 0.08) 0%, transparent 40%);
}


.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.highlight { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.discord-btn):hover { color: var(--primary); }


.discord-btn {
    background: var(--discord);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
.discord-btn:hover { background: #4752c4; transform: translateY(-2px); }


.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: var(--text-main); margin: 5px; transition: 0.3s; }


.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.badge {
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(56, 189, 248, 0.3);
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons { display: flex; gap: 20px; justify-content: center; }

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}
.btn-primary:hover {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.btn-discord {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-discord:hover { background: rgba(255,255,255,0.1); }


.section { padding: 100px 0; }
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}


.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(56, 189, 248, 0.3); }

.card-status {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
}
.done { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.plan { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }

.card-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.card h3 { margin-bottom: 10px; font-size: 1.4rem; }
.desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }

.platform-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
    background: rgba(255,255,255,0.05);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-main);
}


.tabs-wrapper { text-align: center; margin-bottom: 40px; }
.tabs {
    display: inline-flex;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    padding: 5px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    font-family: inherit;
}
.tab-btn.active { background: var(--primary); color: var(--bg-dark); }

.tab-content { display: none; animation: fadeUp 0.5s; }
.tab-content.active { display: block; }

.download-card {
    background: var(--glass);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}
.version { color: var(--accent); font-weight: 600; }

.download-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.option {
    background: rgba(0,0,0,0.2);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}
.option.full-width { grid-column: span 2; }
.option i { font-size: 2.5rem; margin-bottom: 15px; color: var(--text-muted); }
.option h4 { margin-bottom: 5px; }
.option p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

.btn-small {
    background: var(--text-main);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
}
.btn-small:hover { background: var(--primary); }

.note {
    margin-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}


.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.team-block h3 {
    color: var(--primary);
    margin-bottom: 20px;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
}

.team-list li {
    background: rgba(255,255,255,0.03);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}


.team-list i {
    color: var(--primary);
    opacity: 0.8;
    width: 25px;
    text-align: center;
}


.support-container {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.support-box {
    background: linear-gradient(145deg, rgba(88, 101, 242, 0.2), rgba(30, 41, 59, 0.8));
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.support-box:hover {
    transform: translateY(-5px);
    border-color: rgba(88, 101, 242, 0.6);
}

.support-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.support-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}


.btn-discord-large {
    background-color: #5865F2;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
}

.btn-discord-large:hover {
    background-color: #4752c4;
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
    transform: scale(1.02);
}


footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 50px 0;
    text-align: center;
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.socials { margin-bottom: 20px; }
.socials a { font-size: 1.5rem; margin: 0 10px; color: var(--text-main); }
.socials a:hover { color: var(--discord); }


@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .burger { display: block; }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 0;
        top: 70px;
        background-color: var(--bg-card);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow: hidden;
        transition: height 0.3s ease-in;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links.nav-active {
        height: 250px;
        padding: 30px 0;
    }

    .hero h1 { font-size: 2.2rem; }
    
    .download-options { grid-template-columns: 1fr; }
    .option.full-width { grid-column: span 1; }

    .support-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }
    .btn-discord-large { width: 100%; justify-content: center; }
}