/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
    flex-shrink: 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    max-width: 300px;
    margin: 0 auto;
}

.logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
}

.logo a img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
}

/* Main Content */
main {
    flex: 1 0 auto;
    padding: 2rem 1rem;
}

main.coming-soon {
    display: block;
}

main.legal-page {
    display: block;
}

.content {
    max-width: 1200px;
    width: 100%;
}

/* Coming Soon Page */
.coming-soon .content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.coming-soon h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.notify-section {
    margin-bottom: 4rem;
}

.notify-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Feature Boxes */
.countdown-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-box .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: var(--light-text);
    font-size: 1rem;
}

/* Legal Pages */
.legal-page {
    display: block;
}

.legal-page .content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.last-updated {
    color: var(--light-text);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-page section {
    margin-bottom: 2rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-page h4 {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-page strong {
    font-weight: 600;
    color: var(--text-color);
}

/* Contact Form Styles */
.contact-form-container {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: var(--light-text);
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Footer */
footer {
    padding: 2rem 1rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: auto;
}

.footer-content {
    color: white;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-nav .separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        max-width: 180px;
    }

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

    .tagline {
        font-size: 1rem;
    }

    .legal-page .content {
        padding: 2rem 1.5rem;
    }

    .legal-page h2 {
        font-size: 2rem;
    }

    .legal-page h3 {
        font-size: 1.25rem;
    }

    .countdown-placeholder {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1.5rem 1rem;
    }

    .logo img {
        max-width: 140px;
    }

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

    .legal-page .content {
        padding: 1.5rem 1rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 1rem;
    }
}
