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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #0E0D0D;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
}

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

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.coming-soon {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
}

.logo-container {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 4rem;
    font-weight: 700;
    color: #7ba89a;
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

.tagline {
    font-size: 1.125rem;
    font-weight: 400;
    color: #ffffff;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.social-section {
    margin-top: 4rem;
}

.follow-text {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    width: 32px;
    height: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: #7ba89a;
    transform: translateY(-3px);
}

.social-link svg {
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }
    
    .logo-container {
        width: 150px;
        height: 150px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 0.75rem;
    }
    
    .social-section {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.25rem;
    }
    
    .logo-container {
        width: 120px;
        height: 120px;
    }
    
    .tagline {
        font-size: 0.9375rem;
    }
    
    .social-icons {
        gap: 1.5rem;
    }
    
    .social-link {
        width: 28px;
        height: 28px;
    }
}

