/* social-panel.css */
.social-panel {
    background-color: #222;
    padding: 30px 0;
    margin: 50px 0 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.social-panel-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-text-container {
    margin-bottom: 25px;
}

.social-text {
    font-size: 1.3em;
    color: #ffcc00;
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
}

.social-subtext {
    font-size: 1em;
    color: #ddd;
    display: block;
    line-height: 1.5;
}

.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    min-width: 160px;
    justify-content: center;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-link i {
    font-size: 1.2em;
}

.social-link.vk {
    border-color: #4a76a8;
}

.social-link.vk:hover {
    background-color: rgba(74, 118, 168, 0.15);
}

.social-link.tg {
    border-color: #2AABEE;
}

.social-link.tg:hover {
    background-color: rgba(42, 171, 238, 0.15);
}

.contest-terms {
    margin-top: 10px;
}

.terms-link {
    color: #aaa;
    font-size: 0.9em;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dashed #555;
    padding-bottom: 2px;
}

.terms-link:hover {
    color: #ffcc00;
    border-bottom-color: #ffcc00;
}

/* Адаптация */
@media (max-width: 600px) {
    .social-text {
        font-size: 1.1em;
    }
    
    .social-subtext {
        font-size: 0.9em;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        padding: 10px 20px;
        min-width: 140px;
    }
}