/* contact-links.css -- shared "connect with us" link styling for the
   Contact / About Us / Privacy Policy / Terms of Service / DMCA pages.
   Same dark-glass-card + accent language as comment.css, just themed
   per brand (Facebook/Discord/YouTube/TikTok/Email/Website) so social
   and contact links inside the page body actually read as clickable
   buttons instead of plain blue underlined text. */

/* ---- row of big pill buttons (replaces bare <ul><li><a>) ---- */
.connect-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 14px 0 22px;
    list-style: none;
    padding: 0;
}

.connect-links li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.connect-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(20, 22, 40, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f0f1fa !important;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.connect-link i,
.connect-link svg {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.connect-link:hover,
.connect-link:focus-visible {
    transform: translateY(-3px);
    color: #fff !important;
    text-decoration: none !important;
    outline: none;
}

/* brand accents -- icon + hover glow tinted per platform, card itself
   stays dark so the row reads as one consistent set of buttons */
.connect-link--facebook i { color: #1877f2; }
.connect-link--facebook:hover { border-color: #1877f2; box-shadow: 0 10px 26px rgba(24, 119, 242, 0.35); }

.connect-link--discord i { color: #5865f2; }
.connect-link--discord:hover { border-color: #5865f2; box-shadow: 0 10px 26px rgba(88, 101, 242, 0.35); }

.connect-link--youtube i { color: #ff0000; }
.connect-link--youtube:hover { border-color: #ff0000; box-shadow: 0 10px 26px rgba(255, 0, 0, 0.3); }

.connect-link--tiktok i { color: #ffffff; text-shadow: -1px -1px 0 #ff0050, 1px 1px 0 #00f2ea; }
.connect-link--tiktok:hover { border-color: #ffffff; box-shadow: 0 10px 26px rgba(255, 255, 255, 0.18); }

.connect-link--email i { color: #ec6090; }
.connect-link--email:hover { border-color: #ec6090; box-shadow: 0 10px 26px rgba(236, 96, 144, 0.35); }

.connect-link--website i { color: #34d1bf; }
.connect-link--website:hover { border-color: #34d1bf; box-shadow: 0 10px 26px rgba(52, 209, 191, 0.3); }

/* ---- inline badge for a link mentioned mid-sentence ---- */
.connect-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px 2px 8px;
    margin: 0 1px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
    vertical-align: middle;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.connect-inline i {
    font-size: 14px;
}

.connect-inline:hover,
.connect-inline:focus-visible {
    transform: translateY(-1px);
    text-decoration: none !important;
}

.connect-inline--facebook i { color: #1877f2; }
.connect-inline--facebook:hover { border-color: #1877f2; }

.connect-inline--discord i { color: #5865f2; }
.connect-inline--discord:hover { border-color: #5865f2; }

.connect-inline--email i { color: #ec6090; }
.connect-inline--email:hover { border-color: #ec6090; }

.connect-inline--website i { color: #34d1bf; }
.connect-inline--website:hover { border-color: #34d1bf; }

@media (max-width: 575px) {
    .connect-links {
        gap: 10px;
    }

    .connect-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}
