/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 5%; background: rgba(255,255,255,0.95);
    position: sticky; top: 0; z-index: 1000;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: bold; font-size: 20px; color: var(--primary-gold); }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; }
.nav-btn {
    background: var(--primary-gold); color: white; padding: 10px 20px;
    border-radius: 30px; text-decoration: none; font-size: 14px; font-weight: bold;
    transition: 0.3s;
}
.nav-btn:hover { background: var(--dark-gold); transform: translateY(-2px); }

/* --- HERO SECTION --- */
.hero {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    padding: 60px 5%; min-height: 90vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white; position: relative; overflow: hidden;
}
/* Gold Dust Effect */
.hero::before {
    content: ''; position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    background-image: radial-gradient(var(--primary-gold) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.1;
}

.hero-text { flex: 1; min-width: 300px; padding-right: 20px; z-index: 1; }
.hero-text h1 { font-size: 3rem; line-height: 1.6; margin-bottom: 20px; background: linear-gradient(to right, #fff, #ffd700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text p { font-size: 1.1rem; color: #ccc; margin-bottom: 30px; }

.download-badge {
    display: inline-flex; align-items: center; gap: 15px;
    background: #000; border: 1px solid #444; border-radius: 10px;
    padding: 10px 20px; text-decoration: none; color: white; transition: 0.3s;
}
.download-badge:hover { border-color: var(--primary-gold); box-shadow: 0 0 15px rgba(184, 134, 11, 0.4); }
.download-badge i { font-size: 28px; color: var(--primary-gold); }
.badge-text span { display: block; font-size: 10px; color: #aaa; }
.badge-text strong { font-size: 16px; }
.offline-note { font-size: 12px; margin-top: 10px; opacity: 0.7; }

.hero-img { flex: 1; min-width: 300px; text-align: center; position: relative; z-index: 1; }
.hero-img img { 
    max-width: 100%; height: auto; 
    filter: drop-shadow(0 10px 30px rgba(184, 134, 11, 0.3)); 
    animation: float 4s ease-in-out infinite;
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }