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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0f0f13; 
    background-image: radial-gradient(circle at 50% 40%, #2e1a47 0%, #0f0f13 65%);
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    overflow: hidden; 
    position: relative;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    z-index: 10;
    opacity: 0; 
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.main-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo {
    width: 80px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

.channel-name {
    font-size: 38px;
    font-weight: 800; 
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.channel-desc {
    font-size: 22px;
    font-weight: 400; 
    color: #dadada;
    margin-bottom: 50px;
    line-height: 1.3;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
}

.action-area {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    align-items: center;
}

.telegram-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    background: linear-gradient(90deg, #2AABEE 0%, #229ED9 100%);
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;

    padding: 18px 30px; 
    width: auto; 
    min-width: 280px; 
    max-width: 100%; 
    white-space: nowrap; 

    border-radius: 16px; 

    box-shadow: 0 0 35px rgba(42, 171, 238, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.telegram-btn:hover {
    box-shadow: 0 0 50px rgba(42, 171, 238, 0.8);
    transform: translateY(-2px);
}

.telegram-btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 20px rgba(42, 171, 238, 0.4);
}

.twitch-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    background: linear-gradient(90deg, #9146FF 0%, #6441A5 100%);
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;

    padding: 18px 30px; 
    width: auto; 
    min-width: 280px; 
    max-width: 100%; 
    white-space: nowrap; 

    border-radius: 16px; 

    box-shadow: 0 0 35px rgba(145, 70, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.twitch-btn:hover {
    box-shadow: 0 0 50px rgba(145, 70, 255, 0.8);
    transform: translateY(-2px);
}

.twitch-btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 20px rgba(145, 70, 255, 0.4);
}

.youtube-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    background: linear-gradient(90deg, #ff0000 0%, #cc0000 100%);
    color: white;
    text-decoration: none;

    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;

    padding: 18px 30px; 
    width: auto; 
    min-width: 280px; 
    max-width: 100%; 
    white-space: nowrap; 

    border-radius: 16px; 

    box-shadow: 0 0 35px rgba(255, 0, 0, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.youtube-btn:hover {
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
    transform: translateY(-2px);
}

.youtube-btn:active {
    transform: scale(0.98);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

.footer {
    position: absolute;
    bottom: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3); 
    font-weight: 400;
    letter-spacing: 0.5px;

    display: flex; 
    gap: 4px;
}

.author-link {

    text-decoration: none; 
    color: inherit; 
    font-weight: inherit; 

    cursor: pointer; 
    transition: color 0.3s ease;
}

.author-link:hover {
    color: rgba(255, 255, 255, 0.6); 
}

@media (max-width: 380px) {
    .channel-name { font-size: 32px; }
    .channel-desc { font-size: 18px; margin-bottom: 40px; }
    .telegram-btn, .twitch-btn, .youtube-btn { 
        width: 100%; 
        min-width: auto;
        font-size: 14px; 
        padding: 16px 20px; 
    }
}
