/* =======================================
   SHARED SITE CSS

   EDIT THIS FILE TO CHANGE:
   - logo size
   - header height
   - menu styling
   - homepage layout
   - YouTube page
   - TikTok page
   - Facebook page
   - Stream page
   - Bio page
   - Contact page
   - Footer promo banner
======================================= */

:root {
    --header-height: 181px;        /* CHANGE: header height */
    --logo-max-height: 180px;      /* CHANGE: logo size */
    --page-bg: #000;               /* CHANGE: site background */
    --text-main: #ffffff;          /* CHANGE: main text color */
    --text-muted: #bdbdbd;         /* CHANGE: muted text color */
    --line-soft: rgba(255,255,255,0.08); /* CHANGE: border color */
    --card-bg: #0a0a0a;            /* CHANGE: card background */
    --card-bg-hover: #111111;      /* CHANGE: card hover */
    --hero-gap: 5px;               /* CHANGE: space below header */
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text-main);
    font-family: Arial, sans-serif;
}

/* =======================================
   HEADER
======================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    background: #000;
    border-bottom: 1px solid var(--line-soft);
    z-index: 1000;
}

.header a {
    text-decoration: none;
}

.header img {
    max-height: var(--logo-max-height);
    max-width: 90%;
    display: block;
}

/* =======================================
   MENU
======================================= */

.menu {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1100;
}

.menu button {
    background: #000;
    color: white;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 9px 14px;
    font-size: 18px;
    cursor: pointer;
}

.dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: #0d0d0d;
    border: 1px solid #222;
    min-width: 190px;
    text-align: left;
}

.dropdown a {
    display: block;
    padding: 12px;
    color: white;
    text-decoration: none;
}

.dropdown a:hover {
    background: #1a1a1a;
}

.menu:hover .dropdown {
    display: block;
}

/* =======================================
   PAGE CONTENT
======================================= */

.page-content {
    margin-top: calc(var(--header-height) + var(--hero-gap));
}

/* =======================================
   HERO
======================================= */

.hero-home {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.72)),
        url('img/before.jpeg'); /* CHANGE: homepage image */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* =======================================
   FOOTER LINKS
======================================= */

.home-links-section {
    padding: 28px 20px 40px;
    background: #050505;
    border-top: 1px solid #111;
}

.home-links-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-link-card {
    background: linear-gradient(to bottom, var(--card-bg), #080808);
    border: 1px solid #1c1c1c;
    padding: 22px;
    text-decoration: none;
    color: white;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.home-link-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-2px);
}

.home-link-number {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #787878;
    margin-bottom: 18px;
}

.home-link-card h2 {
    margin: 0 0 14px 0;
    font-size: 28px;
    line-height: 1.05;
}

.home-link-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* =======================================
   GENERIC PAGE
======================================= */

.page-section {
    padding: 72px 22px;
}

.page-section-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.section-kicker {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8d8d8d;
    margin-bottom: 10px;
}

.section-title {
    font-size: 34px;
    margin: 0 0 24px 0;
}

.centered-title {
    text-align: center;
}

/* =======================================
   YOUTUBE PAGE
======================================= */

.youtube-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: #0c0c0c;
    border: 1px solid #1c1c1c;
    padding: 18px;
    text-align: center;
}

.video-card-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.15;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =======================================
   TIKTOK PAGE
======================================= */

.tiktok-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.tiktok-featured {
    margin-bottom: 60px;
    text-align: center;
}

.tiktok-featured-title {
    margin: 0 0 20px 0;
    font-size: 28px;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* CHANGE: 3 per row */
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.tiktok-card {
    background: #0c0c0c;
    border: 1px solid #1c1c1c;
    padding: 18px;
    text-align: center;
}

.tiktok-card-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.15;
}

.tiktok-card .tiktok-embed {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 280px !important;
    margin: 0 auto !important;
}

/* =======================================
   FACEBOOK PAGE
======================================= */

.facebook-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.facebook-featured-title {
    margin: 0 0 20px 0;
    font-size: 28px;
}

.facebook-featured-text {
    margin-top: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.facebook-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto 60px auto;
}

.facebook-feature-card {
    text-align: center;
    max-width: 420px; /* CHANGE: reel width */
    margin: 0 auto;
}

.facebook-feature-card iframe {
    width: 100%;
    height: 650px; /* CHANGE: reel height */
    max-width: 100%;
    background: #fff;
}

.featured-main {
    position: relative;
    padding: 20px;
    border: 1px solid #2a2a2a;
    background: linear-gradient(to bottom, #0d0d0d, #080808);
    box-shadow: 0 0 25px rgba(255,255,255,0.06);
}

.featured-main:hover {
    box-shadow: 0 0 35px rgba(255,255,255,0.12);
    transform: translateY(-2px);
    transition: 0.2s ease;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ffffff;
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 4px 10px;
    font-weight: bold;
}

.facebook-latest {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.facebook-latest iframe {
    max-width: 100%;
    background: #fff;
}

/* =======================================
   STREAM PAGE
======================================= */

.stream-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.stream-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px auto;
    align-items: center;
}

.stream-hero-left {
    text-align: left;
}

.stream-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    background: #fff;
    color: #000;
}

.stream-hero-title {
    margin: 0 0 16px 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95;
}

.stream-hero-text {
    margin: 0 0 24px 0;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
}

.stream-main-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stream-main-btn {
    display: inline-block;
    padding: 14px 22px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
}

.stream-main-btn:hover {
    background: rgba(255,255,255,0.10);
}

.stream-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stream-art {
    width: 320px;          /* CHANGE: album art size */
    min-width: 320px;
    max-width: 320px;
}

.stream-art img {
    display: block;
    width: 320px;          /* CHANGE: album art size */
    height: 320px;         /* CHANGE: album art size */
    object-fit: cover;
    border: 1px solid #1c1c1c;
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.stream-card {
    background: #0c0c0c;
    border: 1px solid #1c1c1c;
    padding: 22px;
    text-align: left;
}

.stream-card-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.15;
}

.stream-card-text {
    margin: 0 0 16px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.stream-card-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 3px;
}

/* =======================================
   BIO PAGE
======================================= */

.bio-page-inner {
    max-width: 900px;
    margin: 0 auto;
}

.bio-content {
    text-align: left;
}

.bio-lead {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: white;
}

.bio-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 17px;
}

.bio-subtitle {
    margin: 50px 0 16px 0;
    font-size: 26px;
}

.bio-close {
    margin-top: 40px;
    font-size: 20px;
    color: white;
}

/* =======================================
   CONTACT PAGE
======================================= */

.contact-page-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    text-align: left;
}

.contact-lead {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.contact-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-box {
    margin: 40px 0;
    padding: 20px;
    border: 1px solid #1c1c1c;
    background: #0c0c0c;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.contact-email {
    font-size: 20px;
    color: white;
}

.contact-link {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    width: fit-content;
}

.contact-link:hover {
    border-color: white;
}

.contact-footer {
    margin-top: 40px;
    font-size: 16px;
    color: var(--text-muted);
}

/* =======================================
   FOOTER IMAGE PROMO BANNER
======================================= */

.footer-promo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.footer-promo-link {
    display: block;
}

.footer-promo-img {
    width: 100%;
    max-width: 700px;   /* CHANGE THIS */
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.25s ease;
}

.footer-promo-img:hover {
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.35);
}

/* =======================================
   MOBILE
======================================= */

@media (max-width: 1100px) {
    .stream-hero {
        grid-template-columns: 1fr;
    }

    .stream-hero-left {
        text-align: center;
    }

    .stream-main-buttons {
        justify-content: center;
    }

    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .home-links-grid,
    .video-grid,
    .tiktok-grid,
    .facebook-feature-grid,
    .stream-grid {
        grid-template-columns: 1fr;
    }
}

/* =======================================
   SHARED SITE CSS

   EDIT THIS FILE TO CHANGE:
   - logo size
   - header height
   - menu styling
   - homepage layout
   - YouTube page
   - TikTok page
   - Facebook page
   - Stream page
   - Bio page
   - Contact page
   - Footer promo banner
======================================= */

:root {
    --header-height: 181px;        /* CHANGE: header height */
    --logo-max-height: 180px;      /* CHANGE: logo size */
    --page-bg: #000;               /* CHANGE: site background */
    --text-main: #ffffff;          /* CHANGE: main text color */
    --text-muted: #bdbdbd;         /* CHANGE: muted text color */
    --line-soft: rgba(255,255,255,0.08); /* CHANGE: border color */
    --card-bg: #0a0a0a;            /* CHANGE: card background */
    --card-bg-hover: #111111;      /* CHANGE: card hover */
    --hero-gap: 5px;               /* CHANGE: space below header */
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text-main);
    font-family: Arial, sans-serif;
}

/* =======================================
   HEADER
======================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    background: #000;
    border-bottom: 1px solid var(--line-soft);
    z-index: 1000;
}

.header a {
    text-decoration: none;
}

.header img {
    max-height: var(--logo-max-height);
    max-width: 90%;
    display: block;
}

/* =======================================
   MENU
======================================= */

.menu {
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1100;
}

.menu button {
    background: #000;
    color: white;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 9px 14px;
    font-size: 18px;
    cursor: pointer;
}

.dropdown {
    display: none;
    position: absolute;
    right: 0;
    background: #0d0d0d;
    border: 1px solid #222;
    min-width: 190px;
    text-align: left;
}

.dropdown a {
    display: block;
    padding: 12px;
    color: white;
    text-decoration: none;
}

.dropdown a:hover {
    background: #1a1a1a;
}

.menu:hover .dropdown {
    display: block;
}

/* =======================================
   PAGE CONTENT
======================================= */

.page-content {
    margin-top: calc(var(--header-height) + var(--hero-gap));
}

/* =======================================
   HERO
======================================= */

.hero-home {
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    background-image:
        linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.72)),
        url('img/before.jpeg'); /* CHANGE: homepage image */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* =======================================
   FOOTER LINKS
======================================= */

.home-links-section {
    padding: 28px 20px 40px;
    background: #050505;
    border-top: 1px solid #111;
}

.home-links-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home-link-card {
    background: linear-gradient(to bottom, var(--card-bg), #080808);
    border: 1px solid #1c1c1c;
    padding: 22px;
    text-decoration: none;
    color: white;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.home-link-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-2px);
}

.home-link-number {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #787878;
    margin-bottom: 18px;
}

.home-link-card h2 {
    margin: 0 0 14px 0;
    font-size: 28px;
    line-height: 1.05;
}

.home-link-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

/* =======================================
   GENERIC PAGE
======================================= */

.page-section {
    padding: 72px 22px;
}

.page-section-inner {
    max-width: 1600px;
    margin: 0 auto;
}

.section-kicker {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8d8d8d;
    margin-bottom: 10px;
}

.section-title {
    font-size: 34px;
    margin: 0 0 24px 0;
}

.centered-title {
    text-align: center;
}

/* =======================================
   YOUTUBE PAGE
======================================= */

.youtube-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: #0c0c0c;
    border: 1px solid #1c1c1c;
    padding: 18px;
    text-align: center;
}

.video-card-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.15;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =======================================
   TIKTOK PAGE
======================================= */

.tiktok-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.tiktok-featured {
    margin-bottom: 60px;
    text-align: center;
}

.tiktok-featured-title {
    margin: 0 0 20px 0;
    font-size: 28px;
}

.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* CHANGE: 3 per row */
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.tiktok-card {
    background: #0c0c0c;
    border: 1px solid #1c1c1c;
    padding: 18px;
    text-align: center;
}

.tiktok-card-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.15;
}

.tiktok-card .tiktok-embed {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 280px !important;
    margin: 0 auto !important;
}

/* =======================================
   FACEBOOK PAGE
======================================= */

.facebook-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.facebook-featured-title {
    margin: 0 0 20px 0;
    font-size: 28px;
}

.facebook-featured-text {
    margin-top: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.facebook-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto 60px auto;
}

.facebook-feature-card {
    text-align: center;
    max-width: 420px; /* CHANGE: reel width */
    margin: 0 auto;
}

.facebook-feature-card iframe {
    width: 100%;
    height: 650px; /* CHANGE: reel height */
    max-width: 100%;
    background: #fff;
}

.featured-main {
    position: relative;
    padding: 20px;
    border: 1px solid #2a2a2a;
    background: linear-gradient(to bottom, #0d0d0d, #080808);
    box-shadow: 0 0 25px rgba(255,255,255,0.06);
}

.featured-main:hover {
    box-shadow: 0 0 35px rgba(255,255,255,0.12);
    transform: translateY(-2px);
    transition: 0.2s ease;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ffffff;
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 4px 10px;
    font-weight: bold;
}

.facebook-latest {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.facebook-latest iframe {
    max-width: 100%;
    background: #fff;
}

/* =======================================
   STREAM PAGE
======================================= */

.stream-page-inner {
    max-width: 1500px;
    margin: 0 auto;
}

.stream-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px auto;
    align-items: center;
}

.stream-hero-left {
    text-align: left;
}

.stream-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    background: #fff;
    color: #000;
}

.stream-hero-title {
    margin: 0 0 16px 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 0.95;
}

.stream-hero-text {
    margin: 0 0 24px 0;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
}

.stream-main-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stream-main-btn {
    display: inline-block;
    padding: 14px 22px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
}

.stream-main-btn:hover {
    background: rgba(255,255,255,0.10);
}

.stream-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stream-art {
    width: 320px;          /* CHANGE: album art size */
    min-width: 320px;
    max-width: 320px;
}

.stream-art img {
    display: block;
    width: 320px;          /* CHANGE: album art size */
    height: 320px;         /* CHANGE: album art size */
    object-fit: cover;
    border: 1px solid #1c1c1c;
}

.stream-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.stream-card {
    background: #0c0c0c;
    border: 1px solid #1c1c1c;
    padding: 22px;
    text-align: left;
}

.stream-card-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    line-height: 1.15;
}

.stream-card-text {
    margin: 0 0 16px 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.stream-card-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    padding-bottom: 3px;
}

/* =======================================
   BIO PAGE
======================================= */

.bio-page-inner {
    max-width: 900px;
    margin: 0 auto;
}

.bio-content {
    text-align: left;
}

.bio-lead {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: white;
}

.bio-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 17px;
}

.bio-subtitle {
    margin: 50px 0 16px 0;
    font-size: 26px;
}

.bio-close {
    margin-top: 40px;
    font-size: 20px;
    color: white;
}

/* =======================================
   CONTACT PAGE
======================================= */

.contact-page-inner {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    text-align: left;
}

.contact-lead {
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.contact-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-box {
    margin: 40px 0;
    padding: 20px;
    border: 1px solid #1c1c1c;
    background: #0c0c0c;
}

.contact-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}

.contact-email {
    font-size: 20px;
    color: white;
}

.contact-link {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    width: fit-content;
}

.contact-link:hover {
    border-color: white;
}

.contact-footer {
    margin-top: 40px;
    font-size: 16px;
    color: var(--text-muted);
}

/* =======================================
   FOOTER IMAGE PROMO BANNER
======================================= */

.footer-promo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.footer-promo-link {
    display: block;
}

.footer-promo-img {
    width: 100%;
    max-width: 700px;   /* CHANGE THIS */
    height: auto;
    display: block;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.25s ease;
}

.footer-promo-img:hover {
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.35);
}

/* =======================================
   MOBILE
======================================= */

@media (max-width: 1100px) {
    .stream-hero {
        grid-template-columns: 1fr;
    }

    .stream-hero-left {
        text-align: center;
    }

    .stream-main-buttons {
        justify-content: center;
    }

    .stream-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .home-links-grid,
    .video-grid,
    .tiktok-grid,
    .facebook-feature-grid,
    .stream-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-home {
        min-height: 60vh;
        background-size: contain;
        background-position: top center;
    }

    .desktop-only {
        display: none !important;
    }

    .stream-art {
        width: 260px;
        min-width: 260px;
        max-width: 260px;
    }

    .stream-art img {
        width: 260px;
        height: 260px;
    }
}

/* =======================================
   SOCIAL PAGE
======================================= */

.social-page-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.social-intro {
    max-width: 760px;
    margin: 0 auto 34px auto;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 18px;
    text-align: center;
}

.social-hero-banner {
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

.social-hero-banner-inner {
    border: 1px solid #1f1f1f;
    background: linear-gradient(to right, #101010, #060606);
    padding: 38px 28px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255,255,255,0.04);
}

.social-hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: bold;
    background: #fff;
    color: #000;
}

.social-hero-title {
    margin: 0 0 14px 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.95;
}

.social-hero-text {
    margin: 0 0 22px 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 17px;
}

.social-hero-button {
    display: inline-block;
    padding: 14px 24px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.04);
    transition: 0.2s ease;
}

.social-hero-button:hover {
    background: rgba(255,255,255,0.12);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.social-card {
    text-decoration: none;
    color: white;
}

.social-card-inner {
    min-height: 240px;
    border: 1px solid #1c1c1c;
    background: linear-gradient(to bottom, #0d0d0d, #070707);
    padding: 28px 24px;
    text-align: left;
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-card-inner:hover {
    transform: translateY(-4px);
    border-color: #343434;
    box-shadow: 0 0 25px rgba(255,255,255,0.05);
}

.social-card-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8d8d8d;
    margin-bottom: 16px;
}

.social-card h2 {
    margin: 0 0 14px 0;
    font-size: 30px;
    line-height: 1.05;
}

.social-card p {
    margin: 0 0 18px 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.social-card-cta {
    display: inline-block;
    color: white;
    font-size: 15px;
}

.social-facebook .social-card-inner {
    background: linear-gradient(to bottom, #10131a, #07090d);
}

.social-tiktok .social-card-inner {
    background: linear-gradient(to bottom, #111111, #070707);
}

.social-youtube .social-card-inner {
    background: linear-gradient(to bottom, #170b0b, #080606);
}

.social-stream .social-card-inner {
    background: linear-gradient(to bottom, #0d1410, #060806);
}

@media (max-width: 800px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-hero-banner-inner {
        padding: 30px 20px;
    }

    .social-card h2 {
        font-size: 26px;
    }
/* =======================================
   SPOTIFY EMBED
======================================= */

.spotify-section {
    margin: 40px auto 60px auto;
    padding: 0 20px;
    text-align: center;
}

.spotify-player {
    max-width: 600px;
    margin: 0 auto;
}
.spotify-title {
    font-size: 28px;
    margin: 10px 0 20px 0;
}
.homepage-spotify {
    margin-top: 40px;
    margin-bottom: 40px;
}
/* =======================================
   HOMEPAGE SPOTIFY (FLUSH)
======================================= */

.homepage-player {
    width: 100%;
    margin: 0;
    padding: 0;
}

.homepage-player iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}
}