.exclusive-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lock-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.exclusive-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #FFC400, #FFB700, #FF8A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.exclusive-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 244, 214, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Exclusive Grid */
.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.exclusive-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 183, 0, 0.3);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.exclusive-card:hover {
    transform: translateY(-10px);
    border-color: var(--honey-gold);
    box-shadow: 0 15px 40px rgba(255, 183, 0, 0.4);
}

.exclusive-card.premium {
    border-color: var(--honey-orange);
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.1), rgba(255, 138, 0, 0.1));
}

.exclusive-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--honey-gold);
    color: var(--warm-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 1;
}

.exclusive-card.premium .exclusive-badge {
    background: var(--honey-orange);
    animation: pulse 2s infinite;
}

.exclusive-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.2), rgba(255, 138, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-overlay {
    transition: transform 0.3s;
}

.exclusive-card:hover .thumbnail-overlay {
    transform: scale(1.2);
}

.exclusive-content {
    padding: 2rem;
}

.exclusive-content h3 {
    font-size: 1.5rem;
    color: var(--honey-yellow);
    margin-bottom: 0.5rem;
}

.exclusive-meta {
    color: var(--honey-gold);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.exclusive-description {
    color: rgba(255, 244, 214, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Access Info */
.access-info {
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.15), rgba(255, 138, 0, 0.15));
    border: 2px solid rgba(255, 183, 0, 0.5);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
}

.access-info h2 {
    font-size: 2.5rem;
    color: var(--honey-yellow);
    margin-bottom: 3rem;
}

.access-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.access-option {
    background: rgba(17, 17, 17, 0.4);
    border: 2px solid rgba(255, 183, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.access-option:hover {
    border-color: var(--honey-gold);
    transform: translateY(-5px);
}

.access-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.access-option h3 {
    font-size: 1.5rem;
    color: var(--honey-yellow);
    margin-bottom: 1rem;
}

.access-option p {
    color: rgba(255, 244, 214, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .exclusive-header h1 {
        font-size: 2rem;
    }
    
    .exclusive-grid {
        grid-template-columns: 1fr;
    }
    
    .access-info {
        padding: 2rem 1.5rem;
    }
    
    .access-info h2 {
        font-size: 2rem;
    }
}
