.kv-outer-wrapper {
    width: 100vw;
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #020202 0%, #150002 40%, #201301 80%, #020202 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .kv-outer-wrapper {
        margin-top: 60px;
        padding: 32px 0;
    }
}

.kv-container {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    text-decoration: none;
    position: relative;
}

@media (max-width: 767px) {
    .kv-container {
        padding: 0 16px;
    }
}

.kv-image-container {
    position: relative;
    margin: 0 auto;
    height: 60vh;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
    transition: border-color 0.4s ease;
}

@media (max-width: 767px) {
    .kv-image-container {
        height: 35vh;
    }
}

.kv-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.kv-btn-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 0.9rem;
    padding: 12px 28px;
    border: 1px solid #D4AF37;
    background: rgba(0, 0, 0, 0.85);
    color: #D4AF37 ;
    font-weight: bold;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 12;
}

.kv-container:hover .kv-btn-overlay {
    background: #D4AF37;
    color: #000000 ;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 767px) {
    .kv-btn-overlay {
        bottom: 12px;
        right: 12px;
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

.top-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .top-section {
        padding: 60px 0;
    }
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

@media (max-width: 767px) {
    .news-container {
        padding: 16px;
        margin: 0 16px;
    }
}

.news-item {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 576px) {
    .news-item {
        flex-direction: row;
        align-items: center;
    }
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 0.85rem;
    color: #D4AF37;
    width: 120px;
    font-weight: 700;
}

.news-title {
    font-size: 0.95rem;
    color: #eee;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s;
}

.news-title:hover {
    color: #D4AF37;
}

.youtube-promo-section {
    width: 100vw;
    padding: 100px 0;
    background: linear-gradient(to right, #020202 0%, #0c0c0c 50%, #020202 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 10;
}

.youtube-promo-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .youtube-promo-grid {
        grid-template-columns: 1.1fr 1fr;
    }
}

@media (max-width: 767px) {
    .youtube-promo-grid {
        padding: 0 16px;
        gap: 24px;
    }
}

.youtube-promo-image-box {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.youtube-promo-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.youtube-promo-grid:hover .youtube-promo-image-box {
    border-color: #ff003c;
}

.youtube-promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.youtube-icon-wrapper {
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #ff003c;
    border-radius: 50%;
}

.youtube-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.youtube-promo-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.youtube-promo-desc {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 28px;
}

.youtube-btn {
    display: inline-block;
    font-size: 0.95rem;
    padding: 12px 32px;
    border: 1px solid #D4AF37;
    border-radius: 4px;
    background: transparent;
    color: #D4AF37;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.1em;
    width: fit-content;
    transition: all 0.3s ease;
}

.youtube-btn:hover {
    background: #D4AF37;
    color: #ffffff;
}

.fc-membership-section {
    width: 100vw;
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.fc-membership-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .fc-membership-grid {
        grid-template-columns: 1fr 1.1fr;
    }
}

@media (max-width: 767px) {
    .fc-membership-grid {
        padding: 0 16px;
        gap: 24px;
    }
}

.fc-promo-image-box {
    transition: all 0.4s ease;
}

.fc-promo-image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fc-promo-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #D4AF37;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.15);
}

.fc-promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.fc-promo-title {
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 16px;
    font-weight: 700;
}

.fc-promo-desc {
    font-size: 0.85rem ;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 28px;
}

.fc-buttons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
}

@media (min-width: 576px) {
    .fc-buttons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fc-btn-gold {
    display: inline-block;
    font-size: 0.9rem;
    padding: 12px 20px;
    border: 1px solid #ff003c;
    border-radius: 4px;
    background: transparent;
    color: #ff003c;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
    transition: all 0.3s ease;
}

.fc-btn-gold:hover {
    background: #ff003c;
    color: #000000;
}

.archive-banner-section {
    width: 100vw;
    padding: 100px 0 140px;
    background: #030303;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .archive-banner-section {
        padding: 60px 0 100px;
    }
}

.archive-banner-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

@media (max-width: 767px) {
    .archive-banner-container {
        padding: 0 16px;
    }
}

.archive-banner-title {
    font-size: 2.0rem;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.archive-banner-desc {
    font-size: 0.85rem ;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.archive-banner-btn {
    display: inline-block;
    font-size: 1.05rem;
    padding: 14px 44px;
    border: 1px solid #D4AF37;
    border-radius: 4px;
    background: transparent;
    color: #D4AF37 ;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.archive-banner-btn:hover {
    background: #D4AF37;
    color: #000000 ;
}
