/* ========================================
   WataShow - Global Styles
======================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 0, 102, 0.14), transparent 22%),
        radial-gradient(circle at 88% 16%, rgba(51, 102, 153, 0.18), transparent 26%),
        radial-gradient(circle at 50% 68%, rgba(51, 102, 153, 0.10), transparent 34%),
        linear-gradient(180deg, #04101f 0%, #061426 45%, #04101f 100%);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

/* ========================================
   ON AIR BAR
======================================== */

.on-air-bar {
    width: 100%;
    background: #010309;
    text-align: center;
    line-height: 0;
}
.on-air-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 6px 0;
}

.on-air-text-left,
.on-air-text-right {
    color: #7aa7ff;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
}

.on-air-neon-gif {
    display: block;
    max-height: 65px;
}

.on-air-bar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 70px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 0, 102, 0.18) 0%, rgba(255, 0, 102, 0.08) 35%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

.on-air-light {
    width: 260px;
    margin: 0 auto 10px;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 102, 0.55);
    background: linear-gradient(180deg, rgba(40, 8, 18, 0.98), rgba(12, 3, 8, 0.98));
    box-shadow:
        0 0 12px rgba(255, 0, 102, 0.28),
        0 0 30px rgba(255, 0, 102, 0.18),
        inset 0 0 16px rgba(255,255,255,0.04);
    position: relative;
    animation: onAirPulse 1.8s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.on-air-light::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.00));
    pointer-events: none;
}

.on-air-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #FF0066;
    text-shadow:
        0 0 6px rgba(255, 0, 102, 0.85),
        0 0 14px rgba(255, 0, 102, 0.55),
        0 0 26px rgba(255, 0, 102, 0.35);
    position: relative;
    z-index: 2;
}

.record-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff234f;
    box-shadow:
        0 0 8px rgba(255, 35, 79, 0.9),
        0 0 16px rgba(255, 35, 79, 0.55);
    position: relative;
    z-index: 2;
    animation: recordBlink 1s ease-in-out infinite;
}

@keyframes recordBlink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        transform: scale(0.9);
    }
}

/* ========================================
   HEADER
======================================== */

header {
    padding: 22px 0 12px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 64px;
    width: auto;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

nav a {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    transition: 0.3s;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.94);
    backdrop-filter: blur(6px);
}

nav a:hover {
    background: rgba(255,0,102,0.12);
    border-color: rgba(255,0,102,0.35);
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    margin-top: 2px;
    min-width: 100px;
    background: rgba(9, 20, 37, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    overflow: hidden;
    z-index: 999;
    padding: 6px 0;
}

.dropdown-content a {
    display: block;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.06) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}
/* ========================================
   TAGLINE
======================================== */

.tagline {
    text-align: center;
    margin-top: 26px;
    margin-bottom: 46px;
}

.tagline h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

.tagline p {
    color: #8ea4bd;
    font-size: 15px;
}
/* ABOUT PAGE */

.page-hero.about-hero {
    position: relative;
    padding: 110px 20px 90px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 0, 102, 0.16), transparent 24%),
        radial-gradient(circle at top right, rgba(51, 102, 153, 0.18), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #04101f 100%);
}

.page-hero.about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 30%),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 55%);
}

.page-hero.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero.about-hero .hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
}

.page-hero.about-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
}

.page-hero.about-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

/* GENERAL ABOUT SECTIONS */

.about-section {
    position: relative;
    padding: 80px 20px;
    background: transparent;
}

.about-section.alt-bg {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.03) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-section .container,
.about-closing-strip .container {
    max-width: 1240px;
    margin: 0 auto;
}

/* SECTION HEADINGS */

.section-heading {
    max-width: 900px;
    margin-bottom: 50px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: #ff4f98;
}

.section-heading h2,
.about-card h2,
.closing-content h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
}

.section-heading p,
.about-card p,
.info-box p,
.purpose-box p,
.closing-content p,
.feature-inner li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
}

.about-card h2 span {
    display: inline-block;
    font-size: 0.62em;
    font-weight: 600;
    color: #7dc3ff;
}

/* GRID LAYOUTS */

.about-grid {
    display: grid;
    gap: 30px;
    align-items: stretch;
}

.about-grid.two-column {
    grid-template-columns: 1fr 1.2fr;
}

.about-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}

.about-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}

/* CARDS */

.about-card,
.info-box,
.purpose-box,
.feature-card {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 18px 40px rgba(0,0,0,0.22);
    overflow: hidden;
}

.about-card.text-card,
.feature-card,
.info-box,
.purpose-box {
    padding: 34px 30px;
}

.about-card.text-card p:last-child,
.info-box p:last-child,
.purpose-box p:last-child {
    margin-bottom: 0;
}

/* IMAGE CARD */

.image-card {
    min-height: 100%;
    background: rgba(255,255,255,0.03);
}

.image-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

/* FEATURE CARD */

.feature-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-inner h3,
.info-box h3,
.purpose-box h3 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.feature-inner ul {
    margin: 0;
    padding-left: 18px;
}

.feature-inner li {
    margin-bottom: 10px;
}

/* INFO BOXES */

.info-box {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-box:hover,
.purpose-box:hover,
.about-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 22px 48px rgba(0,0,0,0.28);
}

/* PURPOSE BOXES */

.purpose-box {
    text-align: center;
    padding: 30px 22px;
}

.purpose-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.purpose-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* CLOSING STRIP */

/* ABOUT PAGE */

.page-hero.about-hero {
    position: relative;
    padding: 70px 20px 50px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 0, 102, 0.16), transparent 24%),
        radial-gradient(circle at top right, rgba(51, 102, 153, 0.18), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #04101f 100%);
}

.page-hero.about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 30%),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 55%);
}

.page-hero.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.page-hero.about-hero .hero-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
}

.page-hero.about-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4.3vw, 52px);
    line-height: 1.08;
    font-weight: 800;
    color: #ffffff;
}

.page-hero.about-hero p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
}

/* GENERAL ABOUT SECTIONS */

.about-section {
    position: relative;
    padding: 40px 20px;
    background: transparent;
}

.about-section.alt-bg {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.03) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-section .container,
.about-closing-strip .container {
    max-width: 1280px;
    margin: 0 auto;
}

/* SECTION HEADINGS */

.section-heading {
    max-width: 980px;
    margin-bottom: 28px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #ff4f98;
}

.section-heading h2,
.about-card h2,
.closing-content h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3.5vw, 40px);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
}

.section-heading p,
.about-card p,
.info-box p,
.purpose-box p,
.closing-content p,
.feature-inner li {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
}

.about-card h2 span {
    display: inline-block;
    font-size: 0.62em;
    font-weight: 600;
    color: #7dc3ff;
}

/* GRID LAYOUTS */

.about-grid {
    display: grid;
    gap: 16px;
    align-items: stretch;
}

.about-grid.two-column {
    grid-template-columns: 1fr 1.15fr;
}

.about-grid.three-column {
    grid-template-columns: repeat(3, 1fr);
}

.about-grid.four-column {
    grid-template-columns: repeat(4, 1fr);
}

/* CARDS */

.about-card,
.info-box,
.purpose-box,
.feature-card {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
    overflow: hidden;
}

.about-card.text-card,
.feature-card,
.info-box,
.purpose-box {
    padding: 22px 22px;
}

.about-card.text-card p:last-child,
.info-box p:last-child,
.purpose-box p:last-child {
    margin-bottom: 0;
}

/* IMAGE CARD */

.image-card {
    min-height: 100%;
    background: rgba(255,255,255,0.03);
}

.image-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

/* FEATURE CARD */

.feature-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-inner h3,
.info-box h3,
.purpose-box h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.feature-inner ul {
    margin: 0;
    padding-left: 18px;
}

.feature-inner li {
    margin-bottom: 6px;
}

/* INFO BOXES */

.info-box {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-box:hover,
.purpose-box:hover,
.about-card:hover,
.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.14);
    box-shadow: 0 18px 36px rgba(0,0,0,0.22);
}

/* PURPOSE BOXES */

.purpose-box {
    text-align: center;
    padding: 22px 16px;
}

.purpose-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.purpose-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

/* CLOSING STRIP */

.about-closing-strip {
    padding: 15px 20px 20px;
    background:
        radial-gradient(circle at center top, rgba(255, 0, 102, 0.12), transparent 24%),
        radial-gradient(circle at center bottom, rgba(51, 102, 153, 0.12), transparent 30%);
}

.closing-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding: 18px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 16px 36px rgba(0,0,0,0.20);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .about-grid.two-column,
    .about-grid.three-column,
    .about-grid.four-column {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero.about-hero {
        padding: 55px 16px 40px;
    }

    .page-hero.about-hero p {
        font-size: 15px;
    }

    .about-section,
    .about-closing-strip {
        padding: 30px 16px;
    }

    .about-grid.two-column,
    .about-grid.three-column,
    .about-grid.four-column {
        grid-template-columns: 1fr;
    }

    .about-card.text-card,
    .feature-card,
    .info-box,
    .purpose-box,
    .closing-content {
        padding: 18px 18px;
    }

    .image-card img {
        min-height: 240px;
    }

    .section-heading {
        margin-bottom: 22px;
    }
}
.about-wrapper {
    padding: 20px;
}

.about-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 28px 32px;

    border-radius: 24px;

    background:
        radial-gradient(circle at top left, rgba(255,0,102,0.12), transparent 35%),
        radial-gradient(circle at top right, rgba(51,102,153,0.14), transparent 40%),
        rgba(10,18,35,0.65);

    border: 1px solid rgba(255,255,255,0.06);

    box-shadow: 
        0 20px 60px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.04);

    backdrop-filter: blur(8px);
}
.image-card img {
    height: 350px;
    object-fit: cover;
    border-radius: 18px;
}
.how-section {
    padding: 8px 10px;
}

.how-section .container {
    padding: 0;
    margin: 0 auto;
}

.how-section .section-heading {
    margin-bottom: 6px;
}

.how-section .section-heading h2 {
    margin: 0 0 6px;
}

.how-section .section-heading p {
    margin: 0;
}

.how-section .about-card {
    padding: 14px 16px;
    margin: 0;
}

.how-section .about-card p {
    margin: 0 0 6px;
}

.how-section .about-card p:last-child {
    margin-bottom: 0;
}

.how-section .about-grid {
    gap: 10px;
}
.how-page .about-section {
    padding: 18px 0;
}

.how-page .section-heading {
    margin-bottom: 12px;
}

.how-page .section-heading h2 {
    margin-bottom: 8px;
}

.how-page .section-heading p {
    margin: 0;
}

.how-page .about-card {
    padding: 18px 20px;
}

.how-page .about-grid {
    gap: 16px;
}

.how-page .info-box {
    padding: 18px 20px;
}

.how-page .closing-content {
    padding: 18px 20px;
}
.about-wrapper .about-section {
    padding: 20px 20px;
}

.about-wrapper .about-section:first-child {
    padding-top: 10px;
}

.about-wrapper .about-section:last-child {
    padding-bottom: 10px;
}
.future-section .section-heading {
    max-width: 100%;
}
.future-section p {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.image-card {
    overflow: hidden;
    border-radius: 18px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.podcast-card img {
    transition: transform 0.4s ease;
}

.podcast-card:hover img {
    transform: scale(1.05);
}
/* ========================================
   SECTIONS
======================================== */

.latest-episodes,
.venture-podcasts,
.banner-section {
    padding-bottom: 60px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ffffff;
}

/* ========================================
   PODCAST GRID
======================================== */

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.podcast-card {
    background: rgba(255,255,255,0.035);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.podcast-card:hover {
    transform: translateY(-5px) scale(1.015);
    border-color: rgba(255,0,102,0.28);
    box-shadow: 0 14px 30px rgba(0,0,0,0.24);
}

.podcast-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.podcast-title {
    padding: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #ffffff;
}
.podcast-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    margin-bottom: 12px;
}

.podcast-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}
.podcast-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    margin-bottom: 12px;
}

.podcast-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 28px;
    line-height: 62px;
    text-align: center;
    pointer-events: none;
}

.podcast-card:hover .podcast-thumb img {
    transform: scale(1.04);
    transition: 0.3s ease;
}
.podcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

.podcast-card:hover .play-button {
    background: rgba(255, 0, 102, 0.85);
    transform: translate(-50%, -50%) scale(1.08);
    transition: 0.3s ease;
}
.back-button {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.back-button:hover {
    background: rgba(255,0,102,0.15);
    border-color: rgba(255,0,102,0.35);
}
.venture-link {
    display: inline-block;
    margin-top: 8px;
    color: #ff0066;
    text-decoration: none;
    font-weight: 600;
}

.venture-link:hover {
    color: #ffffff;
}
.venture-button-wrap {
    margin-top: 20px;
    text-align: center;
}

.venture-button {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 30px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.venture-button:hover {
    background: rgba(255,0,102,0.18);
    border-color: rgba(255,0,102,0.35);
    transform: translateY(-2px);
}
.venture-logo {
    width: 100%;
    text-align: center;
    margin: 25px 0 20px 0;
}

.venture-logo img {
    display: inline-block;
    max-width: 220px;
    width: 100%;
}

.venture-logo img:hover {
    transform: scale(1.03);
    opacity: 1;
}
/* ========================================
   VIEW MORE BUTTON
======================================== */

.view-more {
    text-align: center;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 999px;
    background: #FF0066;
    color: white;
    font-weight: 700;
    border: 1px solid rgba(255,0,102,0.35);
    transition: 0.3s;
    box-shadow: 0 10px 24px rgba(255,0,102,0.18);
}

.btn:hover {
    background: #e6005c;
    transform: translateY(-2px);
}

/* ========================================
   VENTURE SECTION
======================================== */

.venture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.venture-card {
    border-radius: 20px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.venture-card:hover {
    transform: translateY(-5px);
    border-color: rgba(51,102,153,0.35);
}

.venture-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.venture-card-content {
    padding: 22px 20px 24px;
    text-align: center;
}

.venture-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.venture-card p {
    color: rgba(255,255,255,0.86);
    line-height: 1.6;
    font-size: 14px;
}

/* ========================================
   BANNER
======================================== */

.banner {
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(rgba(4,16,31,0.55), rgba(4,16,31,0.55)),
        radial-gradient(circle at left, rgba(255,0,102,0.08), transparent 20%),
        radial-gradient(circle at right, rgba(51,102,153,0.12), transparent 22%),
        url('../images/watashow-banner.jpg') center center / cover no-repeat,
        rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 35px rgba(0,0,0,0.20);
}

.banner h2 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 12px;
}

.banner p {
    font-size: 25px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

/* ========================================
   FOOTER
======================================== */

footer {
    background: linear-gradient(135deg, #1E3D5B 0%, #000000 100%);
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.footer-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 24px;
}

.footer-box h3 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 1.25rem;
}

.footer-box p,
.footer-box a,
.footer-box li {
    color: rgba(255,255,255,0.92);
    font-size: 0.98rem;
    line-height: 1.7;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box a:hover {
    color: #FF0066;
    text-decoration: underline;
}

.footer-logo {
    height: 58px;
    margin-bottom: 16px;
    width: auto;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 0.98rem;
}

.enquiry-form textarea {
    min-height: 120px;
    resize: vertical;
}

.enquiry-form button {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 999px;
    background: #FF0066;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.enquiry-form button:hover {
    background: #336699;
}

.footer-bottom {
    margin-top: 40px;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.82);
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

.statcounter {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {
    .podcast-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .venture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .venture-grid {
        grid-template-columns: 1fr;
    }

    .logo img {
        height: 54px;
    }

    .tagline h1 {
        font-size: 24px;
    }

    .banner h2 {
        font-size: 28px;
    }

    .on-air-light {
        width: 180px;
    }

    .on-air-text {
        font-size: 19px;
        letter-spacing: 3px;
    }
}

@media (max-width: 520px) {
    .podcast-grid {
        grid-template-columns: 1fr;
    }

    nav a {
        width: 100%;
        text-align: center;
    }
}