html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a2e;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(26, 26, 46, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00f2fe;
    text-shadow: 0 0 10px #00f2fe;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #00f2fe;
    text-shadow: 0 0 8px #00f2fe;
}

section {
    padding: 120px 0 60px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-section {
    text-align: center;
    background: radial-gradient(circle, #16213e 0%, #1a1a2e 100%);
}

.logo {
    width: 200px;
    filter: drop-shadow(0 0 15px #00f2fe);
    margin-bottom: 20px;
}

.neon-text {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 10px #00f2fe, 0 0 20px #00f2fe, 0 0 30px #00f2fe;
    margin: 10px 0;
}

.store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.store-link {
    display: flex;
    align-items: center;
    height: 48px;
}

.store-link img {
    height: 100%;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 25px;
    background: transparent;
    color: #00f2fe;
    border: 2px solid #00f2fe;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 0 10px #00f2fe;
    transition: 0.4s;
    font-size: 0.85rem;
    box-sizing: border-box;
}

.store-link:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px #00f2fe);
}

.download-btn:hover {
    background: #00f2fe;
    color: #1a1a2e;
    box-shadow: 0 0 25px #00f2fe;
}

.content-section {
    text-align: center;
    color: white;
}

footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(0, 242, 254, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}