#youtube-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

#youtube-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

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

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #FF9F1C;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.social-btn:hover {
    transform: translateY(-2px);
    background: #E71D36;
}

.social-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Add these modal-specific styles */
#socialModal .modal-content {
    max-width: 400px;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

#socialModal h2 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
}

#socialModal .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
}

#socialModal .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}

#socialModal .social-btn.discord-btn {
    background: #5865F2;
    color: white;
}

#socialModal .social-btn.group-btn {
    background: #FF9F1C;
    color: white;
}

#socialModal .social-btn:hover {
    transform: translateY(-2px);
    filter: brightness(110%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#socialModal .social-btn i {
    margin-right: 10px;
    font-size: 1.3rem;
} 