* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(180deg, #07111f, #0a1830, #08101d);
    color: white;
}

/* Top Header */
.topbar {
    text-align: center;
    padding: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    background: #05101c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(7, 18, 30, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-links a:hover {
    color: #57c8ff;
}

/* Dropdown */
.dropdown {
    position: relative;
}

/* invisible hover bridge */
.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 14px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: #0d1b2b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 8px 0;
    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.22s ease;

    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    z-index: 999;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.dropdown-menu li a:hover {
    background: #13263d;
    color: #57c8ff;
}

/* Mobile */
.mobile-btn {
    display: none;
    background: none;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    background: #00aaff;
    color: white;
    padding: 14px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.alt {
    background: #18283d;
}

/* Sections */
.section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 24px;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    max-width: 800px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Carousel */
.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-top: 10px;
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
    background: #1d3b57;
    border-radius: 20px;
}

.card {
    min-width: 360px;
    background: #0e1b2b;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.card iframe {
    width: 100%;
    height: 220px;
    border: none;
}

/* YouTube */
.youtube-box {
    background: #0e1b2b;
    padding: 18px;
    border-radius: 18px;
}

.youtube-box iframe {
    width: 100%;
    height: 520px;
    border: none;
    border-radius: 12px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #07111f;
        padding: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-btn {
        display: block;
    }

    .youtube-box iframe {
        height: 280px;
    }

    .card {
        min-width: 300px;
    }
}

/* Legal / Privacy Page Styling */
.legal {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Fix lists */
.legal ul {
    margin: 16px 0 24px 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.legal li {
    margin-bottom: 10px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Headings spacing */
.legal h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Date */
.legal-date {
    opacity: 0.6;
    margin-bottom: 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 20, 35, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    width: 90%;
    max-width: 520px;
    z-index: 2000;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.styled-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 45px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
