@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;900&family=Syne:wght@800&display=swap');

:root {
    --accent: #ec446c; 
    --bg-dark: #050508;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-dim: rgba(255, 255, 255, 0.5);
    --transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --- GLOBAL RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 50% -20%, rgba(236, 68, 108, 0.15), transparent),
        radial-gradient(circle at 0% 100%, rgba(30, 58, 138, 0.05), transparent),
        #050508;
    z-index: -1;
}

/* --- NAVIGATION --- */
header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 900px;
}

.nav-container {
    background: rgba(15, 15, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: white; }
.brand img { width: 22px; height: auto; }
.logo-text { font-weight: 900; letter-spacing: -0.5px; font-size: 1.2rem; }

.menu-toggle { display: none; cursor: pointer; font-size: 1.2rem; }

.navigation { display: flex; gap: 5px; }
.navigation a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 18px;
    border-radius: 50px;
    transition: 0.3s;
}
.navigation a:hover, .navigation a.active { color: white; background: rgba(255, 255, 255, 0.1); }

/* --- HERO & DOWNLOAD --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 5% 60px;
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.85;
    letter-spacing: -4px;
    background: linear-gradient(to bottom, #fff 60%, #444);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    transform: scaleY(0.85);
}

.hero p { max-width: 600px; color: var(--text-dim); margin-bottom: 40px; font-size: 1rem; line-height: 1.6; }

.download-wrapper { position: relative; display: inline-block; }
.main-download-btn {
    padding: 18px 45px;
    background: white;
    color: black;
    border-radius: 50px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #0f0f13;
    border: 1px solid var(--glass-border);
    min-width: 260px;
    border-radius: 24px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 500;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.download-wrapper:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(10px); }

.menu-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
}
.menu-item:hover { background: rgba(255, 255, 255, 0.05); color: var(--accent); }
.menu-item i { margin-right: 12px; color: var(--accent); font-size: 1.1rem; width: 20px; text-align: center; }

/* --- SECTIONS & CARDS --- */
.section { padding: 100px 8%; text-align: center; }
.section h2 { font-size: clamp(2rem, 5vw, 3rem); font-family: 'Syne'; margin-bottom: 60px; }

.features, .news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px 30px;
    transition: var(--transition);
}
.card:hover { border-color: var(--accent); transform: translateY(-10px); background: rgba(255, 255, 255, 0.05); }
.card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 25px; display: block; }

/* --- STAFF SECTION (ABOUT) --- */
.staff-section { padding: 160px 5% 100px; text-align: center; }
.staff-title { font-family: 'Syne'; font-size: clamp(3rem, 8vw, 5rem); margin-bottom: 10px; }
.staff-subtitle { color: var(--text-dim); margin-bottom: 80px; font-weight: 600; }

.staff-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.staff-member { position: relative; width: 320px; transition: var(--transition); }

.skin-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.staff-skin {
    height: 100%;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    transition: var(--transition);
}

.skin-glow {
    position: absolute; width: 220px; height: 220px; border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 68, 108, 0.25) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
    transition: var(--transition);
}

.staff-member:hover .staff-skin { transform: translateY(-15px) scale(1.05); }
.staff-member:hover .skin-glow { background: radial-gradient(circle, rgba(236, 68, 108, 0.4) 0%, transparent 70%); width: 280px; height: 280px; }

.tag {
    display: inline-block; font-size: 0.65rem; font-weight: 900; padding: 6px 16px;
    background: var(--accent); border-radius: 50px; text-transform: uppercase; margin-bottom: 10px;
}

.staff-name { font-family: 'Syne'; font-size: 2.2rem; margin-top: 5px; }
.staff-role { color: var(--text-dim); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

/* --- FANCY FOOTER --- */
.fancy-footer {
    padding: 80px 5% 50px;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, transparent, rgba(236, 68, 108, 0.03));
    text-align: center;
}

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 30px; }

/* FIX FOR HUGE LOGO */
.footer-logo img { 
    height: 50px; 
    width: auto; 
    display: block;
    transition: 0.3s;
}
.footer-logo img:hover { filter: drop-shadow(0 0 15px var(--accent)); transform: scale(1.05); }

/* FIX FOR COOKED ICONS */
.footer-socials { display: flex; gap: 15px; justify-content: center; align-items: center; }

.social-btn {
    text-decoration: none; color: white; font-weight: 900; font-size: 0.8rem; padding: 12px 24px;
    background: var(--glass); border: 1px solid var(--glass-border); border-radius: 100px; 
    display: inline-flex; align-items: center; gap: 10px; transition: 0.3s;
}
.social-btn i { font-size: 1.1rem; color: white; } /* Ensures icons are visible and sized */
.social-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

.footer-divider { width: 60px; height: 2px; background: var(--glass-border); border-radius: 2px; }

.footer-info { line-height: 1.8; }
.copyright-text { font-size: 0.9rem; font-weight: 600; color: white; }
.separator { color: var(--accent); margin: 0 8px; }
.disclaimer { color: var(--text-dim); }
.rights-text { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-top: 10px; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    header { width: 92%; top: 15px; }
    .nav-container { padding: 8px 20px; border-radius: 50px; }
    
    .menu-toggle { display: block; }
    
    .navigation {
        position: absolute; top: 70px; left: 0; right: 0;
        background: rgba(15, 15, 20, 0.95); backdrop-filter: blur(20px);
        flex-direction: column; padding: 20px; gap: 10px;
        border-radius: 25px; border: 1px solid var(--g
