/* #region General */

@font-face {
    font-family: "Satoshi";
    src:
        url("../fonts/satoshi/Satoshi-Black.woff2") format("woff2"),
        url("../fonts/satoshi/Satoshi-Black.woff") format("woff");
    font-style: normal;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: "Satoshi", Arial, sans-serif;
    background: #ececec;
    color: #000;
}

body {
    background: transparent;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

/* main {
    flex: 1;
    width: 1200px;
    margin: 0 auto;
    /* padding: 20px;
} */

#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    filter: blur(2px);
}

.page-container {
    display: flex;
}

.content-area {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
}


h1, h2, h3, p {
    text-align: center;
}


h1 {
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    color: #000;
}

h2 {
    margin: 48px 0 16px;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: #000;
}


hr {
    /* width: 100%; */
    border: none;
    height: 2px;
    margin: 48px auto;
    background: linear-gradient(
        to right,
        transparent,
        #bbb,
        transparent
    );
}

.site-footer hr {
    width: 25%;
    margin-bottom: 12px;
}

/* #endregion */


/* #region Header */

.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(180deg, rgba(236, 236, 236, 1), rgba(236, 236, 236, 0));
    backdrop-filter: blur(0px);
}

.navbar {
    display: flex;
    justify-content: flex-end;
    padding: 12px 24px;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;

    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.25s ease, color 0.25s ease;

    will-change: transform;
}

.nav-link:hover {
    background: rgba(236, 236, 236, 0.8);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    color: #000;
    transform: scale(1.02);
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

/* Keep Watch highlighted while hovering over dropdown */
.nav-dropdown:hover > .nav-link {
    background: rgba(236, 236, 236, 0.8); /* same hover as navbar */
    color: #000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    border-radius: 6px 6px 0 0; /* top-left, top-right rounded, bottom corners flat */
}

.nav-dropdown .dropdown-content {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(236,236,236,0.95);
    backdrop-filter: blur(5px);
    border-radius: 6px 0 6px 6px; /* top corners flat, bottom corners rounded */
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    pointer-events: auto;
}

.nav-dropdown .dropdown-content .nav-link {
    padding: 10px 16px;
    margin: 0;
    display: block;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-dropdown .dropdown-content .nav-link:hover {
    background: rgba(236, 236, 236, 0.8); /* same as main navbar */
    color: #000;                           /* same text color change */
    box-shadow: 0 6px 18px rgba(0,0,0,0.1); /* same shadow */
    transform: scale(1.02);
}

/* #endregion */


.back-button {
    display: inline-block;
    margin: 0 0 20px 20px;
    text-decoration: none;
    font-size: 1rem;
    color: #000;
    font-weight: 600;
}


/* #region Footer */

.site-footer {
    width: 100%;
    z-index: 999;
    background: linear-gradient(0deg, rgba(236, 236, 236, 1), rgba(236, 236, 236, 0));
    backdrop-filter: blur(0px);
    margin-bottom: 12px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    padding: 4px;
    gap: 8px; /* space between text and icon */
}

/* .footer p {
    color: #333;
    margin-top: 8px;
} */

.footer p {
    color: #333;
    margin: 0;              /* remove default top/bottom margin */
    padding-bottom: 12px;
    line-height: 1;         /* tighten text box */
    display: flex;          /* helps perfect centering */
    align-items: center;
}

.yt-icon {
    padding-bottom: 12px;

    width: 20px;
    height: auto;
    display: block;

    transition: transform 0.3s ease;
    will-change: transform;
}

.yt-link:hover .yt-icon {
    transform: scale(1.2);
}

.yt-bg {
    fill: #333;
    transition: fill 0.3s ease;
}

.yt-link:hover .yt-bg {
    fill: #000;
}

.yt-play {
    fill: #fff;
}

/* #endregion */
