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

:root {
    --primary-green: #4caf50;
    --primary-light: #66bb6a;
    --primary-dark: #388e3c;
    --background: #ffffff;
    --text-primary: #2e2e2e;
    --text-secondary: #6b7280;
    --border-light: rgba(76, 175, 80, 0.2);
    --hover-bg: rgba(76, 175, 80, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 28rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    text-align: center;
}

.logo {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    background: var(--primary-green);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    position: relative;
}

.logo {
    background-image: url("../logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.logo::after {
    content: "✓";
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary-dark);
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.brand-name {
    color: var(--primary-green);
}

.coming-soon {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    max-width: 20rem;
    margin: 0 auto 0.5rem;
    height: 0.5rem;
    background: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: var(--primary-green);
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Footer */
.footer {
    padding: 0 1rem 2rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: var(--background);
    border: 1px solid var(--border-light);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    background: var(--hover-bg);
    border-color: rgba(76, 175, 80, 0.4);
    transform: translateY(-1px);
}

/* Language Toggle */
.language-toggle {
    position: relative;
}

.language-btn {
    min-width: 5rem;
    justify-content: space-between;
}

.dropdown-icon {
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.dropdown-icon.rotated {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.5rem;
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 6rem;
    z-index: 50;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

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

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem;
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.875rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background: var(--hover-bg);
}

/* Responsive Design */
@media (min-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

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

    .subtitle {
        font-size: 1.25rem;
    }

    .logo {
        width: 7rem;
        height: 7rem;
    }

    .logo::before {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 3.75rem;
    }

    .coming-soon {
        font-size: 2.25rem;
    }
}
