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

body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #222;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111827;
    color: white;
    padding: 16px 30px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px;
}

.menu li {
    position: relative;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.dropdown-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: white;
    min-width: 180px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    color: #222;
    padding: 12px 16px;
}

.dropdown-menu a:hover {
    background: #f0f0f0;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 18px;
    border-radius: 8px;
    background: #374151;
    color: white;
    text-decoration: none;
}

.btn-primary {
    background: #2563eb;
}

.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 24px;
}

.hero button {
    padding: 14px 22px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: white;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.form-page {
    display: flex;
    justify-content: center;
    padding-top: 60px;
}

.auth-form {
    background: white;
    width: 400px;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.auth-form h2 {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
}

.auth-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.auth-form button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
}

.coming-soon {
    text-align: center;
    padding: 120px 20px;
}

.coming-soon h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.coming-soon p {
    font-size: 24px;
    color: #666;
}

.mobile-toggle {
    display: none;
    background: transparent;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #111827;
        padding: 20px;
    }

    .navbar.active {
        display: block;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        margin-top: 10px;
        width: 100%;
    }
}
