:root {
    --primary-green: #4CAF50;
    --dark-bg-1: rgb(26, 51, 51);
    --dark-bg-2: rgb(13, 26, 26);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom, var(--dark-bg-1), var(--dark-bg-2));
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(76, 175, 80, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.description {
    font-size: 1.25rem;
    color: #CCC;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    min-width: 150px;
}

.feature .icon {
    font-size: 2rem;
}

.coming-soon {
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 500;
}

.legal-footer {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 1rem;
    color: #666;
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Legal Pages Styles */
.legal-container {
    max-width: 1000px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.legal-nav {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 2rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.legal-content {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    margin: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.legal-date {
    color: #999;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #CCC;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #CCC;
}

.legal-section a {
    color: var(--primary-green);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature {
        width: 100%;
    }

    .legal-content {
        margin: 1rem;
        padding: 1rem;
    }

    .legal-nav {
        margin: 1rem;
        margin-top: 1rem;
    }

    .legal-footer {
        margin: 1rem;
        margin-bottom: 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }
}