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

html {
    scroll-snap-type: y proximity;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #151415;
    --secondary-color: #fff;
    --accent-color: #333;
    --text-color: #e5e5e5;
    --text-color-dark: #1a1a1a;
    --light-gray: #1f1f1f;
    --border-color: #333;
    --background-color: #151415;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Header and Navigation Styles */
.header {
    background: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 20px 0;
}

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

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

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.6;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: scroll;
    background: var(--background-color);
    font-size: 16px;
    position: relative;
    scroll-snap-type: y proximity;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg pattern.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

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

/* Hero Navigation */
.hero-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 35vw;
    min-width: 400px;
    max-width: 600px;
    height: 100vh;
    background: #fdbb2b;
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 80px 60px 40px;
    overflow-y: auto;
}

.hero-nav-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s;
}

.hero-nav-close:hover {
    opacity: 0.6;
}

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

.hero-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-nav-menu li {
    position: relative;
}

.hero-nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    font-family: "Teko", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    display: block;
    padding: 6px 0;
    line-height: 1.1;
}

.hero-nav-menu a:hover {
    opacity: 0.6;
}

.hero-nav-menu .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 8px 0 8px 30px;
    margin-top: 8px;
    gap: 4px;
    display: flex;
    flex-direction: column;
}

.hero-nav-menu .dropdown-menu a {
    font-size: clamp(20px, 2.8vw, 26px);
    color: #000;
    font-family: "Teko", sans-serif;
    font-weight: 700;
    padding: 4px 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}

.hero-content {
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero-title {
    animation: scaleIn 1s ease-out 0.5s both;
}

.hero-header {
    animation: fadeInDown 0.8s ease-out;
}

.hero-footer {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 50px;
    z-index: 10;
}

.hero-brand {
    font-size: 34px;
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: "Teko", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.hero-brand:hover {
    opacity: 0.7;
}

.hero-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 15;
}

.hero-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s;
}

.hero-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hero-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hero-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
    padding: 0 40px;
}

.hero-title {
    font-size: clamp(48px, 10vw, 140px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
    color: #FFEB3B;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 235, 59, 0.5);
    margin: 0;
}

.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 50px;
    z-index: 10;
}

.hero-play-icon {
    position: absolute;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFEB3B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.hero-play-icon:hover {
    transform: scale(1.1);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-text {
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-scroll-arrow {
    font-size: 20px;
    color: var(--secondary-color);
    animation: bounce 2s infinite;
}

/* About Hero Styles */
.about-hero {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.about-hero-bg {
    background: rgba(26, 26, 26, 0.7);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-hero-title {
    font-size: clamp(48px, 10vw, 140px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
    color: #FFEB3B;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 235, 59, 0.5);
    margin: 0;
}

.about-content {
    padding: 100px 0;
    background: var(--background-color);
    overflow-x: hidden;
    overflow-y: visible;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: -40px;
    padding-bottom: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-intro-left h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 400;
    font-family: "Teko", sans-serif;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.about-intro-right {
    padding-top: 20px;
}

.about-intro-right p {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 300;
}

/* About Video Section */
.about-video-section {
    padding: 80px 0;
    background: var(--background-color);
    position: relative;
    z-index: 1;
}

.about-video-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    overflow: hidden;
}

.video-placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-weight: 300;
}

/* About Section 2 */
.about-section-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 80px 0;
    align-items: start;
}

.about-section-2-left h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

.about-section-2-left h2 span {
    font-weight: 400;
}

.about-section-2-right p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 300;
}

/* About Intro Section */
.about-intro-section {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    margin: 80px 0;
    overflow: visible;
}

.about-intro-section-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: 0;
}

.about-intro-section-content h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.about-intro-section-content h3 span {
    font-weight: 400;
}

.about-intro-section-content h3:last-child {
    margin-bottom: 0;
}

.about-cutout {
    position: absolute;
    left: -5%;
    bottom: 0;
    width: 50%;
    min-width: 500px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 2;
    opacity: 1;
}

@media (max-width: 1024px) {
    .about-cutout {
        width: 45%;
        min-width: 400px;
        left: -3%;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .about-cutout {
        position: relative;
        width: 100%;
        min-width: unset;
        max-width: 100%;
        margin-top: 40px;
        margin-bottom: 40px;
        top: 0;
        left: 0;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-right {
        padding-top: 0;
    }

    .about-section-2 {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 60px 0;
    }

    .about-intro-section {
        padding: 60px 0;
        margin: 60px 0;
    }

    .about-intro-section-content {
        margin-left: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-up {
    transform: translateY(40px);
}

.animate-fade-down {
    transform: translateY(-40px);
}

.animate-fade-left {
    transform: translateX(-40px);
}

.animate-fade-right {
    transform: translateX(40px);
}

.animate-scale {
    transform: scale(0.9);
}

.animate-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Intro Section */
.intro-section {
    padding: 120px 0 80px;
    background: var(--background-color);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.intro-content {
    animation: fadeInLeft 1s ease-out both;
}

.intro-image-wrapper {
    animation: fadeInRight 1s ease-out 0.2s both;
}

.intro-image {
    transition: transform 0.5s ease;
}

.intro-image:hover {
    transform: scale(1.05) translateY(-10px);
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-title-large {
    font-size: clamp(24px, 3.5vw, 48px);
    font-weight: 700;
    font-family: "Teko", sans-serif;
    line-height: 1.3;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    position: relative;
}

.intro-title-large::after {
    content: '|';
    display: inline-block;
    color: #fdbb2b;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.intro-title-large .highlight-yellow {
    color: #fdbb2b;
    font-weight: 700;
}

.intro-about-link {
    color: #fdbb2b;
    text-decoration: none;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    display: inline-block;
    align-self: flex-start;
}

.intro-about-link:hover {
    opacity: 0.7;
}

.intro-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image {
    width: 100%;
    max-width: 700px;
    min-width: 400px;
    height: auto;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    transform: scale(1.1);
}

.intro-decorative-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--background-color);
    overflow: hidden;
    --scroll-progress: 0%;
}

/* Left bar coming from the left */
.intro-decorative-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(var(--scroll-progress) / 2);
    height: 100%;
    background: #fdbb2b;
    transition: width 0.05s linear;
    z-index: 1;
}

/* Right bar coming from the right */
.intro-decorative-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(100% - var(--scroll-progress) / 2);
    width: calc(var(--scroll-progress) / 2);
    height: 100%;
    background: #fdbb2b;
    transition: left 0.05s linear, width 0.05s linear;
    z-index: 1;
}

@media (max-width: 1024px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-image-wrapper {
        order: -1;
        max-height: 600px;
    }
    
    .intro-image {
        max-width: 100%;
        min-width: unset;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 80px 0 60px;
    }
    
    .intro-title-large {
        font-size: clamp(20px, 5vw, 32px);
        line-height: 1.4;
    }
    
    .intro-about-link {
        font-size: clamp(16px, 4vw, 20px);
    }
}

/* Episodes Section */
.episodes-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 1;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    margin-bottom: 60px;
    letter-spacing: -2px;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-title.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.episode-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.episode-row.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.episode-row:nth-child(1) {
    transition-delay: 0.1s;
}

.episode-row:nth-child(2) {
    transition-delay: 0.2s;
}

.episode-row:nth-child(3) {
    transition-delay: 0.3s;
}

.episode-image {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.episode-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.episode-img {
    transition: transform 0.5s ease;
}

.episode-image:hover .episode-img {
    transform: scale(1.1);
}

.episode-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio for YouTube thumbnails */
    overflow: hidden;
    border-radius: 4px;
}

.episode-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.episode-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

.episode-content {
    display: flex;
    flex-direction: column;
}

.episode-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--secondary-color);
}

.episode-text {
    margin-bottom: 30px;
}

.episode-text p {
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.8;
    font-weight: 300;
}

.episode-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-episode {
    padding: 12px 30px;
    background: #fdbb2b;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-episode::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-episode:hover::before {
    left: 100%;
}

.btn-episode:hover {
    background: #e6a826;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 187, 43, 0.4);
}

.episode-platforms {
    display: flex;
    gap: 15px;
    align-items: center;
}

.platform-icon {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.platform-icon:hover {
    color: #fdbb2b;
}

/* Subscribe Section */
.subscribe-section {
    padding: 120px 0;
    background: var(--background-color);
    text-align: center;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subscribe-section .section-title {
    margin-bottom: 60px;
    line-height: 1.2;
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.platform-link {
    padding: 12px 24px;
    background: transparent;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    transition: all 0.3s;
    border: 1px solid var(--secondary-color);
    font-size: 15px;
    letter-spacing: 0.5px;
}

.platform-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* News Preview Section */
.news-preview-section {
    padding: 120px 0;
    background: var(--light-gray);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-preview-card {
    padding: 0;
    background: transparent;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.news-preview-card.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.news-preview-card:nth-child(1) {
    transition-delay: 0.1s;
}

.news-preview-card:nth-child(2) {
    transition-delay: 0.2s;
}

.news-preview-card:nth-child(3) {
    transition-delay: 0.3s;
}

.news-preview-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.news-preview-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-preview-title {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: -0.5px;
    color: var(--secondary-color);
}

.news-preview-link {
    display: inline-block;
    color: #fdbb2b;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
}

.news-preview-link:hover {
    opacity: 0.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 60px 0 30px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
    gap: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-social-icons li {
    list-style: none;
}

.footer-social-icons .social-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    text-align: center;
    line-height: 80px;
    font-size: 35px;
    margin: 0 10px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 3px solid #fff;
    z-index: 1;
    text-decoration: none;
}

.footer-social-icons .social-icon .icon {
    position: relative;
    color: #262626;
    transition: .5s;
    z-index: 3;
}

.footer-social-icons .social-icon:hover .icon {
    color: #fff;
    transform: rotateY(360deg);
}

.footer-social-icons .social-icon:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f00;
    transition: .5s;
    z-index: 2;
}

.footer-social-icons .social-icon:hover:before {
    top: 0;
}

.footer-social-icons li:nth-child(1) .social-icon:before {
    background: #3b5999;
}

.footer-social-icons li:nth-child(2) .social-icon:before {
    background: #55acee;
}

.footer-social-icons li:nth-child(3) .social-icon:before {
    background: #0077b5;
}

.footer-social-icons li:nth-child(4) .social-icon:before {
    background: #e4405f;
}

.footer-social-icons li:nth-child(5) .social-icon:before {
    background: #ff0000;
}

.footer-social-icons li:nth-child(6) .social-icon:before {
    background: #000000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Page Content Styles */
.page-content {
    padding: 120px 20px 80px;
    min-height: 80vh;
    overflow: visible;
}

.page-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--secondary-color);
}

.page-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 400;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.content-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 40px 0 20px;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

.content-section h3 {
    font-size: 24px;
    font-weight: 500;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

/* About Content Section with Video Background */
.about-content-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 80px 0;
    overflow: hidden;
    min-height: 600px;
    max-width: none;
}

.about-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    min-width: 100%;
}

.about-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.about-content-text {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0;
    padding: 0 40px;
    text-align: left;
}

.about-content-text h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 40px 0 20px;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

.about-content-text h2:first-child {
    margin-top: 0;
}

.about-content-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #fdbb2b;
    margin-bottom: 15px;
}

.product-description {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #fdbb2b;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #e6a826;
}

/* News Grid */
.news-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.news-card {
    padding: 30px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.news-excerpt {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
}

.news-link {
    display: inline-block;
    margin-top: 15px;
    color: #fdbb2b;
    text-decoration: none;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    padding: 15px 40px;
    background: #fdbb2b;
    color: var(--primary-color);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e6a826;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-header {
        padding: 30px 20px;
    }

    .hero-brand {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: clamp(36px, 12vw, 80px);
        letter-spacing: 1px;
    }

    .hero-footer {
        padding: 30px 20px;
    }

    .hero-play-icon {
        left: 20px;
        width: 40px;
        height: 40px;
    }

    .hero-play-icon svg {
        width: 18px;
        height: 18px;
    }

    .hero-scroll-text {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-nav {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 80px 30px 30px;
    }

    .hero-nav-close {
        top: 30px;
        right: 30px;
        font-size: 28px;
    }

    .hero-nav-menu a {
        font-size: clamp(24px, 5vw, 32px);
    }

    .hero-nav-menu .dropdown-menu a {
        font-size: clamp(20px, 4vw, 26px);
    }

    .episode-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .episode-image {
        padding-top: 75%;
    }

    .episode-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social-icons {
        gap: 0;
        margin-bottom: 40px;
        padding-bottom: 30px;
        flex-wrap: wrap;
    }
    
    .footer-social-icons .social-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        line-height: 60px;
        margin: 0 8px;
    }
}

