* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0f1419;
    color: #ffffff;
    line-height: 1.6;
}

.construction-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.construction-content {
    max-width: 1200px;
    width: 100%;
}

.brand-section {
    text-align: center;
    margin-bottom: 60px;
}

.brand-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
}

.brand-title {
    font-size: 3rem;
    font-weight: 700;
    color: #00d9ff;
    letter-spacing: -0.5px;
}

.info-section {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.main-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.main-description {
    font-size: 1.1rem;
    color: #8b9cb6;
    margin-bottom: 30px;
    line-height: 1.7;
}

.status-section {
    display: flex;
    justify-content: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    color: #00d9ff;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00d9ff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-5px);
}

.feature-header {
    margin-bottom: 20px;
}

.feature-header svg {
    width: 40px;
    height: 40px;
    color: #00d9ff;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #8b9cb6;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #00d9ff;
    color: #00d9ff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    background: #00d9ff;
    color: #0f1419;
}

@media (max-width: 768px) {
    .brand-logo {
        width: 90px;
        height: 90px;
    }
    
    .brand-title {
        font-size: 2.2rem;
    }
    
    .main-heading {
        font-size: 1.4rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .construction-container {
        padding: 20px 15px;
    }
    
    .brand-title {
        font-size: 1.8rem;
    }
    
    .main-heading {
        font-size: 1.2rem;
    }
    
    .btn-back {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}