/* =========================
   SOCIAL PAGE
========================= */

.social-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #05070a;
}

.social-page::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image: url("../../sprites/timmy_social_bkg.png");
    background-size: cover;
    background-position: center;

    opacity: 0.55;

    z-index: 0;
}

.social-main {

    margin: 0;
    padding: 0;
    position: relative;
    z-index: 5;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 40px;
}

.social-content {
    width: 100%;
    max-width: 1000px;

    text-align: center;
}

.social-logo {
    width: min(850px, 90vw);

    margin-bottom: 24px;

    filter:
        drop-shadow(0 0 20px rgba(46,188,255,0.45))
        drop-shadow(0 0 40px rgba(255,107,214,0.20));
}

.social-subtitle {
    font-size: 20px;

    margin-bottom: 40px;

    color: rgba(255,255,255,0.88);

    text-shadow:
        0 0 10px rgba(0,0,0,0.85);
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 24px;
}

.social-card {
    width: 220px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: white;
    font-size: 24px;

    border-radius: 24px;

    background: rgba(0,0,0,0.28);

    border: 1px solid rgba(46,188,255,0.35);

    backdrop-filter: blur(10px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.social-card:hover {
    transform: translateY(-6px) scale(1.03);

    background: rgba(46,188,255,0.14);

    border-color: rgba(46,188,255,0.9);

    box-shadow:
        0 0 20px rgba(46,188,255,0.45),
        inset 0 0 16px rgba(46,188,255,0.10);
}

.social-card {
    width: 220px;
    height: 160px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 14px;

    text-decoration: none;

    color: white;
    font-size: 24px;

    border-radius: 24px;

    background: rgba(0,0,0,0.28);

    border: 1px solid rgba(46,188,255,0.35);

    backdrop-filter: blur(10px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.social-card img {
    width: 72px;
    height: 72px;

    object-fit: contain;

    filter:
        drop-shadow(0 0 10px rgba(255,255,255,0.25));
}

.social-card span {
    font-size: 22px;

    text-shadow:
        0 0 8px rgba(0,0,0,0.85);
}