/* リセット & ベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'MS PGothic', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f5f5f5;
}

/* カラーパレット */
:root {
    --main-color: rgb(193, 24, 48);
    --accent-color: rgb(28, 38, 82);
    --main-color-rgba: rgba(193, 24, 48, 0.9);
    --accent-color-rgba: rgba(28, 38, 82, 0.9);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 24, 48, 0.75) 0%, rgba(28, 38, 82, 0.65) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
    gap: 0;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 50%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
    border-left: 4px solid var(--main-color);
}

.hero-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(193, 24, 48, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(28, 38, 82, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(193, 24, 48, 0.02) 10px,
            rgba(193, 24, 48, 0.02) 20px);
    pointer-events: none;
    z-index: 0;
}

.hero-right::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(28, 38, 82, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGradient 4s ease-in-out infinite;
}

@keyframes pulseGradient {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.hero-program-content {
    width: 100%;
    max-width: 600px;
    color: #333;
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.team-logo {
    max-width: 200px;
    max-height: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6));
    animation: fadeInUp 0.8s ease-out;
}

.program-logo-wrapper {
    position: relative;
    padding: 40px 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero-logo {
    max-width: 600px;
    max-height: 50vh;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.6));
    position: relative;
    z-index: 1;
}

.broadcast-info {
    margin-top: 30px;
    animation: fadeInUp 1.2s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.broadcast-label {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.broadcast-date {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.05em;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--main-color-rgba) 0%, var(--accent-color-rgba) 100%);
    border: 3px solid #ffffff;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.broadcast-date::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ヒーロー内の番組概要スタイル */
.hero-program-content .program-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--main-color);
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 20px 25px;
    padding-bottom: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 249, 250, 0.7) 100%);
    border-radius: 12px;
    border-left: 5px solid var(--main-color);
    box-shadow: 0 4px 15px rgba(193, 24, 48, 0.15);
    margin-bottom: 25px;
}

.hero-program-content .program-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.hero-program-content .program-subtitle {
    font-size: 1.1rem;
    color: var(--accent-color);
    text-align: left;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.hero-program-content .program-content {
    max-width: 100%;
    margin: 0;
}

/* 写真ギャラリーセクション */
.gallery-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

.program-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

.hero-program-content .program-text {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

.program-text.highlight {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--main-color);
    text-align: left;
    padding: 30px;
    background: linear-gradient(135deg, rgba(193, 24, 48, 0.15) 0%, rgba(28, 38, 82, 0.15) 100%);
    border-left: 6px solid var(--main-color);
    border-right: 6px solid var(--accent-color);
    border-top: 2px solid rgba(193, 24, 48, 0.2);
    border-bottom: 2px solid rgba(28, 38, 82, 0.2);
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(193, 24, 48, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-program-content .program-text.highlight {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--main-color);
    text-align: left;
    padding: 30px;
    background: linear-gradient(135deg, rgba(193, 24, 48, 0.15) 0%, rgba(28, 38, 82, 0.15) 100%);
    border-left: 6px solid var(--main-color);
    border-right: 6px solid var(--accent-color);
    border-top: 2px solid rgba(193, 24, 48, 0.2);
    border-bottom: 2px solid rgba(28, 38, 82, 0.2);
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(193, 24, 48, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transform: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.hero-program-content .program-text.highlight:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(193, 24, 48, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.program-text.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: slideHighlight 3s infinite;
}

@keyframes slideHighlight {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* 写真ギャラリー */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    aspect-ratio: 4 / 3;
    border: 3px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(193, 24, 48, 0.3);
    border-color: var(--main-color);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 24, 48, 0) 0%, rgba(28, 38, 82, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* 出演者セクション */
.cast-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cast-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(193, 24, 48, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(28, 38, 82, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cast-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--main-color);
    position: relative;
    z-index: 1;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(193, 24, 48, 0.2);
}

.cast-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--accent-color) 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cast-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.cast-item:hover {
    transform: translateY(-10px);
}

.cast-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(193, 24, 48, 0.1) 0%, rgba(28, 38, 82, 0.1) 100%);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cast-item:hover .cast-image-wrapper {
    box-shadow: 0 12px 35px rgba(193, 24, 48, 0.4);
    border-color: var(--main-color);
    transform: scale(1.05);
}

.cast-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.cast-item:hover .cast-image {
    transform: scale(1.1);
}

.cast-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 24, 48, 0) 0%, rgba(28, 38, 82, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cast-item:hover .cast-image-wrapper::after {
    opacity: 1;
}

.cast-team {
    font-size: 0.7rem;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.02em;
    margin-top: 10px;
    margin-bottom: 5px;
    line-height: 1.4;
    white-space: nowrap;
}

.cast-name-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.cast-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 5px;
}

.cast-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease;
}

.cast-item:hover .cast-name::after {
    width: 60px;
}

.cast-role {
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.05em;
}

/* プレゼントセクション */
.present-section {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--accent-color) 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.present-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.present-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 900;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

.present-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.present-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16 / 9;
}

.present-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.present-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.present-slide.active {
    opacity: 1;
}

.present-image {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.present-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
}

.present-nav.prev {
    left: 10px;
}

.present-nav.next {
    right: 10px;
}

.present-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8800 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 900;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.present-text-wrapper {
    padding: 20px;
}

.present-heading {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.present-description {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
    opacity: 0.95;
}

.present-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.present-details p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.present-details p:last-child {
    margin-bottom: 0;
}

.present-details strong {
    color: #ffcc00;
    font-weight: 900;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.present-apply {
    margin-top: 30px;
    text-align: center;
}

.present-apply-text {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.present-apply-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
    border: 3px solid #ffffff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.present-apply-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.6);
    background: linear-gradient(135deg, #ffdd00 0%, #ffbb00 100%);
}

/* フッター */
.footer {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .hero-section {
        overflow: visible;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        min-height: 70vh;
        padding: 40px 20px;
    }

    .hero-right {
        padding: 40px 20px;
        max-height: none;
        overflow-y: visible;
        align-items: flex-start;
        border-left: none;
        border-top: 4px solid var(--main-color);
    }

    .hero-program-content .program-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-program-content .program-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-program-content .program-subtitle {
        text-align: center;
    }

    .hero-program-content .program-text {
        text-align: justify;
    }

    .hero-program-content .program-text.highlight {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-left {
        min-height: 60vh;
        padding: 30px 15px;
    }

    .hero-right {
        padding: 30px 15px;
        max-height: none;
        overflow-y: visible;
        align-items: flex-start;
    }

    .hero-program-content .program-title {
        font-size: 1.8rem;
    }

    .hero-program-content .program-subtitle {
        font-size: 0.9rem;
    }

    .hero-program-content .program-text {
        font-size: 0.9rem;
    }

    .hero-program-content .program-text.highlight {
        font-size: 1rem;
        padding: 20px;
        white-space: normal;
        letter-spacing: normal;
    }

    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .present-title {
        font-size: 2rem;
    }

    .present-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .present-heading {
        font-size: 1.5rem;
    }

    .cast-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .cast-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .cast-name {
        font-size: 1.1rem;
    }

    .cast-team {
        font-size: 0.65rem;
        white-space: normal;
    }

    .cast-section {
        padding: 50px 0;
    }

    .gallery-section {
        padding: 50px 0;
    }

    .present-section {
        padding: 50px 0;
    }

    .broadcast-date {
        font-size: 1.6rem;
        padding: 15px 30px;
    }

    .broadcast-label {
        font-size: 0.9rem;
    }

    .program-logo-wrapper {
        padding: 30px 40px;
    }

    .hero-logo {
        max-width: 100%;
        max-height: 40vh;
    }

    .team-logo {
        max-width: 150px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .hero-program-content .program-title {
        font-size: 1.25rem;
    }

    .hero-logo {
        max-width: 100%;
        max-height: 35vh;
    }

    .program-logo-wrapper {
        padding: 20px 25px;
        border-radius: 15px;
    }

    .team-logo {
        max-width: 120px;
        max-height: 70px;
    }

    .logo-container {
        gap: 20px;
        margin-bottom: 30px;
    }

    .present-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
        top: 10px;
        right: 10px;
    }

    .broadcast-date {
        font-size: 1.3rem;
        padding: 12px 20px;
    }

    .broadcast-label {
        font-size: 0.8rem;
    }

    .hero-left {
        padding: 20px 10px;
    }

    .hero-right {
        padding: 20px 10px;
        max-height: none;
        overflow-y: visible;
        align-items: flex-start;
    }

    .hero-program-content .program-text.highlight {
        font-size: 0.95rem;
        padding: 15px;
        white-space: normal;
        letter-spacing: normal;
    }

    .hero-program-content .program-text {
        font-size: 0.85rem;
    }

    .present-apply-button {
        font-size: 1rem;
        padding: 15px 40px;
    }

    .cast-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .cast-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .cast-name {
        font-size: 1rem;
    }

    .cast-team {
        font-size: 0.6rem;
        white-space: normal;
        line-height: 1.3;
    }

    .cast-section {
        padding: 40px 0;
    }
}