/* ========================================
   EXHIBITION SECTION STYLES - Seven Role Play
======================================== */

#exhibition {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 90%, #1a0d2e 100%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

#exhibition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(153, 18, 230, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(153, 18, 230, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Hero */
.exhibition-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.exhibition-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* بنفسجي (الأساسي) */
.exhibition-badge.purple {
    background: linear-gradient(135deg, rgba(153, 18, 230, 0.25), rgba(168, 85, 247, 0.25));
    border-color: rgba(153, 18, 230, 0.5);
    color: #9912E6;
    box-shadow: 0 10px 30px rgba(153, 18, 230, 0.3);
}

.exhibition-badge.purple::before {
    background: linear-gradient(135deg, #9912E6, #a855f7);
}

/* أحمر (التسريبات) */
.exhibition-badge.red {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.25), rgba(255, 142, 142, 0.25));
    border-color: rgba(255, 107, 107, 0.5);
    color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.exhibition-badge.red::before {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

/* أخضر (الإضافات) */
.exhibition-badge.green {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 204, 106, 0.25));
    border-color: rgba(0, 255, 136, 0.5);
    color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.exhibition-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #9912E6, #ffffff, #9912E6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Tajawal', sans-serif !important;
}

.exhibition-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Tajawal', sans-serif !important;
}

/* Filters */
.exhibition-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Tajawal', sans-serif !important;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #9912E6, #a855f7);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(153, 18, 230, 0.4);
}

/* Gallery Grid */
.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.exhibition-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    height: 100%;
    opacity: 1;
    transform: scale(1);
}

.exhibition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.exhibition-item:hover::before {
    left: 100%;
}

.exhibition-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 70px rgba(153, 18, 230, 0.35);
    border-color: rgba(153, 18, 230, 0.5);
}

.exhibition-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

/* Item Image */
.item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.exhibition-item:hover .item-image img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(153, 18, 230, 0.9), rgba(168, 85, 247, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}


.exhibition-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay i {
    font-size: 2.5rem;
    color: #000;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

/* تأكد إن الكود كامل موجود */
.server .item-overlay {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.95), rgba(0, 204, 106, 0.9));
}

.beta .item-overlay {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(255, 142, 142, 0.9));
}

.gallery .item-overlay {
    background: linear-gradient(135deg, rgba(153, 18, 230, 0.95), rgba(168, 85, 247, 0.9));
}

/* Item Info */
.item-info {
    padding: 2rem;
}

.item-info h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif !important;
    line-height: 1.3;
}

.leaks .item-info h3 {
    color: #ff6b6b;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.item-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Tajawal', sans-serif !important;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.date {
    color: #9912E6;
}

.views {
    color: rgba(255, 255, 255, 0.7);
}

.views i {
    margin-right: 0.3rem;
}

/* CTA */
.exhibition-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 700px;
    margin: 0 auto;
}

.exhibition-cta h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif !important;
}

.exhibition-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-family: 'Tajawal', sans-serif !important;
}

.cta-discord {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #9912E6, #a855f7);
    color: #000 !important;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(153, 18, 230, 0.4);
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif !important;
}

.cta-discord:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(153, 18, 230, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .exhibition-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .exhibition-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .item-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .exhibition-hero {
        margin-bottom: 2.5rem;
    }
    
    .exhibition-title {
        font-size: 2.2rem;
    }
    
    .item-image {
        height: 200px;
    }
}







/* Gallery Items Style */
.gallery .item-info h3 {
    color: #9912E6 !important;
    text-shadow: 0 0 25px rgba(153, 18, 230, 0.7);
}

.gallery .item-meta .date {
    color: #a855f7 !important;
    font-weight: 700;
}

.gallery {
    border-color: rgba(153, 18, 230, 0.5) !important;
    background: rgba(153, 18, 230, 0.1) !important;
}

/* الكلاسات مع بعض */
.server .item-info h3 {
    color: #00ff88 !important;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.beta .item-info h3 {
    color: #ff6b6b !important;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
}

.server .item-meta .date {
    color: #00cc6a !important;
    font-weight: 700;
}

.beta .item-meta .date {
    color: #ff8e8e !important;
    font-weight: 700;
}

/* Server Items */
.server {
    border-color: rgba(0, 255, 136, 0.4) !important;
    background: rgba(0, 255, 136, 0.08) !important;
}

.server:hover {
    box-shadow: 0 35px 70px rgba(0, 255, 136, 0.4) !important;
    border-color: rgba(0, 255, 136, 0.6) !important;
}

/* Beta Items */
.beta {
    border-color: rgba(255, 107, 107, 0.4) !important;
    background: rgba(255, 107, 107, 0.08) !important;
}

.beta:hover {
    box-shadow: 0 35px 70px rgba(255, 107, 107, 0.4) !important;
    border-color: rgba(255, 107, 107, 0.6) !important;
}

/* Filter Buttons Update */
.filter-btn[data-filter="server"] {
    border-color: rgba(0, 255, 136, 0.4);
}

.filter-btn[data-filter="beta"] {
    border-color: rgba(255, 107, 107, 0.4);
}

.filter-btn[data-filter="gallery"] {
    border-color: rgba(153, 18, 230, 0.4);
}

.filter-btn[data-filter="server"].active,
.filter-btn[data-filter="server"]:hover {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.filter-btn[data-filter="beta"].active,
.filter-btn[data-filter="beta"]:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: #000;
}

.filter-btn[data-filter="gallery"].active,
.filter-btn[data-filter="gallery"]:hover {
    background: linear-gradient(135deg, #9912E6, #a855f7);
    color: #000;
}




/* Categories Bar */
.exhibition-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Badge Corner (الشارة في الزاوية) */
.badge-corner {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.badge-corner.purple {
    background: linear-gradient(135deg, #9912E6, #a855f7);
    color: #000;
    box-shadow: 0 5px 15px rgba(153, 18, 230, 0.5);
}

.badge-corner.red {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.5);
}

.badge-corner.green {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* VIP Items Style */
.vip .item-info h3 {
    color: #9912E6 !important;
    text-shadow: 0 0 20px rgba(153, 18, 230, 0.6);
}

.vip .item-meta .date {
    color: #a855f7 !important;
    font-weight: 700;
}

.vip {
    border-color: rgba(153, 18, 230, 0.4) !important;
    background: rgba(153, 18, 230, 0.08) !important;
}

.vip:hover {
    box-shadow: 0 35px 70px rgba(153, 18, 230, 0.45) !important;
    border-color: rgba(153, 18, 230, 0.6) !important;
}

/* فلتر VIP */
.filter-btn[data-filter="vip"] {
    border-color: rgba(153, 18, 230, 0.4);
}

.filter-btn[data-filter="vip"].active,
.filter-btn[data-filter="vip"]:hover {
    background: linear-gradient(135deg, #9912E6, #a855f7);
}


/* Store Invite Styles */
.store-invite .message-avatar {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.chat-invite-btn.store {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #000 !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    font-weight: 800;
}

.chat-invite-btn.store:hover {
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
    transform: translateY(-3px) scale(1.05);
}