/* Premium social media buttons page */

.social-page {
    padding-top: 90px;
    padding-bottom: 80px;
}

.social-hero {
    max-width: 980px;
    margin: 0 auto;
}

.social-surface {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
}

.social-surface::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 0% 0%, rgba(59, 130, 246, 0.22), transparent 60%),
        radial-gradient(900px 500px at 100% 0%, rgba(236, 72, 153, 0.18), transparent 62%),
        radial-gradient(900px 500px at 50% 100%, rgba(34, 197, 94, 0.14), transparent 60%);
    pointer-events: none;
}

.social-surface__inner {
    position: relative;
    padding: 28px;
}

.social-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--text);
}

.social-subtitle {
    margin-top: 10px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.social-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (min-width: 900px) {
    .social-surface__inner {
        padding: 34px;
    }

    .social-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.16);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    -webkit-tap-highlight-color: transparent;
}

body[data-theme="dark"] .social-btn {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.44);
}

.social-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.30), rgba(255,255,255,0.06), rgba(255,255,255,0.0));
    transform: translateX(-120%) skewX(-20deg);
    transition: transform 520ms ease;
    pointer-events: none;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.22);
    filter: saturate(1.05);
}

.social-btn:hover::before {
    transform: translateX(120%) skewX(-20deg);
}

.social-btn:active {
    transform: translateY(0px) scale(0.99);
}

.social-btn__icon {
    font-size: 1.25rem;
    line-height: 1;
}

.social-btn__label {
    font-size: 0.98rem;
}

.social-btn--facebook { background: linear-gradient(135deg, #1877F2 0%, #0f4fd6 100%); }
.social-btn--youtube { background: linear-gradient(135deg, #FF0033 0%, #b3001f 100%); }
.social-btn--instagram { background: radial-gradient(circle at 20% 110%, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 75%, #4f5bd5 100%); }
.social-btn--tiktok { background: linear-gradient(135deg, #111827 0%, #0b1220 100%); }

.social-btn--tiktok .social-btn__icon {
    text-shadow:
        -1px -1px 0 rgba(37, 244, 238, 0.85),
        1px 1px 0 rgba(254, 44, 85, 0.85);
}

.social-footer-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}
