/* ============================================
   HOMEPAGE REDESIGN (2026-02)
   ============================================ */

/* Righteous title styling */
.site-title-righteous {
    font-family: 'Righteous', system-ui, sans-serif;
    letter-spacing: 0.15em;
    color: #8B5CF6;
}

.site-title-righteous .dot {
    opacity: 0.7;
}

/* Social links grid wrapper — glass card for visual weight */
.social-links-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 20px;
    padding: 24px 20px 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Social link buttons */
.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 12px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #94a3b8;
}

.social-circle:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    color: white;
}

.social-circle svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.social-circle span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.social-circle-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* CTA glow effect */
.cta-btn {
    position: relative;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Video container */
.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: #000;
    cursor: pointer;
    box-shadow: 0 8px 40px rgba(139, 92, 246, 0.12), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.video-container video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: rgba(167, 139, 250, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
    margin-left: 4px;
}

.video-container.playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* Login modal */
.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.login-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.login-modal {
    background: #0F172A;
    border: 1px solid rgba(75, 85, 99, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.login-modal-overlay.active .login-modal {
    transform: scale(1);
}

.login-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #9CA3AF;
    cursor: pointer;
    padding: 4px;
}

.login-modal-close:hover {
    color: white;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .social-links-card {
        padding: 16px 12px 12px;
    }

    .social-circle {
        padding: 8px 6px;
    }

    .social-circle svg {
        width: 30px;
        height: 30px;
    }

    .social-circle span {
        font-size: 9px;
    }

    .social-circle-img {
        width: 34px;
        height: 34px;
    }
}
