/* ==========================================================================
   Gold Country Park - Premium Design System (CSS)
   ========================================================================== */

/* Typography & Core Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Outfit', sans-serif !important;
    background-color: #f3f6f9;
    color: #334155;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700;
}

/* Glassmorphism Variables & Utilities */
:root {
    --gold-primary: #b89150;
    --gold-dark: #97743b;
    --gold-light: #dfcba4;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

/* Navbar Premium Glassmorphism */
.navbar-area {
    background: rgba(26, 30, 33, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 48px;
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-item a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    position: relative;
    transition: color 0.3s ease !important;
    padding: 10px 15px !important;
}

.navbar-nav .nav-item:hover a,
.navbar-nav .nav-item.active a {
    color: #fff !important;
}

.navbar-nav .nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-item:hover a::after,
.navbar-nav .nav-item.active a::after {
    width: 25px;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
    background: rgba(26, 30, 33, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    padding: 15px !important;
}

.navbar-nav .nav-item.dropdown .dropdown-menu a {
    color: rgba(255, 255, 255, 0.7) !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.2s ease !important;
}

.navbar-nav .nav-item.dropdown .dropdown-menu a:hover {
    color: #fff !important;
    background: rgba(184, 145, 80, 0.15) !important;
    transform: translateX(4px);
}

/* Slider Glowing Card */
.slider-wrapper-premium {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: #fff;
    transition: all 0.3s ease;
}
.slider-wrapper-premium:hover {
    box-shadow: 0 20px 45px rgba(184, 145, 80, 0.12);
}

/* Premium Venue Grid Card */
.premium-venue-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.premium-venue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(184, 145, 80, 0.4) !important;
}

.premium-venue-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    margin: 12px;
}

.premium-venue-card .card-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
}

.premium-venue-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.premium-venue-card .card-body {
    padding: 0 20px 20px 20px !important;
    text-align: center;
}

.premium-venue-card .venue-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.premium-venue-card .label-booking {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8;
    margin-bottom: 2px;
    font-weight: 600;
}

.premium-venue-card .tel-link {
    font-size: 15px;
    color: var(--gold-primary) !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.premium-venue-card .tel-link:hover {
    color: var(--gold-dark) !important;
}

/* Call & WhatsApp Buttons with Gradients & Micro-animations */
.btn-premium-action-group {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 15px;
}

.btn-premium-action-group .btn-details {
    flex: 1;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border: none;
    color: #fff !important;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(184, 145, 80, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-premium-action-group .btn-details:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(184, 145, 80, 0.3);
    filter: brightness(1.05);
}

.btn-premium-action-group .btn-whatsapp {
    flex: 1.2;
    background: linear-gradient(135deg, #25d366 0%, #1cbd57 100%);
    border: none;
    color: #fff !important;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-premium-action-group .btn-whatsapp:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    filter: brightness(1.05);
}

/* Premium Social Icons Footer in Cards */
.card-social-footer {
    background-color: rgba(255,255,255,0.4);
    border-top: 1px solid rgba(255,255,255,0.5);
    padding: 12px;
    text-align: center;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.card-social-footer li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    color: #64748b;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.card-social-footer li a:hover {
    color: #fff !important;
    transform: translateY(-3px) rotate(8deg);
}

.card-social-footer li a.fb-h:hover { background: #1877f2; }
.card-social-footer li a.tw-h:hover { background: #1da1f2; }
.card-social-footer li a.ig-h:hover { background: #e1306c; }
.card-social-footer li a.yt-h:hover { background: #ff0000; }
.card-social-footer li a.pt-h:hover { background: #bd081c; }

/* Premium Sponsor/Ad Cards */
.premium-ad-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px dashed rgba(184, 145, 80, 0.3) !important;
    border-radius: 20px !important;
    box-shadow: var(--glass-shadow);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.premium-ad-card:hover {
    border-color: var(--gold-primary) !important;
    background: rgba(255, 255, 255, 0.7);
}

.premium-ad-card .ad-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Info Cards (About / Contact Link cards) */
.premium-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    box-shadow: var(--glass-shadow);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.premium-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: rgba(184, 145, 80, 0.25) !important;
}

.premium-info-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.premium-info-card p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
}

.premium-info-card .btn-outline-custom {
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    font-weight: 600;
    border-radius: 30px;
    font-size: 13px;
    padding: 8px 16px;
    transition: all 0.3s ease;
    background: transparent;
}
.premium-info-card .btn-outline-custom:hover {
    background: var(--gold-primary);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(184, 145, 80, 0.2);
}

/* Detail Page Header / Title Card */
.premium-detail-header-card {
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05) !important;
    margin-top: 25px;
}

.premium-detail-header-card h2 {
    font-size: 28px;
    color: #0f172a;
}

/* Tabs & Filter Pill Buttons */
.premium-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.premium-filter-tabs .btn {
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    padding: 8px 20px !important;
    transition: all 0.25s ease !important;
    border: 1.5px solid var(--gold-primary) !important;
    color: var(--gold-primary) !important;
    background: transparent;
}

.premium-filter-tabs .btn:hover {
    background: rgba(184, 145, 80, 0.08) !important;
    transform: translateY(-1px);
}

.premium-filter-tabs .btn.active {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(184, 145, 80, 0.25) !important;
}

/* Detail Announcement Card */
.premium-announcement-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.premium-announcement-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: rgba(184, 145, 80, 0.15) !important;
    transform: translateY(-2px);
}

.premium-announcement-card img {
    transition: transform 0.5s ease;
}
.premium-announcement-card:hover img {
    transform: scale(1.04);
}

/* Gallery Hover Text Overlay */
.gallery-card-item {
    border-radius: 16px;
    overflow: hidden;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    background-color: #fff;
    margin-bottom: 25px;
}
.gallery-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-card-item img {
    border-radius: 16px;
    transition: transform 0.5s ease;
}
.gallery-card-item:hover img {
    transform: scale(1.02);
}

/* Floating Contact Pulse Buttons */
.btn-floating-call, .btn-floating-wa {
    position: relative;
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.btn-floating-call {
    animation: pulse-call 2s infinite;
}

.btn-floating-wa {
    animation: pulse-wa 2s infinite;
}

/* ==========================================================================
   Campaigns Swiper Slider & Glassmorphic Details Modal
   ========================================================================== */

/* Campaign Section Title */
.campaign-section-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.campaign-section-title i {
    color: var(--gold-primary);
}

/* Swiper Slider Wrapper */
.swiper-campaigns {
    width: 100%;
    padding: 10px 5px 40px 5px !important;
}

/* Campaign Card */
.premium-campaign-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border) !important;
    border-radius: 20px !important;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-campaign-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 145, 80, 0.4) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Special styling for General Announcements (mekan_id = 0) */
.premium-campaign-card.general-campaign {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(253, 244, 215, 0.6) 100%);
    border: 1.5px solid rgba(184, 145, 80, 0.4) !important;
}

.premium-campaign-card .campaign-img-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.premium-campaign-card .campaign-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-campaign-card:hover .campaign-img-wrapper img {
    transform: scale(1.05);
}

/* Badges on Cards */
.premium-campaign-card .campaign-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.premium-campaign-card .campaign-badge-general {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    color: #fff;
}

.premium-campaign-card .campaign-badge-venue {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
}

.premium-campaign-card .campaign-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.premium-campaign-card .campaign-date {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.premium-campaign-card .campaign-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.premium-campaign-card .campaign-teaser {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}

.premium-campaign-card .btn-campaign-detail {
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    font-weight: 600;
    font-size: 12.5px;
    border-radius: 30px;
    padding: 6px 16px;
    width: 100%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.premium-campaign-card:hover .btn-campaign-detail {
    background: var(--gold-primary);
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(184, 145, 80, 0.2);
}

/* Glassmorphic Modal Popup */
.modal-glass {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background-color: rgba(15, 23, 42, 0.4);
}

.modal-content-glass {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden;
}

.modal-header-glass {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding: 20px 25px !important;
    background: rgba(255, 255, 255, 0.4);
}

.modal-header-glass .modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.modal-body-glass {
    padding: 25px !important;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer-glass {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding: 15px 25px !important;
    background: rgba(255, 255, 255, 0.4);
}

/* Modal details content style */
.modal-campaign-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.modal-campaign-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.modal-campaign-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.modal-campaign-text {
    font-size: 15px;
    line-height: 1.8;
    color: #334155;
}

.modal-campaign-text img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
}

.modal-close-btn-premium {
    background: #64748b !important;
    border: none !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 8px 22px !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    transition: all 0.2s ease !important;
}

.modal-close-btn-premium:hover {
    background: #475569 !important;
    transform: scale(1.02);
}

.modal-action-btn-premium {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 8px 22px !important;
    font-weight: 600 !important;
    font-size: 13.5px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 10px rgba(184, 145, 80, 0.2) !important;
}

.modal-action-btn-premium:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 6px 15px rgba(184, 145, 80, 0.3) !important;
}

/* Swiper Pagination and Buttons override */
.swiper-button-next, .swiper-button-prev {
    color: var(--gold-primary) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
    transition: all 0.2s ease !important;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--gold-primary) !important;
    color: #fff !important;
    transform: scale(1.05) !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold-primary) !important;
}

/* ==========================================================================
   Details Page Photo Zoom & Video Playback Design
   ========================================================================== */

/* Photo Gallery Premium Hover Zoom & Overlay */
.premium-gallery-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.gallery-img-wrapper img {
    transition: transform 0.5s ease !important;
}

.gallery-img-wrapper:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(184, 145, 80, 0.15);
}

.gallery-img-wrapper:hover img {
    transform: scale(1.05);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: 5;
}

.gallery-img-wrapper:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-hover-overlay i {
    color: #fff;
    font-size: 32px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-img-wrapper:hover .gallery-hover-overlay i {
    transform: scale(1);
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Video Preview Placeholder & Pulsing Play Button */
.premium-video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.premium-video-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(184, 145, 80, 0.12);
    border-color: rgba(184, 145, 80, 0.3);
}

.premium-video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-video-placeholder:hover img {
    transform: scale(1.03);
}

.video-play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.25);
    transition: background 0.3s ease;
    z-index: 5;
}

.premium-video-placeholder:hover .video-play-btn-overlay {
    background: rgba(15, 23, 42, 0.35);
}

.play-icon-pulse {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(184, 145, 80, 0.4);
    position: relative;
    padding-left: 4px; /* Align play icon */
}

@keyframes pulse-play-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 145, 80, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(184, 145, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(184, 145, 80, 0);
    }
}

.play-icon-pulse::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    animation: pulse-play-ring 2s infinite;
}

.premium-video-placeholder:hover .play-icon-pulse {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    box-shadow: 0 6px 20px rgba(184, 145, 80, 0.5);
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ==========================================================================
   CKEditor 5 Content Styles & Responsive Media Renderer
   ========================================================================== */
.ck-content {
    line-height: 1.8;
}
.ck-content figure.image {
    margin: 1.5rem auto;
    display: table;
    clear: both;
    text-align: center;
}
.ck-content figure.image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-width: 100%;
}
.ck-content figure.image.image-style-side {
    float: right;
    margin-left: 20px;
    max-width: 50%;
}
.ck-content figure.image.image-style-block-align-left {
    float: left;
    margin-right: 20px;
}
.ck-content figure.image.image-style-block-align-right {
    float: right;
    margin-left: 20px;
}
.ck-content figure.image figcaption {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
    font-style: italic;
}
/* Responsive Media Embed Container */
.ck-content figure.media {
    margin: 1.5rem 0;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.7);
    overflow: hidden;
    position: relative;
    width: 100%;
}
.ck-content figure.media iframe,
.ck-content figure.media video {
    border: 0;
}
/* Case 1: Direct child iframe (from legacy oembed translations) */
.ck-content figure.media > iframe,
.ck-content figure.media > video {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
    display: block;
}
/* Case 2: Nested oembed preview markup (from CKEditor previewsInData) */
.ck-content figure.media [data-oembed-url] {
    width: 100%;
}


