/* Firefox */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar {
    display: none;
}

:root {
    /* Brand Colors */
    --color-primary: rgb(255, 70, 220);

    /* Social Media Colors */
    --color-twitch: rgb(170, 100, 255);
    --color-youtube: rgb(255, 55, 55);
    --color-tiktok: rgb(0, 255, 220);
    --color-instagram: rgb(255, 75, 190);
    --color-facebook: rgb(80, 150, 255);
    --color-website: rgb(0, 190, 255);
    --color-shop: rgb(0, 255, 160);
    --color-discord: rgb(120, 135, 255);
    --color-disabled: rgb(180, 180, 190);

    /* Border Radius */
    --radius-page: 36px;
    --radius-card: 26px;
    --radius-round: 999px;
}

* {
    box-sizing: border-box;
}

/*-------------------------------------------------------------------------------------------------*/
/* Body */
/*-------------------------------------------------------------------------------------------------*/
body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--site-text-color);
    background: var(--site-body-background);
}

/*-------------------------------------------------------------------------------------------------*/
/* Header */
/*-------------------------------------------------------------------------------------------------*/
header {
    height: 50vh;
    width: 100%;
    /*max-width: 1000px;*/
    padding: 0px;
    margin: 0px;
}

header #header-background-image {
    display: flex;
    width: 100%;
    height: 100%;
}

header #header-background-image .bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    align-items: center;
    background-repeat: no-repeat;
}

header #header-heading {
    text-align: center;
    color: black;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%);
}

header #header-heading h1 {
    margin-top: 40px;
    padding-top: 0px;
}

/*-------------------------------------------------------------------------------------------------*/
/* Navigation top and navigation top hamburger menu in different css files */
/*-------------------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------------------*/
/* Main content */
/*-------------------------------------------------------------------------------------------------*/
main {
    max-width: 1100px;
    margin: 150px auto 60px auto;
    padding: 24px;
    
}

.social-link-page {
    border-radius: var(--radius-page);
    padding: 38px;
    background: var(--social-page-background);
    border: 1px solid var(--social-page-border);
    box-shadow: var(--social-page-shadow);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.social-link-page h1 {
    margin: 0px;
    text-align: center;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    color: var(--site-text-color);
    background:
        var(--site-heading-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        var(--site-heading-glow);
}

.social-link-page-subtitle {
    max-width: 720px;
    margin: 16px auto 36px auto;
    text-align: center;
    color: var(--site-text-color);
    opacity: 0.82;
    font-size: 1.15rem;
}

.social-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.social-link-card {
    position: relative;
    overflow: hidden;
    min-height: 86px;
    padding: 20px 22px;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    font-weight: 800;
    color: var(--site-text-color);
    background: var(--card-highlight-color);
    border: 1px solid var(--social-page-border);
    box-shadow: var(--card-default-shadow);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.social-link-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.social-link-card:hover::before {
    transform: translateX(120%);
}

.social-link-card:hover {
    transform: scale(1.035);
    border-color: currentColor;
    box-shadow:
        0 0 18px currentColor,
        0 16px 30px rgba(0, 0, 0, 0.35);
}

.social-link-card i {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5rem;
    color: currentColor;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.08);
}

.social-link-card span {
    position: relative;
    z-index: 1;
}

.social-link-card.twitch {
    color: var(--color-twitch);
}

.social-link-card.youtube {
    color: var(--color-youtube);
}

.social-link-card.tiktok {
    color: var(--color-tiktok);
}

.social-link-card.instagram {
    color: var(--color-instagram);
}

.social-link-card.facebook {
    color: var(--color-facebook);
}

.social-link-card.website {
    color: var(--color-website);
}

.social-link-card.shop {
    color: var(--color-shop);
}

.social-link-card.discord,
.social-link-card.irlverse {
    color: var(--color-discord);
}

.social-link-card.disabled {
    color: var(--color-disabled);
    opacity: 0.65;
    pointer-events: none;
    cursor: default;
}

/*-------------------------------------------------------------------------------------------------*/
/* Footer */
/*-------------------------------------------------------------------------------------------------*/
footer {
    margin: 0px;
    padding: 10px;
    z-index: 1002;
}

footer p {
    margin: 0px;
    padding-top: 10px;
}

footer a {
    color: var(--site-text-color);
}

/*-------------------------------------------------------------------------------------------------*/
/* Media screens */
/*-------------------------------------------------------------------------------------------------*/

@media screen and (max-width: 600px) {
    * {
        font-size: 1em;
    }

    #top-nav-mobile ul li a {
        margin: 0px;
    }

    header {
        height: 30vh;
    }

    header #header-background-image {
        background-image: url("../../media/images/images-banner/image-snail-flames.png");
        background-size: cover;
        height: 30vh;
    }

    header #header-heading {
        top: 22%;
        white-space: nowrap;
    }

    main {
        margin-top: 30px;
        padding: 18px;
    }

    .social-link-page {
        padding: 28px;
    }

    .social-link-card {
        align-items: center;
        justify-content: center;
        vertical-align: center;
        width: 240px
    }
}