body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('images/greenscreen.webp');
    background-color: #000000;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(100, 100, 100, 0.5);
    backdrop-filter: blur(15px);
    color: white;
    text-align: left;
    padding: 1em 0;
    box-shadow: 0 0 50px #000000;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    z-index: 1000;
    box-sizing: border-box;
    display: block;
}
.header-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
    margin-left: 2.5em;
}
a.title-text {
    margin: 0;
    color: white;
    text-decoration: none;
    font-size: clamp(0.9rem, 1.5vw, 1.5rem);
    padding-right: 2em;
    font-weight: bold;
}
a.title-text:hover {
    color: #0cf75a;
}
.header-jaden {
    font-size: clamp(1.125rem, 2vw, 1.75rem);
}
.main-content {
    flex: 1;
    margin-top: 80px;
    padding: 2em;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.section {
    margin-bottom: 3em;
    padding: 1.2em;
    border-radius: 25px;
    box-shadow: 0 0 50px #000000;
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    overflow: visible;
}
.section h2 {
    font-size: clamp(1.5em, 2.5vw, 1.8em);
    margin: 0 0 1em;
    color: #333;
    text-align: center;
}
.section p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    margin: 0 0 1em;
}
.section img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
    padding: 5px;
}
.centered-image {
    margin: 0 auto;
}
.intro-container {
    display: flex;
    gap: 2em;
    position: relative;
    overflow: visible;
}
.left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6em;
    overflow: visible;
}
.right-column {
    flex: 1;
    display: flex;
    justify-content: center;
}
.programming-page .bio-container {
    display: flex;
    gap: 2em;
    align-items: flex-start;
    flex-wrap: wrap;
}
.programming-page .bio-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}
.programming-page .media-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
}
.programming-page .page-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 0;
}
.programming-page .page-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 25px;
    box-sizing: border-box;
}
.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}
.socials-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 40px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    box-sizing: border-box;
}
.socials-grid::-webkit-scrollbar {
    display: none;
}
.socials-grid div {
    flex: 0 0 100px;
    min-width: 100px;
}
.socials-grid img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    transition: transform 0.2s;
}
.socials-grid img:hover {
    transform: scale(1.1);
}
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s;
    line-height: 1;
    padding: 0;
}
.slider-container:hover .scroll-arrow {
    opacity: 1;
}
.left-arrow {
    left: 5px;
}
.right-arrow {
    right: 5px;
}
.scroll-arrow:hover {
    background: rgba(255, 255, 255, 1);
}
.footer {
    background-color: rgba(100, 100, 100, 0.5);
    backdrop-filter: blur(15px);
    color: white;
    text-align: left;
    padding: 1em 0;
    box-shadow: 0 0 50px #000000;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    width: fit-content;
    z-index: 1000;
    display: block;
}
.footer-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
    margin-left: 2.5em;
}
.footer-text {
    margin: 0;
    color: white;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    padding-right: 2em;
    font-weight: normal;
}
a.footer-text {
    text-decoration: none;
}
a.footer-email:hover {
    color: #0cf75a;
}
.footer-copyright {
    font-size: clamp(1rem, 2vw, 1.25rem);
}
a {
    color: black;
    text-decoration: none;
    font-weight: 600;
}
.intro-container img {
    padding: 0;
}
.left-column img {
    width: 100%;
}
.right-column img {
    width: auto;
    max-width: 100%;
}
.banner-link {
    display: block;
    position: relative;
    z-index: 1;
    text-align: left;
}
.banner-image {
    width: 100%;
    max-width: none;
    margin-left: 0;
}
.profile-headshot {
    position: relative;
    z-index: 2;
}
.bio-image img {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
@media (min-width: 769px) {
    .gamersupps-banner,
    .merch-banner {
        transform: scale(1.5);
        transform-origin: left top;
        margin-right: -50%;
    }
}
@media (max-width: 768px) {
    .main-content {
        margin-top: 60px;
        padding: 2.5%;
        width: 95%;
    }
    .section {
        padding: 2.5%;
    }
    .section h2 {
        font-size: 1.5em;
    }
    .slider-container {
        display: block;
    }
    .socials-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 0;
        box-sizing: border-box;
        width: 100%;
        justify-items: center;
        overflow: hidden;
    }
    .socials-grid div {
        min-width: 0;
        flex: none;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    .socials-grid img {
        padding: 0;
    }
    .scroll-arrow {
        display: none;
    }
    .intro-container {
        flex-direction: column;
    }
    .left-column {
        gap: 1em;
    }
    .header-nav {
        justify-content: center;
        margin-left: 0;
        gap: 0.5em;
    }
    a.title-text {
        padding-right: 0.5em;
        font-size: clamp(0.8rem, 3.5vw, 1rem);
    }
    .header-jaden {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
    }
    .header {
        padding: 0.75em 0;
    }
    .footer-nav {
        justify-content: center;
        margin-left: 0;
        gap: 0.5em;
    }
    .footer-text {
        padding-right: 0.5em;
    }
    .footer {
        padding: 0.75em 0;
        position: static;
        width: 100%;
    }
    .programming-page .bio-container {
        flex-direction: column;
        gap: 1em;
    }
    .programming-page .bio-text, 
    .programming-page .media-container {
        min-width: 100%;
    }
    .programming-page .page-image, 
    .programming-page .page-video {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}