* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #121212, #1a1a1a);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.glass-container {
    width: 90%;
    max-width: 800px;
    padding: 50px;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: #4ECDC4;
    border: 1px solid rgba(78, 205, 196, 0.3);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.content-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(to right, #4ECDC4, #4A90E2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e0e0e0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(78, 205, 196, 0.2);
    color: #4ECDC4;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .glass-container {
        padding: 40px 25px;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .content-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .glass-container {
        padding: 30px 20px;
    }
    
    .coming-soon-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
}