/* ============================================================
   AVTOMAKTAB PREMIUM - PREMIUM STYLES
   Exclusive Premium Features
   ============================================================ */

/* ===== PREMIUM GLOW EFFECT ===== */
.premium-glow {
    position: relative;
}

.premium-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient-gold);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-glow:hover::after {
    opacity: 0.5;
    filter: blur(10px);
}

/* ===== GOLDEN BORDER ===== */
.golden-border {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
                var(--gradient-gold) border-box;
}

/* ===== PREMIUM SHIMMER ===== */
.premium-shimmer {
    position: relative;
    overflow: hidden;
}

.premium-shimmer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(251, 191, 36, 0.1) 50%,
        transparent 70%
    );
    animation: premiumShimmer 3s ease-in-out infinite;
}

@keyframes premiumShimmer {
    0% { transform: translateX(-100%) rotate(0); }
    100% { transform: translateX(100%) rotate(0); }
}

/* ===== DIAMOND EFFECT ===== */
.diamond {
    position: relative;
}

.diamond::before {
    content: '💎';
    position: absolute;
    top: -15px;
    right: -10px;
    font-size: 20px;
    animation: float 2s ease-in-out infinite;
}

/* ===== CROWN BADGE ===== */
.crown-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: var(--gradient-gold);
    color: #000;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: var(--font-bold);
    box-shadow: var(--shadow-glow-gold);
}

/* ===== PREMIUM CARD ===== */
.premium-card {
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.05), 
        rgba(20, 23, 37, 0.9));
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.premium-card:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: var(--shadow-glow-gold);
}

/* ===== VIP BADGE ===== */
.vip-badge {
    background: linear-gradient(135deg, #f97316, #fbbf24, #f97316);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: #000;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: var(--font-extrabold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== EXCLUSIVE SECTION ===== */
.exclusive-section {
    position: relative;
}

.exclusive-section::before {
    content: 'EXCLUSIVE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 12px;
    background: var(--gradient-gold);
    color: #000;
    font-size: 8px;
    font-weight: var(--font-extrabold);
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    z-index: 2;
}

/* ===== LOCKED CONTENT ===== */
.locked-content {
    position: relative;
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border-radius: inherit;
    z-index: 10;
    cursor: pointer;
}

.locked-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.locked-text {
    font-size: 12px;
    font-weight: var(--font-bold);
    color: var(--accent-gold);
}
