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

body {
    font-family: 'Poppins', sans-serif;
    background: #000000 !important;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    background: #000000;
    border-radius: 8px;
    padding: 60px 40px;
    border: 1px solid #1a1a1a;
    max-width: 800px;
    margin: 0 auto;
}


.logo {
    margin-bottom: 40px;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0;
}

.logo-text .accent {
    color: #ffffff;
    opacity: 0.9;
}

.message {
    margin-bottom: 50px;
}

.main-message {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sub-message {
    font-size: 1.2rem;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.star {
    font-size: 2rem;
    color: #ffffff;
    opacity: 0.6;
}

.footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

.footer p {
    color: #888888;
    font-size: 0.85rem;
    font-weight: 300;
}

/* Language Switcher */
.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lang-switcher a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 14px;
    background: #1a1a1a;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border: 1px solid #2a2a2a;
}

.lang-switcher a:hover {
    background: #2a2a2a;
    border-color: #3a3a3a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .main-message {
        font-size: 2rem;
    }
    
    .sub-message {
        font-size: 1.1rem;
    }
    
    .star {
        font-size: 1.5rem;
    }
    
    .stars {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 15px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .main-message {
        font-size: 1.5rem;
    }
    
    .sub-message {
        font-size: 1rem;
    }
    
    .lang-switcher {
        top: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .lang-switcher a {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

