﻿:root {
    --light-bg: #EAEAEA;
    --brand-accent: #000000;
    --safe-area: 1440px;
    --color-primary-from: #34d1ff;
    --color-primary-to: #2ae5c7;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../font/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../font/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../font/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../font/Inter-ExtraBold.woff2') format('woff2');
}

.max-container {
    max-width: var(--safe-area);
    margin: 0 auto;
}

.page-content {
    background-color: #fff;
}

.fs-hero {
    position: relative;
    height: 55vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #000;
    padding-bottom: 10px;
}

.fs-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fs-hero-video iframe,
.fs-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.fs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    z-index: 5;
}

.fs-hero-content {
    position: relative;
    z-index: 10;
    padding-bottom: 0;
    color: #fff;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fs-hero-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.fs-hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.fs-hero h1 {
    font-size: clamp(28px, 5vw, 39px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.fs-hero-desc {
    font-size: 18px;
    font-weight: 300;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
    margin-left: auto;
}

.fs-hero-actions {
    display: inline-flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.3s;
    line-height: 1;
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-primary1 {
    background: #fff;
    color: #000;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.3s;
    line-height: 1;
}

.btn-primary1:active {
    transform: translateY(1px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 40px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
}

.fs-section {
    padding: 40px 0;
}

.max-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.fs-section-header {
    margin-bottom: 10px;
}

.fs-section-title {
    font-size: 20px;
    font-weight: 300;
    color: #323232 !important;
}

.timeline-container {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.timeline-track {
    display: flex;
    min-width: 1000px;
    justify-content: space-between;
    position: relative;
    padding-top: 10px;
}

.timeline-track::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--border-color);
}

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-node:hover .node-circle {
    border-color: #000;
    transform: translateY(-2px);
}

.timeline-node:hover .node-title,
.timeline-node:hover .node-status {
    color: #000;
}

.node-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.timeline-node.active .node-circle {
    border-color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.node-title {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.node-status {
    font-size: 10px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.fs-fees-band {
    background: #fff;
    width: 100%;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}

.fs-fees-tab-container {
    display: flex;
    gap: 40px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    min-height: 500px;
}

.fs-fees-sidebar {
    flex: 0 0 280px;
    background: #fcfcfc;
    border-right: 1px solid #f0f0f0;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.fs-fees-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 50vw;
    background: #fcfcfc;
    z-index: -1;
}

.fs-unit-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    padding: 18px 30px;
    font-size: 15px;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.nav-item:hover {
    color: #000;
    background: #f5f5f5;
}

.nav-item.active {
    color: #000;
    font-weight: 600;
    background: #fff;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #000;
}

.fs-fees-main {
    flex: 1;
    padding: 40px 0;
    position: relative;
}

.unit-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.unit-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pane-header h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.pane-header p {
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
}

.tier-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: 0.3s;
    position: relative;
}

.tier-item.current {
    background: #fff;
    border-color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tier-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.tier-info span {
    font-size: 13px;
    color: #999;
}

.tier-prices {
    text-align: right;
    font-size: 15px;
    color: #555;
}

.tier-prices b {
    color: #000;
    font-size: 18px;
    margin-left: 5px;
}

.status-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pane-footer {
    margin-top: 50px;
    text-align: center;
}

.pane-footer .btn-primary {
    background: linear-gradient(135deg, var(--color-primary-from), var(--color-primary-to));
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.pane-footer .btn-primary:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-2px);
}

.pane-footer .btn-primary:disabled,
.pane-footer .btn-primary.disabled {
    background: #eee !important;
    color: #999 !important;
    cursor: not-allowed;
    transform: none !important;
}

@media (max-width: 900px) {
    .fs-fees-tab-container {
        flex-direction: column;
    }

    .fs-fees-sidebar {
        flex: 0 0 auto;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        overflow-x: auto;
        padding: 0;
    }

    .fs-unit-nav {
        display: flex;
        white-space: nowrap;
    }

    .nav-item {
        padding: 15px 25px;
        border-bottom: none;
    }

    .nav-item.active::before {
        width: auto;
        height: 3px;
        top: auto;
        left: 0;
        right: 0;
    }

    .tier-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tier-prices {
        text-align: left;
    }
}

.fs-about-light {
    background: #fff;
    color: #666;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-watermark {
    position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 100;
    color: rgba(0, 0, 0, 0.03);
    letter-spacing: 30px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    text-transform: uppercase;
}

.about-dark-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-dark-main {
    flex: 7;
}

.about-dark-side {
    flex: 3;
    position: sticky;
    top: 100px;
}

.about-dark-title {
    font-size: 20px;
    font-weight: 300;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-dark-text p {
    font-size: 14px;
    line-height: 2.0;
    color: #555;
    margin-bottom: 32px;
}

.about-dark-text strong {
    color: #000;
    font-weight: 500;
}

.about-dark-tips {
    font-style: italic;
    color: #999 !important;
    font-size: 13px !important;
    line-height: 1.8 !important;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-cred-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dark-cred-section {
    margin-bottom: 0;
}

.dark-cred-label {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 14px;
    display: block;
}

.dark-cert-frame {
    position: relative;
    cursor: pointer;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fdfdfd;
    transition: all 0.3s;
}

.dark-cert-frame:hover {
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark-cert-frame img {
    width: 100%;
    display: block;
    border-radius: 1px;
}

.dark-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    background: #00bcd4;
    color: #fff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 1px;
}

.dark-zoom-hint {
    position: absolute;
    inset: 8px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 0.3s;
}

.dark-cert-frame:hover .dark-zoom-hint {
    opacity: 1;
}

.dark-cred-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dark-cred-row .dark-cred-label {
    margin-bottom: 0;
}

.dark-cred-val {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.dark-features {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    letter-spacing: 1px;
    line-height: 1.8;
}

.fs-about-banner {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 1024px) {
    .about-dark-layout {
        flex-direction: column;
        gap: 50px;
    }

    .about-dark-side {
        position: static;
    }

    .about-watermark {
        font-size: 100px;
    }

    .fs-about-dark {
        padding: 40px 0;
    }
}

@media (max-width: 640px) {
    .about-watermark {
        font-size: 60px;
        letter-spacing: 10px;
    }

    .about-dark-title {
        font-size: 20px;
    }
}

#fs-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

#fs-lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.festival-apply-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 12000;
    padding: 20px;
}

.festival-apply-modal-overlay.show {
    display: flex;
}

.festival-apply-modal {
    width: min(500px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    background: #f3f3f3;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.festival-apply-modal-header {
    height: 66px;
    padding: 0 18px;
    border-bottom: 1px solid #ededed;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.festival-apply-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    line-height: 1;
}

.festival-apply-close {
    border: none;
    background: transparent;
    width: 34px;
    height: 34px;
    font-size: 30px;
    line-height: 1;
    color: #5f6068;
    cursor: pointer;
}

.festival-apply-modal-content {
    background: #fff;
    padding: 30px 22px 22px;
    text-align: center;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.festival-apply-summary {
    margin-bottom: 42px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e4e4e4;
    color: #202124;
}

.festival-apply-festival {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
}

.festival-apply-unit {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.festival-apply-fee-row {
    margin: 0 0 30px;
    font-size: 22px;
    line-height: 1.2;
    color: #222;
}

.festival-apply-fee-row strong {
    font-weight: 600;
}

.festival-apply-film-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 24px;
    font-size: 16px;
    color: #212121;
    white-space: nowrap;
}

.festival-apply-film-row label {
    white-space: nowrap;
    font-weight: 500;
}

.festival-film-select {
    position: relative;
    width: min(260px, 60vw);
    min-width: 200px;
}

.festival-film-trigger {
    width: 100%;
    height: 50px;
    padding: 0 12px;
    border: 1px solid #a7a7a7;
    border-radius: 6px;
    background: #fff;
    color: #222;
    font-size: 16px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.festival-film-arrow {
    font-size: 13px;
    color: #666;
    transition: transform 0.2s ease;
}

.festival-film-select.open .festival-film-arrow {
    transform: rotate(180deg);
}

.festival-film-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 5;
    max-height: 180px;
    overflow-y: auto;
    flex-direction: column;
}

.festival-film-select.open .festival-film-options {
    display: flex;
}

.festival-film-option {
    display: block;
    width: 100%;
    border: none;
    background: #fff;
    text-align: left;
    padding: 9px 12px;
    font-size: 15px;
    color: #222;
    cursor: pointer;
}

.festival-film-option:hover,
.festival-film-option.selected {
    background: #00c5b585 !important;
}

.festival-apply-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2px;
}

.festival-apply-btn {
    min-width: 132px;
    height: 42px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary-from), var(--color-primary-to));
}

.festival-apply-btn:active {
    transform: translateY(1px);
}

.festival-apply-tip {
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 1.35;
    color: #6a6a6a;
}

body.modal-open {
    overflow: hidden;
}

/* Business Modal V2 */
.festival-apply-modal {
    width: min(1320px, calc(100vw - 24px));
    max-height: calc(100vh - 24px);
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

.festival-apply-modal-header {
    height: 72px;
    padding: 0 30px;
    border-bottom: 1px solid #e7e7e7;
    background: #fff;
}

.festival-apply-modal-content {
    padding: 24px 30px 12px;
    max-height: calc(100vh - 168px);
    overflow-y: auto;
    text-align: left;
    flex: 1 1 auto;
}

.festival-apply-section {
    margin-bottom: 30px;
}

.festival-apply-section-title {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #1f2937;
    font-weight: 700;
}

.festival-apply-section-subtitle {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #5f6b7a;
}

.festival-film-select {
    width: 100%;
    min-width: 0;
}

.festival-film-trigger {
    height: 50px;
    border-color: #d4d8de;
    font-size: 14px;
    border-radius: 6px;
    padding: 0 18px;
}

.festival-film-options {
    top: calc(100% + 6px);
    border: 1px solid #d4d8de;
    border-radius: 6px;
    max-height: 260px;
}

.festival-film-option {
    padding: 12px 16px;
    font-size: 14px;
}

.festival-unit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.festival-unit-card {
    width: 100%;
    min-height: 60px;
    border: 1px solid #d4d8de;
    border-radius: 6px;
    background: #f5f5f5;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.festival-unit-card-name {
    font-size: 14px;
    color: #8d9aa8;
    font-weight: 400;
}

.festival-unit-card-price {
    font-size: 16px;
    color: #8d9aa8;
    font-weight: 400;
}

.festival-unit-card.selected {
    border-color: #111;
    background: #fff;
}

.festival-unit-card.selected .festival-unit-card-name,
.festival-unit-card.selected .festival-unit-card-price {
    color: #243447;
}

.festival-apply-footer {
    flex: 0 0 auto;
    background: #f5f5f5;
    border-top: 1px solid #e7e7e7;
    padding: 8px 30px 10px;
}

.festival-apply-actions {
    justify-content: flex-end;
    gap: 10px;
    margin: 0;
}

.festival-apply-btn {
    min-width: 122px;
    height: 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.festival-apply-btn-cancel {
    background: #f5f5f5;
    color: #1f2937;
    border: 1px solid #d4d8de;
}

.festival-apply-btn:not(.festival-apply-btn-cancel)[disabled] {
    background: #d8dde3 !important;
    color: #8f98a3 !important;
    cursor: not-allowed;
}

@media (max-width: 900px) {
    .festival-apply-modal {
        width: calc(100vw - 16px);
    }

    .festival-apply-modal-header {
        height: 56px;
        padding: 0 14px;
    }

    .festival-apply-modal-header h3 {
        font-size: 18px;
    }

    .festival-apply-modal-content {
        padding: 16px 14px 10px;
        max-height: calc(100vh - 124px);
    }

    .festival-apply-section {
        margin-bottom: 18px;
    }

    .festival-apply-section-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .festival-apply-section-subtitle {
        font-size: 12px;
    }

    .festival-film-option {
        font-size: 14px;
    }

    .festival-unit-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .festival-unit-card {
        padding: 0 12px;
    }

    .festival-unit-card-name,
    .festival-unit-card-price {
        font-size: 14px;
    }

    .festival-apply-btn {
        min-width: 88px;
        height: 36px;
        border-radius: 10px;
        font-size: 14px;
    }

    .festival-apply-footer {
        padding: 8px 14px 10px;
    }
}

@media (max-width: 768px) {
    .festival-apply-modal-header {
        height: 64px;
        padding: 0 16px;
    }

    .festival-apply-modal-header h3 {
        font-size: 16px;
    }

    .festival-apply-close {
        width: 36px;
        height: 36px;
        font-size: 36px;
    }

    .festival-apply-modal-content {
        padding: 20px 14px 16px;
    }

    .festival-apply-festival {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .festival-apply-unit {
        font-size: 16px;
    }

    .festival-apply-fee-row {
        font-size: 18px;
        margin: 0 0 14px;
    }

    .festival-apply-film-row {
        font-size: 15px;
        margin: 0 0 14px;
        gap: 8px;
    }

    .festival-film-select {
        width: 100%;
        min-width: 0;
    }

    .festival-apply-actions {
        gap: 10px;
    }

    .festival-apply-btn {
        flex: 1;
        min-width: 0;
        height: 38px;
        font-size: 14px;
    }

    .festival-apply-tip {
        font-size: 12px;
        margin-top: 12px;
    }
}

@media (max-width: 1024px) {
    .fs-about-layout {
        flex-direction: column;
        gap: 40px;
    }

    .fs-about-sidebar {
        width: 100%;
        flex: none;
    }
}


.fs-about-banner {
    width: 100%;
    height: 55vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-bottom: 60px;
}

.fs-carousel-title {
    color: #323232;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    margin-left: 10px;
}

.fs-carousel-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 0 10px;
    overflow: visible;
}

.fs-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.fs-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fs-carousel-item {
    flex: 0 0 33.333%;
    padding: 0 10px;
}

.fs-carousel-item img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: 0.3s;
}

.fs-carousel-item img:hover {
    filter: grayscale(0);
}

.carousel-nav-btn.fs-about-arrow {
    top: 50%;
}

.carousel-nav-btn.fs-about-arrow.prev {
    left: 15px;
}

.carousel-nav-btn.fs-about-arrow.next {
    right: 15px;
}

.fs-carousel-dots {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin: 30px auto;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 20px;
    -webkit-overflow-scrolling: touch;
    width: fit-content;
    max-width: 100%;
}

.fs-carousel-dots::-webkit-scrollbar {
    display: none;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dot:hover {
    background: #a0a0a0;
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(135deg, #34d1ff, #2ae5c7);
    transform: none;
}

@media (max-width: 1024px) {
    .fs-carousel-item {
        flex: 0 0 50%;
    }

    .carousel-nav-btn.fs-about-arrow {
        display: none;
    }

    .fs-carousel-dots {
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .fs-carousel-item {
        flex: 0 0 100%;
    }

    .fs-about-banner {
        height: 40vh;
    }
}

.cases-accordion-section {
    background: #fff;
    padding: 60px 0;
    position: relative;
}

.container-accordion-layout {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.accordion-carousel {
    position: relative;
    overflow: visible;
}

#accordion-carousel-related {
    overflow: visible;
}

.festival-carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 20px 0 40px;
    margin-top: -20px;
}

.accordion-carousel-track,
.festival-carousel-track {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-carousel-track {
    height: 420px;
}

.accordion-item {
    position: relative;
    flex: 0 0 20%;
    flex-shrink: 0;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
    cursor: pointer;
    z-index: 1;
    padding: 0 4px;
    box-sizing: border-box;
}

.accordion-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
    border-radius: 8px;
}

.accordion-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
}

.accordion-dots {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 5px 10px;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.accordion-dots::-webkit-scrollbar {
    display: none;
}

.accordion-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--color-primary-from), var(--color-primary-to));
}

#accordion-track-winners:hover .accordion-item:not(:hover) {
    filter: brightness(0.6) grayscale(0.2);
}

.accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.accordion-item:hover .accordion-content {
    opacity: 1;
    transform: translateY(0);
}

.accordion-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.accordion-content h4 {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .accordion-item {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .accordion-item {
        flex: 0 0 100%;
    }

    .accordion-item:hover {
        transform: none;
    }

    .accordion-content {
        opacity: 1;
        transform: none;
        height: auto;
        padding: 20px;
    }

    .accordion-carousel-track {
        height: 450px;
    }

    .accordion-dots {
        gap: 8px;
    }
}

.fs-awards-light {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.awards-watermark {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.awards-group {
    margin-top: 20px;
}

.awards-group-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
}

.award-card {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
    border-left: 1px solid #ddd;
    transition: all 0.4s ease;
    cursor: default;
}

.award-card:hover {
    border-left: 1px solid #000;
    transform: translateX(6px);
    color: #000;
}

.fs-rules-light {
    background: #f8f8f8;
    padding: 100px 0 40px;
}

.rules-magazine-layout {
    display: flex;
    gap: 100px;
}

.rules-meta {
    flex: 0 0 300px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.light-section-title {
    font-size: 20px;
    font-weight: 300;
    color: #000;
    margin-bottom: 60px;
}

.meta-item {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.meta-label {
    display: block;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.meta-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.6;
}

.rules-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.rule-row {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.rule-row:last-child {
    border-bottom: none;
}

.rule-index {
    font-size: 24px;
    font-weight: 200;
    color: #555;
    font-family: serif;
    line-height: 1;
    min-width: 40px;
}

.rule-content {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    padding-top: 5px;
}

@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .rules-magazine-layout {
        flex-direction: column;
        gap: 60px;
    }

    .rules-meta {
        flex: 1;
        position: static;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awards-watermark {
        font-size: 100px;
    }
}

@media (max-width: 480px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

.carousel-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: #cdcdcd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
    opacity: 0.6;
}

.carousel-nav-btn.prev {
    left: 4px;
}

.carousel-nav-btn.next {
    right: 4px;
}

.carousel-nav-btn svg {
    display: block;
}

.carousel-nav-btn svg path {
    stroke: #000;
}

.carousel-nav-btn:hover {
    background: #cdcdcd;
    opacity: 1;
    transform: translateY(-50%);
}

@media (max-width: 1560px) {
    .carousel-nav-btn.prev {
        left: 4px;
    }

    .carousel-nav-btn.next {
        right: 4px;
    }
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none !important;
    }

    .fs-carousel-dots {
        display: none !important;
    }

    .accordion-nav {
        display: none !important;
    }
}

.festival-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px 15px;
    justify-content: flex-start;
}

.festival-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.festival-carousel-track .festival-card-cell {
    flex: 0 0 25%;
    padding: 0 5px;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .festival-carousel-track .festival-card-cell {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .festival-carousel-track .festival-card-cell {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .festival-carousel-track .festival-card-cell {
        flex: 0 0 100%;
    }
}

#related-dots .accordion-dot.active {
    background: linear-gradient(135deg, #34d1ff, #2ae5c7);
}

#accordion-carousel-related .accordion-nav {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
}

.festival-card-cell {
    position: relative;
    width: 100%;
    min-width: 0;
}

.festival-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.festival-card {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.festival-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 12px 12px 0 0;
}

.card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.festival-card:hover .card-poster img {
    opacity: 0.9;
}

.festival-top-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #00c5b5;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px 0 10px 0;
    z-index: 2;
}

.card-info {
    padding: 12px 15px 15px;
}

.festival-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    height: 22px;
    overflow: hidden;
    margin-bottom: 12px;
}

.tag {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    line-height: 1.4;
    background: #f3f4f6;
    color: #6b7280;
    border: none;
    text-transform: none;
    font-weight: 400;
}

.qualification {
    font-size: 13px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deadline {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
}

.edition-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edition {
    font-size: 12px;
    color: #6b7280;
}

.promo-tag {
    font-size: 12px;
    color: #00c5b5;
    border: 1px solid #00c5b5;
    padding: 1px 4px;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .festival-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fs-hero {
        align-items: flex-end;
        height: auto;
        min-height: 380px;
        padding-top: 60px;
        padding-bottom: 10px;
    }

    .fs-hero-content {
        text-align: center;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .fs-hero h1 {
        margin-bottom: 20px;
        font-size: 28px;
    }

    .fs-hero-actions {
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 130px;
        padding: 12px 0;
        font-size: 13px;
        text-align: center;
        display: inline-block;
        border-width: 1px;
    }
}

@media (max-width: 600px) {
    .festival-matrix {
        grid-template-columns: 1fr;
    }
}

.fs-info-section {
    background: #fff;
    padding: 70px 0 50px;
    position: relative;
}

.fs-info-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.fs-info-sidebar {
    flex: 0 0 220px;
    position: sticky;
    top: 100px;
}

.fs-logo-card {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 28px;
}

.fs-logo-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.fs-sidebar-meta {
    padding: 8px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.fs-sidebar-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fs-sidebar-meta-label {
    font-size: 13px;
    font-weight: 400;
    color: #555;
    margin: 0;
    letter-spacing: 0.5px;
}

.fs-sidebar-meta-val {
    font-size: 14px;
    color: #555;
    font-weight: 400;
}

.fs-sidebar-features {
    margin-top: 10px;
    font-size: 13px;
    color: #777;
    line-height: 1.8;
    letter-spacing: 1px;
}

.fs-info-main {
    flex: 1;
    min-width: 0;
}

.fs-info-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
}

.fs-info-tab {
    background: transparent;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 400;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
    letter-spacing: 1px;
}

.fs-info-tab:first-child {
    padding-left: 0;
}

.fs-info-tab:hover {
    color: #333;
}

.fs-info-tab.active {
    color: #222;
    font-weight: 500;
}

.fs-info-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #222;
}

.fs-info-tab:first-child.active::after {
    left: 0;
}

.fs-tab-pane {
    display: none;
}

.fs-tab-pane.active {
    display: block;
    animation: fadeTabIn 0.35s ease;
}

@keyframes fadeTabIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fs-tab-pane .about-dark-text {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}

.fs-tab-pane .about-dark-text p {
    margin-bottom: 16px;
}

.fs-tab-pane .about-dark-tips {
    color: #888;
    font-size: 13px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.fs-tab-pane .awards-group {
    margin: 0;
    padding: 0;
}

.fs-tab-pane .awards-group-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 18px;
}

.fs-tab-pane .awards-grid {
    gap: 10px;
}

.fs-tab-pane .rules-list {
    display: block;
}

.fs-tab-pane .rules-info-line {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 6px;
    color: #444;
    padding: 6px 10px;
    background: #f8f8f8;
    border-radius: 4px;
}

.fs-tab-pane .rules-info-line strong {
    color: #000;
    font-weight: 600;
}

.fs-tab-pane .rule-text-row {
    font-size: 14px;
    line-height: 2.0;
    margin-bottom: 12px;
    color: #555;
    text-align: justify;
    padding-left: 2px;
}

.fs-tab-pane .rule-text-row:last-child {
    margin-bottom: 0;
}

.fs-tab-pane .collapse-trigger-bar {
    border-top: none;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .fs-info-layout {
        flex-direction: column;
        gap: 30px;
    }

    .fs-info-sidebar {
        flex: none;
        width: 100%;
        position: static;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .fs-logo-card {
        width: 150px;
        margin-bottom: 20px;
    }

    .fs-sidebar-meta {
        width: 100%;
        padding: 12px 0;
    }

    .fs-info-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
}

.fs-about-content-layout {
    display: flex;
    gap: 40px;
}

.fs-about-text-col {
    flex: 0 0 70%;
}

.fs-about-cert-col {
    flex: 0 0 calc(30% - 40px);
}

.fs-cert-card {
    position: relative;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #f9f9f9;
    padding: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fs-cert-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.fs-cert-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00BCD4;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 2px;
    z-index: 2;
    font-weight: 500;
}

.fs-cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.fs-cert-overlay span {
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 12px;
    color: #fff;
    letter-spacing: 2px;
    box-shadow: none;
    transform: translateY(0);
    transition: none;
}

.fs-cert-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.fs-cert-card:hover .fs-cert-overlay {
    opacity: 1;
}

.fs-cert-card:hover .fs-cert-overlay span {
    transform: translateY(0);
}

.fs-cert-card:hover .fs-cert-img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .fs-about-content-layout {
        gap: 30px;
    }

    .fs-about-text-col {
        flex: 0 0 60%;
    }

    .fs-about-cert-col {
        flex: 0 0 40%;
    }
}

@media (max-width: 768px) {
    .fs-about-content-layout {
        flex-direction: column;
    }

    .fs-about-text-col,
    .fs-about-cert-col {
        flex: 1 1 100%;
    }

    .fs-about-cert-col {
        margin-top: 20px;
    }

    .fs-cert-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

.collapsible-wrapper {
    position: relative;
    max-height: 480px;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapsible-wrapper.expanded {
    max-height: none;
}

.collapsible-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, #fff 20%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.collapsible-wrapper.expanded .collapsible-fade {
    opacity: 0;
}

.collapse-trigger-bar {
    display: flex;
    justify-content: flex-end;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: 5px;
    position: relative;
    background: #fff;
    z-index: 10;
}

.btn-toggle-expand {
    background: transparent;
    border: none;
    color: #555;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    transition: color 0.2s;
}

.btn-toggle-expand:hover {
    color: #555;
}

.btn-toggle-expand .arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapsible-wrapper.expanded+.collapse-trigger-bar .btn-toggle-expand .arrow-icon {
    transform: rotate(180deg);
}

.fs-section[style*="background: #F9F9F9"] .collapsible-fade {
    background: linear-gradient(to top, #F9F9F9 20%, rgba(249, 249, 249, 0.8) 50%, transparent 100%);
}

.hero-volume-btn {
    position: relative;
    z-index: 100;
    background: transparent;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    margin-left: 10px;
}

.hero-volume-btn:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .fs-hero {
        align-items: flex-end;
        padding-bottom: 20px;
    }

    .fs-hero-content {
        align-items: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }

    .fs-hero-inner {
        width: 100%;
    }

    .fs-hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .fs-hero-actions {
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 12px;
    }

    .hero-volume-btn {
        width: 36px;
        height: 36px;
        margin-left: 6px;
    }
}
