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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    margin-bottom: 0.5rem;
}

header h1 a {
    color: inherit;
    text-decoration: none;
}

.tagline {
    font-size: 1.1rem;
    color: #888;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.coming-soon {
    text-align: center;
}

.coming-soon h2 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #aaa;
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.newsletter h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.newsletter form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #1a1a2e;
    color: #fff;
    font-size: 1rem;
}

.newsletter input[type="email"]:focus {
    outline: none;
    border-color: #ffd700;
}

.newsletter button {
    padding: 0.75rem 1.5rem;
    background: #ffd700;
    color: #1a1a2e;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter button:hover {
    background: #ffed4a;
}

.newsletter button:disabled {
    background: #888;
    cursor: not-allowed;
}

#form-message {
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 4px;
}

#form-message.success {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

#form-message.error {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.hidden {
    display: none;
}

/* Privacy Policy Styles */
.privacy-policy {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 2rem;
}

.privacy-policy h2 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.privacy-policy .last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.privacy-policy section {
    margin-bottom: 2rem;
}

.privacy-policy h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.25rem;
}

.privacy-policy h4 {
    color: #ccc;
    margin: 1rem 0 0.5rem;
}

.privacy-policy ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-policy li {
    margin-bottom: 0.25rem;
}

footer {
    text-align: center;
    padding: 2rem 0;
    color: #666;
}

footer nav {
    margin-bottom: 0.5rem;
}

footer a {
    color: #888;
    text-decoration: none;
}

footer a:hover {
    color: #ffd700;
}

@media (max-width: 600px) {
    .newsletter form {
        flex-direction: column;
    }

    header h1 {
        font-size: 2rem;
    }

    .coming-soon h2 {
        font-size: 2rem;
    }
}
