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

:root {
    --bg-primary: #050505;
    --bg-secondary: #0d0d0d;
    --bg-panel: rgba(255, 255, 255, 0.045);
    --bg-panel-hover: rgba(255, 255, 255, 0.065);
    --text-primary: #ffffff;
    --text-secondary: #dddddd;
    --text-muted: #a8a8a8;
    --accent: #ff7a00;
    --accent-strong: #ff9d00;
    --accent-soft: rgba(255, 122, 0, 0.16);
    --border-soft: rgba(255, 255, 255, 0.09);
    --shadow-main: 0 20px 54px rgba(0, 0, 0, 0.38);
    --shadow-hover: 0 24px 64px rgba(0, 0, 0, 0.46);
    --radius-xl: 28px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top center, rgba(255, 122, 0, 0.08) 0%, rgba(255, 122, 0, 0) 34%),
        linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

.page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 122, 0, 0.08), transparent 28%),
        radial-gradient(circle at 82% 0%, rgba(255, 170, 0, 0.06), transparent 24%);
    z-index: 0;
}

.hero,
.main-content,
.site-footer {
    position: relative;
    z-index: 1;
}

.hero {
    padding: 56px 20px 28px;
}

.hero__container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 36px;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-main);
    backdrop-filter: blur(8px);
}

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

.hero__logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.hero__content {
    text-align: left;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--accent-strong);
    margin-bottom: 12px;
}

.hero__title {
    font-size: clamp(2.15rem, 4vw, 3.55rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.hero__text {
    font-size: 1.06rem;
    color: var(--text-secondary);
    max-width: 760px;
    line-height: 1.75;
}

.main-content {
    padding: 18px 20px 60px;
}

.stations-section {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 36px;
    text-align: left;
}

.section-heading h2 {
    font-size: clamp(1.85rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-heading p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 780px;
    line-height: 1.8;
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.station-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-main);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    backdrop-filter: blur(8px);
}

.station-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-panel-hover);
    border-color: rgba(255, 122, 0, 0.30);
}

.station-card__image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #000000;
}

.station-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.35s ease;
}

.station-card:hover .station-card__image {
    transform: scale(1.03);
}

.station-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06) 0%,
        rgba(0, 0, 0, 0.14) 46%,
        rgba(0, 0, 0, 0.28) 100%
    );
}

.station-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    flex: 1;
}


.station-card__top {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.station-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: var(--accent-soft);
    color: #ffd4a6;
    border: 1px solid rgba(255, 122, 0, 0.28);
}

.station-card__title {
    font-size: 1.55rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--text-primary);
}

.station-card__description {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 95%;
}

.station-card__player {
    width: 100%;
    margin-top: 2px;
    margin-bottom: 8px;
    border-radius: 20px;
    overflow: hidden;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.station-card__player iframe {
    width: 100%;
    height: 390px;
    border: 0;
    display: block;
    background: #0b0b0b;
}

.station-card__button-link {
    margin-top: auto;
    text-decoration: none;
    width: 100%;
}

.station-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 999px;
    font-size: 0.97rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #121212;
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.20);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.station-card__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 122, 0, 0.26);
}

.site-footer {
    padding: 0 20px 34px;
}

.site-footer__container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 980px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .hero__content {
        text-align: center;
    }

    .hero__text {
        margin: 0 auto;
    }

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

    .section-heading p {
        margin: 0 auto;
    }

    .stations-grid {
        grid-template-columns: 1fr;
    }

    .station-card__image-wrap {
        height: 280px;
    }

    .station-card__player iframe {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 28px 14px 18px;
    }

    .main-content {
        padding: 8px 14px 42px;
    }

    .site-footer {
        padding: 0 14px 26px;
    }

    .hero__container {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .hero__logo {
        max-width: 140px;
        border-radius: 18px;
    }

    .hero__title {
        font-size: 1.95rem;
    }

    .hero__text {
        font-size: 0.98rem;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .station-card__image-wrap {
        height: 190px;
    }

    .station-card__body {
        padding: 18px;
    }

    .station-card__title {
        font-size: 1.32rem;
    }

    .station-card__description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .station-card__player {
        border-radius: 16px;
    }

    .station-card__player iframe {
        height: 320px;
    }

    .station-card__button {
        min-height: 48px;
        font-size: 0.95rem;
    }
}