:root {
    --bg-black: #050505;
    --bg-darker: #0c0c0c;
    --text-main: #fcfcfc;
    --text-gray: #aaaaaa;
    --accent-red: #d32029;
    /* Deep sophisticated crimson */
    --accent-red-hover: #fa313d;

    --font-heading: 'Syncopate', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.5s cubic-bezier(0.83, 0, 0.17, 1);
}

/* Reset Core */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    /* Custom cursor hides default */
    cursor: none;
}

a,
button {
    cursor: none;
}

/* Use custom cursor on interactables */

/* Noise Texture */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--text-main);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

/* Intro Loader Sequence */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-black);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-animated-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulsing-logo {
    height: 100px;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(255, 0, 0, 0.5));
    opacity: 0;
    transform: scale(0.9);
    animation: smoothPulse 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@media (min-width: 768px) {
    .pulsing-logo {
        height: 160px;
    }
}

@keyframes smoothPulse {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(255, 0, 0, 0.2));
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
        filter: brightness(0) invert(1) drop-shadow(0 0 35px rgba(255, 0, 0, 1)) drop-shadow(0 0 70px rgba(255, 0, 0, 0.7));
    }

    100% {
        opacity: 0.3;
        transform: scale(0.95);
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(255, 0, 0, 0.2));
    }
}

.loader-terminal-text {
    font-family: monospace;
    font-size: 13px;
    color: var(--text-gray);
    letter-spacing: 3px;
    min-height: 20px;
    text-transform: uppercase;
}

/* Utils */
.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

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

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.w-full {
    width: 100%;
}

.mt-2 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 5rem;
}

.bento-content h3 {
    margin-bottom: 5px;
}

/* Audio Player */
.audio-player {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.bento-item:hover .audio-player {
    transform: translateY(0);
    opacity: 1;
}

.audio-play-btn {
    background: var(--accent-red);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.audio-play-btn:hover {
    transform: scale(1.1);
}

.audio-progress-container {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.audio-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-red);
    border-radius: 2px;
}

.audio-time {
    font-size: 0.8rem;
    color: #ccc;
    font-family: var(--font-body);
}

.sub-player {
    padding: 8px 12px;
    gap: 10px;
}

.sub-player .audio-play-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
}

.bento-content a {
    margin-top: 15px;
    display: inline-block;
}

.mb-4 {
    margin-bottom: 3rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 8rem 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.bg-red {
    background-color: var(--accent-red);
}

.text-red {
    color: var(--accent-red);
}

.text-white {
    color: #fff;
}

.color-gray {
    color: var(--text-gray);
}

.font-serif {
    font-family: var(--font-serif);
    font-style: italic;
}

.font-sync {
    font-family: var(--font-heading);
}

.max-w-md {
    max-width: 600px;
}

.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Typography */
.giant-text {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 700;
    color: #fff;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.sec-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 300;
}

/* Buttons / Links */
a {
    text-decoration: none;
    color: inherit;
}

.btn-solid {
    background-color: var(--accent-red);
    color: #fff;
    padding: 16px 36px;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 1px solid var(--accent-red);
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--accent-red);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: #fff;
    background-color: #fff;
    color: #000;
}

.circle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.circle-btn:hover {
    background: var(--accent-red);
    color: #fff;
    transform: scale(1.1);
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: padding 0.4s ease, background 0.4s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 90px;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8)) drop-shadow(0 0 30px rgba(255, 0, 0, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .nav-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 0, 0, 1)) drop-shadow(0 0 50px rgba(255, 0, 0, 0.8));
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.3s;
}

.nav-item.active {
    color: var(--accent-red);
    font-weight: 700;
}

.nav-item:hover {
    color: #fff;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-toggle .line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    transition: 0.3s;
}

.mobile-toggle .line1 {
    top: 0;
}

.mobile-toggle .line2 {
    bottom: 0;
    width: 70%;
    right: 0;
    left: auto;
}

/* Hero */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 120px 5% 50px;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    z-index: -1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: contrast(1.1) brightness(0.8);
}

.hero-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, var(--bg-black) 0%, transparent 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    z-index: 1;
}

.hero-subtitle {
    color: var(--accent-red);
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}

.hero-bottom {
    margin-top: 30px;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.hero-desc {
    max-width: 400px;
}

/* Marquee */
.marquee-section {
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    position: relative;
    z-index: 5;
}

.marquee {
    display: flex;
    width: 200%;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 1.5rem;
    animation: scroll-left 20s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.marquee-content .star {
    font-size: 1rem;
    color: #000;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* About Grid */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    align-items: center;
}

.about-desc p {
    font-size: 1.25rem;
}

.about-desc em {
    font-family: var(--font-serif);
}

.accent-text {
    color: var(--accent-red);
    font-family: var(--font-body);
    letter-spacing: 5px;
    font-weight: 300;
}

.img-reveal {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
    position: relative;
}

.img-reveal img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.img-reveal:hover img {
    filter: grayscale(0%);
}

/* Bento Releases */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 8px;
    background: #111;
    cursor: none;
}

.bento-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 100%);
    transition: background 0.4s ease;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.filter-bw {
    filter: grayscale(100%) contrast(1.2);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    z-index: 2;
}

.bento-content h3 {
    font-size: 2rem;
    font-family: var(--font-serif);
    font-style: italic;
}

.main-bento {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.sub-bento {
    grid-column: 3 / 4;
    grid-row: span 1;
}

.main-bento h3 {
    font-size: 3.5rem;
}

/* Videos */
.video-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 80vh;
    position: relative;
    border-radius: 12px;
}

.full-video-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
    filter: contrast(1.1);
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    z-index: 1;
}

.video-container:hover .video-overlay-dark {
    background: rgba(0, 0, 0, 0.2);
}

.play-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play-btn-large {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    backdrop-filter: blur(5px);
    transition: 0.4s;
}

.play-btn-wrapper:hover .play-btn-large {
    background: #fff;
    color: var(--accent-red);
    transform: scale(1.1);
    border-color: #fff;
}

.video-title-container {
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 4;
}

.video-title {
    mix-blend-mode: overlay;
    opacity: 0.8;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    margin-bottom: 2rem;
}

.newsletter-form {
    width: 100%;
    max-width: 600px;
    gap: 10px;
    margin: 2rem 0;
}

.glass-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.glass-input:focus {
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.05);
}

.social-links {
    gap: 25px;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--accent-red);
    transform: translateY(-5px);
}

.footer-logo-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.footer-logo {
    width: auto;
    height: 40px; /* Reduced to be closer to social media icons (which are roughly 20-30px) */
    opacity: 0.8;
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.7)) drop-shadow(0 0 50px rgba(255, 0, 0, 0.4));
        transform: scale(1);
    }

    100% {
        filter: drop-shadow(0 0 60px rgba(255, 0, 0, 1)) drop-shadow(0 0 100px rgba(255, 0, 0, 0.8));
        transform: scale(1.08);
    }
}

/* Youtube Custom Thumbnails */
.youtube-thumbnail-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.youtube-thumbnail-link:hover {
    transform: scale(1.03);
}

.youtube-thumbnail-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.youtube-thumbnail-link:hover img {
    filter: brightness(0.6);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(229, 9, 20, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
    transition: transform 0.3s ease, background 0.3s ease;
}

.youtube-thumbnail-link:hover .play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 0, 0, 1);
}

/* Collage Section */
.collage-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.collage-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 800px;
}

.collage-img {
    position: absolute;
    object-fit: cover;
    border: 12px solid #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.c1 {
    width: 450px;
    top: 2%;
    left: 5%;
    transform: rotate(-8deg);
    z-index: 2;
}

.c2 {
    width: 400px;
    top: -5%;
    left: 40%;
    transform: rotate(12deg);
    z-index: 1;
    filter: grayscale(100%);
}

.c3 {
    width: 500px;
    top: 30%;
    left: 45%;
    transform: rotate(-10deg);
    z-index: 3;
}

.c4 {
    width: 480px;
    bottom: 2%;
    left: 15%;
    transform: rotate(6deg);
    z-index: 4;
}

.c5 {
    width: 380px;
    bottom: -10%;
    left: 60%;
    transform: rotate(-15deg);
    z-index: 5;
    filter: brightness(80%);
}

.c6 {
    width: 420px;
    top: 15%;
    right: 5%;
    transform: rotate(8deg);
    z-index: 2;
}

.c7 {
    width: 350px;
    bottom: 15%;
    left: 5%;
    transform: rotate(-5deg);
    z-index: 3;
}

.c8 {
    width: 460px;
    top: 60%;
    right: 10%;
    transform: rotate(15deg);
    z-index: 6;
}

.collage-img:hover {
    transform: scale(1.15) rotate(0deg) !important;
    z-index: 10 !important;
    cursor: pointer;
    border-color: var(--accent-red);
}

/* YouTube Grid */
.youtube-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    display: flex;
    flex-direction: column;
}

.video-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1.5px;
    margin-top: 15px;
    text-transform: uppercase;
    text-align: center;
}

.youtube-item {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.youtube-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
}

.youtube-item iframe,
.youtube-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* Responsive */
.subpage-header {
    padding-top: 15% !important;
}

.giant-email {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: lowercase;
}

.pb-5 {
    padding-bottom: 5rem;
}

@media (max-width: 1024px) {

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s cubic-bezier(0.83, 0, 0.17, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .nav-item {
        font-size: 2rem;
        margin: 1.5rem 0;
    }

    .btn-outline {
        display: none;
    }

    .mobile-toggle {
        display: block;
        z-index: 1000;
        position: relative;
    }

    .mobile-toggle.active .line1 {
        transform: rotate(45deg);
        top: 9px;
    }

    .mobile-toggle.active .line2 {
        transform: rotate(-45deg);
        bottom: 9px;
        width: 100%;
    }

    .grid-layout {
        display: flex;
        flex-direction: column;
    }

    .about-img-col {
        order: -1;
        margin-bottom: 2rem;
        width: 100%;
        min-height: 400px;
    }

    .img-reveal {
        width: 100%;
        height: 100%;
        min-height: 400px;
    }

    .img-reveal img {
        filter: grayscale(0%);
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .main-bento {
        grid-column: 1;
        grid-row: 1;
        aspect-ratio: 1/1;
    }

    .sub-bento {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 16/9;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .marquee-content {
        font-size: 1.2rem;
        gap: 1.5rem;
    }

    .giant-text {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        white-space: nowrap;
    }
}

@media (max-width: 768px) {

    /* Navbar & Hamburger */
    .nav-logo {
        height: 60px;
    }

    .mobile-toggle {
        width: 40px;
        height: 25px;
    }

    .section-padding {
        padding: 4rem 0;
    }

    /* Newsletter Form overflow & stack */
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }

    .glass-input {
        width: 100%;
        text-align: center;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    /* Contact cutting fix */
    .giant-email {
        font-size: 1.2rem;
        word-break: break-all;
        padding: 0 15px;
    }

    /* YouTube Grid Column Restructure */
    .youtube-grid {
        grid-template-columns: 1fr;
    }

    /* Collage Redesign for Mobile */
    .collage-section {
        height: auto;
        padding: 80px 0;
    }

    .collage-container {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }

    .collage-img {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1/1;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: rotate(0deg) !important;
        border: 4px solid #fff;
    }

    .collage-img:hover {
        transform: scale(1.02) rotate(0deg) !important;
        border-color: var(--accent-red);
    }
}