/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0c0c0c;
    /* Very dark background */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 1rem 1.5rem 2rem;
    /* Adjusted top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Language Switcher */
.lang-switcher {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 2rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.6;
    cursor: pointer;
    outline: none;
}

.lang-btn:hover {
    opacity: 1;
    border-color: #28a745;
}

.lang-btn.active {
    opacity: 1;
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
    font-weight: 600;
}

/* Header & Logo */
.header {
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    /* Adjust based on preference */
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    /* Adds depth */
}

/* Content Area */
.content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.main-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    color: #ffffff;
}

.subtitle-group {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tagline {
    margin-bottom: 0.5rem;
}

.description {
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-text {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.telegram-button {
    background-color: #28a745;
    /* Green color */
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    /* Slightly rounded corners */
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.telegram-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.telegram-button:active {
    transform: translateY(0);
}

.telegram-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    fill: #ffffff;
}

/* Footer Separator */
.footer {
    width: 100%;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.separator {
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #333, transparent);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    /* Logo text styles removed */

    .main-title {
        font-size: 1.5rem;
    }

    .telegram-button {
        max-width: 400px;
    }
}