/* ============================================
   EXCLUSIVE SHOWCASE SECTION - BENTO GRID
   ============================================ */

.exclusive-showcase {
    padding: 4rem 0;
    background:
        linear-gradient(135deg, #0a0000 0%, #1a0505 25%, #2d0a0a 50%, #1a0505 75%, #0a0000 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Radial Glow Background */
.exclusive-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 40%);
    animation: glowPulse 6s ease-in-out infinite;
    pointer-events: none;
}

/* Floating Diamonds Pattern */
.exclusive-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 70px, rgba(212, 175, 55, 0.06) 70px, rgba(212, 175, 55, 0.06) 72px),
        repeating-linear-gradient(-45deg, transparent, transparent 70px, rgba(255, 215, 0, 0.05) 70px, rgba(255, 215, 0, 0.05) 72px);
    animation: diamondShift 15s linear infinite;
    pointer-events: none;
    opacity: 0.8;
}

.exclusive-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Decorative Corner Ornaments */
.exclusive-header::before,
.exclusive-header::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.exclusive-header::before {
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-top-color: rgba(255, 215, 0, 0.4);
    border-right-color: rgba(255, 215, 0, 0.4);
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.exclusive-header::after {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    border-bottom-color: rgba(255, 215, 0, 0.4);
    border-left-color: rgba(255, 215, 0, 0.4);
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.2),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.exclusive-title {
    font-family: var(--font-english-display);
    font-size: 2.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.exclusive-subtitle {
    font-size: 1.1rem;
    color: var(--color-cream);
    opacity: 0.9;
}

/* Header CTA Button */
.exclusive-cta-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #8B0000;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.exclusive-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.exclusive-cta-btn i {
    font-size: 1.1rem;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 160px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Decorative Grid Corners */
.bento-grid::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    pointer-events: none;
    z-index: -1;
}

/* Subtle Dot Pattern Overlay */
.bento-grid::after {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background-image:
        radial-gradient(circle, rgba(212, 175, 55, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

/* Grid Item Base Styles */
.bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

/* Grid Item Sizes */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

/* Media Content */
.bento-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover .bento-media {
    transform: scale(1.1);
}

.bento-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Content */
.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.bento-item:hover .bento-overlay {
    transform: translateY(0);
}

.bento-category {
    font-size: 0.75rem;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bento-name {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bento-description {
    font-size: 0.9rem;
    color: var(--color-cream);
    opacity: 0.9;
}

/* Featured Badge */
.bento-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #8B0000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* CTA Card */
.bento-cta {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(196, 30, 58, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px solid var(--color-gold-primary);
}

.bento-cta:hover {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.9) 0%, rgba(139, 0, 0, 0.9) 100%);
}

.bento-cta-icon {
    font-size: 3rem;
    color: var(--color-gold-primary);
    margin-bottom: 1rem;
}

.bento-cta-title {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.bento-cta-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #8B0000;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bento-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 160px);
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 768px) {
    .exclusive-title {
        font-size: 2rem;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 150px);
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-medium {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-tall {
        grid-column: span 1;
        grid-row: span 2;
    }
}

@media (max-width: 480px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-medium,
    .bento-small,
    .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 250px;
    }
}

/* Animations */
@keyframes glowPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes diamondShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}