.video-link-container {
    margin: 15px 0 30px;
    text-align: center;
}

.video-link {
    display: inline-flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.video-link:hover {
    background-color: #f0f0f0;
    box-shadow: 0 0 15px rgba(250, 203, 0, 0.2);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.youtube-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.back-link {
    margin-top: 30px;
    text-align: center;
}

.tertiary-btn {
    background-color: #f5f5f5;
    color: #333;
}

.tertiary-btn:hover {
    background-color: #ebebeb;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.footer-channels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.footer-channel {
    color: var(--contrast-color);
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.footer-channel::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--contrast-color);
    transition: width 0.3s ease;
}

.footer-channel:hover::after {
    width: 100%;
} 