/* ================================================
   HENDOSHI - VAULT - VAULT GRID
   ================================================
   
   Purpose: Vault gallery masonry grid layout and card styling
   
   Contains:
   - Modern masonry grid layout
   - Vault card components
   - Gallery organization
   - Responsive vault displays
   
   Dependencies: variables.css, animations.css
   Load Order: Load after foundation and components
   ================================================ */

/* Modern Masonry Grid Layout */
.vault-card {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(20, 20, 20, 0.95);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    contain: layout style;
}

.vault-card::before {
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    content: "";
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vault-card:hover::before {
    opacity: 0;
}

.vault-card:hover {
    z-index: 1000;
    margin-top: -5px;
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.vault-image-container {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.95);
}

.vault-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.vault-card:hover .vault-image {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.vault-overlay {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.9), rgba(204, 255, 0, 0.7));
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vault-card:hover .vault-overlay {
    opacity: 1;
}

.vault-overlay-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    transform: scale(0.8);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--black);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vault-card:hover .vault-overlay-link {
    transform: scale(1.05);
}

.vault-overlay-link:hover {
    border-color: var(--off-white);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Grid overlay vote buttons — circular, consistent with overlay aesthetic */
.vault-vote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    color: var(--off-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.vault-vote-btn:hover,
.vault-vote-btn.voted {
    background: rgba(255, 255, 255, 0.35);
    border-color: var(--off-white);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
    color: #fff;
}

.vault-vote-btn.btn-success,
.vault-vote-btn.btn-outline-success {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.vault-vote-btn.btn-danger,
.vault-vote-btn.btn-outline-danger {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.vault-info {
    display: flex;
    z-index: 1;
    position: relative;
    flex: 1;
    flex-direction: column;
    min-height: 140px;
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.95);
}

.vault-caption {
    display: -webkit-box;
    margin-bottom: 0.75rem;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vault-user {
    display: inline-block;
    margin-top: auto;
    margin-bottom: 0;
    color: rgba(255, 20, 147, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.vault-likes {
    display: inline-flex;
    align-items: center;
    float: right;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.vault-likes i {
    color: var(--neon-pink);
    animation: vault-heartbeat 2s ease-in-out infinite;
}

/* vault-heartbeat moved to static/css/animations.css */

/* Vault Grid Like Button - Bottom Right of Card Container */
.vault-grid-like-btn {
    display: flex;
    z-index: 5;
    position: absolute;
    right: 12px;
    bottom: 12px;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 20, 147, 0.4);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vault-grid-like-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 20, 147, 0.9);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
}

.vault-grid-like-btn:hover,
.vault-grid-like-btn.liked {
    border-color: var(--neon-pink);
    color: var(--off-white);
}

.vault-grid-like-btn.liked {
    background: linear-gradient(135deg, var(--neon-pink), rgba(255, 20, 147, 0.8));
    animation: pulse-heart 1.5s ease-in-out infinite;
}

.vault-grid-like-btn.liked i {
    color: var(--off-white);
}

/* pulse-heart moved to static/css/animations.css */

/* ========================================
    FEATURED CAROUSEL - PREMIUM DESIGN
    ======================================== */

.vault-featured-header {
    z-index: 2;
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
}

.vault-featured-title {
    margin-bottom: 1rem;
    background: linear-gradient(
        135deg,
        var(--electric-yellow),
        var(--neon-pink),
        var(--electric-yellow)
    );
    background-size: 200% 200%;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: vault-gradient-shift 6s ease infinite;
}

.vault-featured-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-size: 1.2rem;
}

.vault-featured-note {
    margin-top: 0.5rem;
    color: rgba(255, 20, 147, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.vault-featured-carousel {
    z-index: 2;
    position: relative;
    width: 100%;
    margin: 0;
}

/* .vault-featured-track styles defined below in carousel section */

.vault-featured-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
}

.vault-featured-card {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.95);
    transition: all 0.4s ease;
}

/* Override glassmorphic-card when used on featured cards */
body .vault-featured-card.glassmorphic-card {
    background: rgba(20, 20, 20, 0.95);
}

.vault-featured-card:hover {
    z-index: 1000;
    margin-top: -5px;
    border-color: var(--electric-yellow);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.vault-featured-image-container {
    position: relative;
    aspect-ratio: 4/5;
    width: 100%;
    overflow: hidden;
}

.vault-featured-image-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.vault-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Click indicator - small pink eye icon in corner */
.vault-featured-click-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--neon-pink), var(--electric-yellow));
    color: #000;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.vault-featured-card:hover .vault-featured-click-indicator {
    opacity: 0;
}

/* Carousel rendering / performance hints moved into the single
   authoritative `.vault-featured-track` rule below to avoid duplicates. */

.vault-featured-card:hover .vault-featured-image {
    transform: scale(1.05);
}

.vault-featured-overlay {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 20, 147, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vault-featured-card:hover .vault-featured-overlay {
    opacity: 1;
}

.vault-featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--electric-yellow), rgba(255, 255, 0, 0.8));
    box-shadow: 0 4px 15px rgba(204, 255, 0, 0.5);
    color: var(--black);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vault-featured-actions {
    gap: 0.75rem;
}

.vault-featured-actions,
.vault-featured-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vault-featured-link {
    width: 70px;
    height: 70px;
    transform: scale(0.8);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--black);
    font-size: 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vault-featured-link-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    color: var(--off-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.vault-featured-link:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: var(--off-white);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
    color: #fff;
}

.vault-featured-vote-btn,
.vault-featured-like-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 45px !important;
    height: 45px !important;
    padding: 0 !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--off-white) !important;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vault-featured-vote-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: var(--off-white);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
    color: #fff;
}

/* Featured carousel like button - positioned like grid like button */
.vault-featured-image-container {
    position: relative;
}

/* like button positioned at card bottom-right (outside the photo) */
.vault-featured-like-btn {
    z-index: 6;
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 20, 147, 0.4);
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.vault-featured-like-btn:hover {
    transform: scale(1.05);
    border-color: var(--neon-pink);
    background: rgba(255, 20, 147, 0.9);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.5);
    color: var(--off-white);
}

.vault-featured-like-btn.liked {
    border-color: var(--neon-pink);
    background: linear-gradient(135deg, var(--neon-pink), rgba(255, 20, 147, 0.8));
    color: var(--off-white);
    animation: pulse-heart 1.5s ease-in-out infinite;
}

.vault-featured-like-btn.liked i {
    color: var(--off-white);
}

.vault-featured-info {
    display: flex;
    position: relative;
    flex: 1;
    flex-direction: column;
    min-height: 100px;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.95);
}

.vault-featured-caption {
    margin-bottom: 0.5rem;
    color: var(--off-white);
    font-weight: 700;
    font-size: 0.9rem;
}

.vault-featured-user {
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 0.85rem;
}

.vault-featured-likes {
    display: inline-flex;
    position: absolute;
    bottom: 12px;
    left: 12px;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* ensure info has room for bottom controls */
.vault-featured-info {
    padding-bottom: 56px;
}

/* Carousel Navigation Buttons */
.vault-carousel-btn {
    display: flex;
    z-index: 10;
    position: absolute;
    top: 50%;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transform: translateY(-50%);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, var(--neon-pink), rgba(255, 20, 147, 0.8));
    color: var(--off-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vault-carousel-prev {
    left: -30px;
}

.vault-carousel-next {
    right: -30px;
}

.vault-carousel-btn:hover {
    transform: translateY(-50%) scale(1.15);
    background: linear-gradient(135deg, var(--electric-yellow), rgba(204, 255, 0, 0.9));
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.6);
    color: var(--black);
}

/* ========================================
   FILTER SECTION - MODERN DESIGN
   ======================================== */

.vault-filter-label {
    margin-bottom: 0;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.vault-filter-select {
    width: auto;
    min-width: 220px;
    max-width: 280px;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 8px;
    background: rgba(20, 20, 20, 0.95);
    color: var(--off-white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.vault-filter-select:focus {
    transform: translateY(-2px);
    border-color: var(--neon-pink);
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.4);
}

.vault-dropdown,
.vault-multi-dropdown {
    display: none;
    z-index: 1000001;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-top: none;
    border-radius: 0 0 8px 8px;
    backdrop-filter: blur(20px);
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.vault-dropdown-item {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 20, 147, 0.1);
    color: var(--off-white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vault-dropdown-item:last-child {
    border-bottom: none;
}

.vault-dropdown-item:hover,
.vault-dropdown-item.selected {
    padding-left: 1.75rem;
    background: linear-gradient(90deg, rgba(255, 20, 147, 0.3), rgba(204, 255, 0, 0.2));
    color: var(--off-white);
}

/* Button Styling */

.btn-clear-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--neon-pink);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(255, 20, 147, 0.3);
    color: var(--off-white);
}

/* Select2 Styles for Vault */
.select2-container--classic .select2-selection--single {
    height: 38px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--off-white);
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    padding-left: 8px;
    color: var(--off-white);
    line-height: 34px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: var(--gray);
}

.select2-container--classic.select2-container--focus .select2-selection--single {
    border-color: var(--neon-pink);
}

.select2-dropdown {
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    background: var(--black);
}

.select2-container--classic .select2-results__option {
    background: var(--black);
    color: var(--off-white);
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background: var(--neon-pink);
    color: #000;
}

.select2-container--classic .select2-results__option[aria-selected="true"] {
    background: rgba(255, 20, 147, 0.3);
    color: var(--off-white);
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--off-white);
}

.select2-container--classic .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--neon-pink);
}

.select2-container--classic .select2-search--dropdown input {
    border: 1px solid rgba(255, 20, 147, 0.2);
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--off-white);
}

/* ========================================
   ENHANCED FILTER SECTION - REMOVED
   ======================================== */

/* Vault Submit Styles */
.vault-card {
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
}

.vault-card-header {
    border-bottom: 2px solid rgba(255, 20, 147, 0.2);
    background: rgba(255, 20, 147, 0.1);
}

.vault-submit-title {
    color: var(--neon-pink);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vault-submit-subtitle,
.vault-form-label {
    color: var(--off-white);
}

.vault-form-label {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vault-form-input {
    border: 2px solid rgba(255, 20, 147, 0.2);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--off-white);
}

.vault-form-text {
    color: var(--gray);
}

.vault-form-textarea {
    width: 100%;
}

.vault-form-textarea,
.vault-form-select {
    border: 2px solid rgba(255, 20, 147, 0.2);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--off-white);
}

.vault-form-select {
    height: 200px;
}

.vault-option {
    background: var(--black);
    color: var(--off-white);
}

.vault-checkbox {
    border: 2px solid rgba(255, 20, 147, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.vault-check-label {
    color: var(--off-white);
}

.product-tags-container {
    max-height: 300px;
    padding: 1rem;
    overflow-y: auto;
    border: 1px solid rgba(255, 20, 147, 0.1);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
}

.product-tags-container,
.product-tags-container .form-check {
    margin-bottom: 0.5rem;
}

.product-tags-container .form-check-input:checked {
    border-color: var(--neon-pink);
    background-color: var(--neon-pink);
}

.close-btn {
    display: flex;
    z-index: 1000;
    position: absolute;
    top: 20px;
    right: 20px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    color: var(--off-white);
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .close-btn {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Select2 for Submit Form */
.select2-container--classic .select2-selection--multiple {
    min-height: 38px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--off-white);
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    padding: 0 8px;
    color: var(--off-white);
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
    margin: 2px;
    border: none;
    border-radius: 4px;
    background: var(--neon-pink);
    color: #000;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #000;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #fff;
}

.select2-container--classic.select2-container--focus .select2-selection--multiple {
    border-color: var(--neon-pink);
}

/* ========================================
   PHOTO DETAIL PAGE - CLEAN REDESIGN
   ======================================== */

/* ============================================
   Vault Photo Detail - Side-by-Side Layout
   ============================================ */

.vault-detail-layout {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.vault-detail-photo-wrapper {
    flex: 1;
    min-width: 0;
    margin-bottom: 3rem;
}

.vault-detail-photo-main {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.3);
}

.vault-detail-image-natural {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Like Count Badge - Top Left Corner */
.vault-detail-like-badge {
    display: flex;
    z-index: 10;
    position: absolute;
    top: 16px;
    left: 16px;
    align-items: center;
    padding: 10px 16px;
    gap: 6px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    background: rgba(255, 20, 147, 0.9);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.vault-detail-like-badge:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 20, 147, 0.95);
    transform: scale(1.05);
}

.vault-detail-like-badge.active-like {
    border-color: var(--neon-pink);
    background: rgba(255, 20, 147, 1);
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.6);
}

.vault-detail-like-badge i {
    font-size: 1rem;
}

/* Action Buttons - Bottom Left */
.vault-detail-actions {
    display: flex;
    z-index: 10;
    position: absolute;
    bottom: 16px;
    left: 16px;
    gap: 8px;
}

/* ============================================
   Info Sidebar
   ============================================ */

.vault-detail-sidebar {
    flex-shrink: 0;
    width: 380px;
}

.vault-detail-sidebar-inner {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    background: rgba(20, 20, 20, 0.95);
}

.vault-sidebar-section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vault-sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Caption Section */
.vault-sidebar-caption-section {
    position: relative;
}

.vault-sidebar-icon {
    margin-bottom: 0.75rem;
    color: var(--neon-pink);
    font-size: 1.25rem;
    opacity: 0.8;
}

.vault-sidebar-caption {
    margin: 0;
    color: var(--off-white);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* User Info Section */
.vault-sidebar-user-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vault-sidebar-user-avatar {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--electric-purple));
    color: #fff;
    font-size: 1.25rem;
}

.vault-sidebar-user-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.vault-sidebar-username {
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.vault-sidebar-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.vault-sidebar-date i {
    color: var(--neon-pink);
    font-size: 0.8rem;
}

/* Share Section */
.vault-sidebar-share-section {
    text-align: center;
}

.vault-sidebar-share-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
    color: var(--off-white);
    font-weight: 600;
    font-size: 0.95rem;
}

.vault-sidebar-share-title i {
    color: var(--neon-pink);
}

.vault-sidebar-share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.vault-sidebar-share-buttons .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 2px solid;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vault-sidebar-share-buttons .share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Facebook - Always blue */
.vault-sidebar-share-buttons .facebook-btn {
    border-color: #1877f2;
    background: #1877f2;
    color: #fff;
}

.vault-sidebar-share-buttons .facebook-btn:hover {
    border-color: #0d65d9;
    background: #0d65d9;
}

/* Twitter/X - Always black */
.vault-sidebar-share-buttons .twitter-btn {
    border-color: #333;
    background: #000;
    color: #fff;
}

.vault-sidebar-share-buttons .twitter-btn:hover {
    border-color: #555;
    background: #333;
}

/* Pinterest - Always red */
.vault-sidebar-share-buttons .pinterest-btn {
    border-color: #e60023;
    background: #e60023;
    color: #fff;
}

.vault-sidebar-share-buttons .pinterest-btn:hover {
    border-color: #c8001f;
    background: #c8001f;
}

/* Instagram - Always gradient */
.vault-sidebar-share-buttons .instagram-btn {
    border-color: transparent;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.vault-sidebar-share-buttons .instagram-btn:hover {
    background: linear-gradient(45deg, #e08323, #d6582c, #cc1733, #bc1356, #ac0878);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

/* Native Share - Yellow outline */
.vault-sidebar-share-buttons .native-share-btn {
    border-color: var(--electric-yellow);
    background: transparent;
    color: var(--electric-yellow);
}

.vault-sidebar-share-buttons .native-share-btn:hover {
    background: var(--electric-yellow);
    color: var(--black);
}

/* Copy Link - Pink outline */
.vault-sidebar-share-buttons .copy-link-btn {
    border-color: var(--neon-pink);
    background: transparent;
    color: var(--neon-pink);
}

.vault-sidebar-share-buttons .copy-link-btn:hover {
    background: var(--neon-pink);
    color: #fff;
}

.vault-sidebar-share-buttons .copy-link-btn.copied {
    border-color: #28a745;
    background: #28a745;
    color: #fff;
}

.vault-action-btn {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(20, 20, 20, 0.95);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vault-action-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.vault-action-btn.active-up {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.8);
}

.vault-action-btn.active-down {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.8);
}

.vault-action-btn.active-like,
.vault-action-btn.vault-like-action:hover {
    border-color: var(--neon-pink);
    background: rgba(255, 20, 147, 0.8);
}

/* Shop This Look - Corner Sidebar */
.vault-shop-sidebar {
    z-index: 10;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 220px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    background: rgba(20, 20, 20, 0.95);
}

.vault-shop-header {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 20, 147, 0.15);
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vault-shop-header i {
    font-size: 0.9rem;
}

.vault-shop-products {
    display: flex;
    flex-direction: column;
}

.vault-shop-product-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: background 0.2s ease;
}

.vault-shop-product-item:last-child {
    border-bottom: none;
}

.vault-shop-product-item:hover {
    background: rgba(255, 20, 147, 0.1);
    text-decoration: none;
}

.vault-shop-product-image {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
}

.vault-shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vault-shop-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

.vault-shop-product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.vault-shop-product-name {
    overflow: hidden;
    color: var(--off-white);
    font-weight: 600;
    font-size: 0.8rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vault-shop-product-price {
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 0.75rem;
}

.vault-shop-strike {
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    text-decoration: line-through;
}

.vault-shop-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.vault-shop-product-item:hover .vault-shop-arrow {
    transform: translateX(3px);
    color: var(--neon-pink);
}

/* Info Bar Below Photo */
/* Native share button styling (global) */
.native-share-btn {
    border-color: var(--electric-yellow);
    color: var(--electric-yellow);
}

.native-share-btn:hover {
    background: var(--electric-yellow);
    color: var(--black);
}

/* Copy link copied state (global) */
.copy-link-btn.copied {
    border-color: #28a745;
    background: #28a745;
    color: #fff;
}

/* Mobile Responsive - Photo Detail */
@media (max-width: 991px) {
    .vault-detail-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .vault-detail-sidebar {
        width: 100%;
        margin-bottom: 2rem;
    }

    .vault-detail-sidebar-inner {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .vault-shop-sidebar {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .vault-shop-sidebar,
    .vault-detail-photo-main,
    .vault-detail-image-natural {
        border-radius: 12px;
    }

    .vault-detail-like-badge {
        top: 12px;
        left: 12px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .vault-detail-actions {
        bottom: 12px;
        left: 12px;
    }

    .vault-action-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .vault-sidebar-user-section {
        flex-direction: column;
        text-align: center;
    }

    .vault-sidebar-user-info {
        align-items: center;
    }

    .vault-sidebar-share-buttons .share-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* ========================================
   SHOP THIS LOOK - LEGACY (kept for other pages)
   ======================================== */

.vault-products-section {
    margin-bottom: 2rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(20, 20, 20, 0.95);
}

.vault-section-title {
    margin-bottom: 1.5rem;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Vault section title centering */
.vault-section .section-title {
    margin-bottom: 2rem;
    text-align: center;
}

.vault-section .section-title i {
    margin-right: 0.5rem;
}

.vault-navigation {
    padding: 1.5rem;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
}

.vault-placeholder-icon {
    color: var(--gray);
    font-size: 3rem;
}

.vault-strike-price {
    color: var(--gray);
    text-decoration: line-through;
}

/* ========================================
   VAULT PRODUCT CARDS - SHOP THIS LOOK
   ======================================== */

.vault-product-card {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vault-product-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    transform: translateX(-100%);
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(204, 255, 0, 0.1) 50%,
        transparent 70%
    );
    transition: transform 0.6s;
}

.vault-product-card:hover .vault-product-shine {
    transform: translateX(100%);
}

.vault-product-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--electric-yellow);
    box-shadow:
        0 25px 60px rgba(204, 255, 0, 0.4),
        0 0 50px rgba(255, 20, 147, 0.3),
        inset 0 0 30px rgba(204, 255, 0, 0.05);
}

.vault-product-image {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.95);
}

.vault-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 0.6s ease;
}

.vault-product-card:hover .vault-product-image img {
    transform: scale(1.15) rotate(3deg);
    filter: brightness(1.05);
}

.vault-product-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.95);
}

.vault-placeholder-icon {
    color: rgba(255, 20, 147, 0.3);
    font-size: 4rem;
}

.vault-product-overlay {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.8), rgba(255, 20, 147, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vault-product-card:hover .vault-product-overlay {
    opacity: 1;
}

.vault-product-quick-view {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    gap: 0.75rem;
    border: 3px solid var(--black);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.vault-product-quick-view:hover {
    transform: scale(1.1);
    border-color: var(--electric-yellow);
    background: var(--black);
    color: var(--electric-yellow);
    text-decoration: none;
}

.vault-product-info {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.95);
}

.vault-product-name {
    display: -webkit-box;
    margin-bottom: 0.5rem;
    color: var(--off-white);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vault-product-type {
    margin-bottom: 1rem;
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vault-product-price-container {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.vault-product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
}

.vault-product-price,
.vault-sale-price {
    color: var(--electric-yellow);
    font-weight: 900;
}

.vault-sale-price {
    font-size: 1.7rem;
}

.vault-discount-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff0000, #ff4444);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    color: white;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 1px;
    animation: discount-pulse 2s ease-in-out infinite;
}

/* discount-pulse moved to static/css/animations.css */

.vault-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 0.75rem;
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--neon-pink), rgba(255, 20, 147, 0.9));
    color: var(--off-white);
    font-weight: 800;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.vault-product-btn:hover {
    transform: translateY(-3px);
    border-color: var(--black);
    background: linear-gradient(135deg, var(--electric-yellow), rgba(204, 255, 0, 0.9));
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.5);
    color: var(--black);
    text-decoration: none;
}

.vault-product-btn i {
    transition: transform 0.3s ease;
}

.vault-product-btn:hover i {
    transform: translateX(5px);
}

.vault-modal-content {
    border: 2px solid var(--neon-pink);
    background: var(--charcoal);
    color: var(--off-white);
}

/* Vault Moderation Styles */
.vault-moderate-title {
    color: var(--neon-pink);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.filters-card,
.bulk-actions-card {
    padding: 0.5rem;
}

.filters-card,
.bulk-actions-card,
.moderation-card {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
}

.moderation-card {
    overflow: hidden;
    transition: all 0.3s ease;
}

.moderation-card:hover {
    transform: translateY(-2px);
    border-color: var(--neon-pink);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.moderation-image-container {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

.moderation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moderation-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-approved {
    background: #28a745;
    color: #fff;
}

.status-rejected {
    background: #dc3545;
    color: #fff;
}

.moderation-info {
    padding: var(--padding-glass);
}

.moderation-caption-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.moderation-caption {
    flex: 1;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.moderation-caption.expanded {
    white-space: normal;
    word-wrap: break-word;
}

.caption-toggle {
    background: none;
    border: none;
    color: var(--neon-pink);
    cursor: pointer;
    padding: 0 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.caption-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

.caption-toggle:hover {
    color: var(--hot-pink);
}

.moderation-user,
.moderation-date {
    margin-bottom: 0.25rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.moderation-user i,
.moderation-date i {
    width: 14px;
    margin-right: 0.5rem;
    color: var(--neon-pink);
}

.moderation-tags {
    margin-top: 0.5rem;
}

.moderation-actions {
    margin-top: 1rem;
    padding: 0 1.25rem 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 20, 147, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-success {
    border: 2px solid #28a745;
    background: #28a745;
    color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    border-color: #218838;
    background: #218838;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.5);
}

.btn-danger {
    border: 2px solid #dc3545;
    background: #dc3545;
    color: #fff;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    border-color: #c82333;
    background: #c82333;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.5);
}

.btn-outline-danger {
    border: 2px solid #dc3545;
    background: transparent;
    color: #dc3545;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    border-color: #dc3545;
    background: #dc3545;
    color: #fff;
}

.empty-state {
    padding: 3rem;
    text-align: center;
}

.vault-empty-icon {
    margin-bottom: 1rem;
    color: var(--gray);
}

.vault-empty-title {
    color: var(--off-white);
}

.vault-empty-text,
.vault-small {
    color: var(--gray);
}

.vault-inline-form {
    display: inline;
}

@media (max-width: 576px) {
    .moderation-actions {
        display: flex;
        gap: 0.4rem;
        align-items: center;
        flex-wrap: nowrap;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .moderation-actions .vault-inline-form {
        display: inline-flex;
        margin: 0;
    }

    .moderation-actions .vault-inline-form .btn,
    .moderation-actions .vault-inline-form .btn.btn-sm {
        padding: 0.28rem 0.48rem;
        font-size: 0.78rem;
        line-height: 1;
        min-width: 0;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .moderation-actions .vault-inline-form .btn i {
        margin-right: 0.25rem;
        font-size: 0.95em;
    }

    /* If viewport is very narrow, further reduce text but keep icons visible */
    @media (max-width: 420px) {
        .moderation-actions .vault-inline-form .btn {
            padding: 0.22rem 0.4rem;
            font-size: 0.72rem;
        }
    }
}

.vault-moderate-label {
    letter-spacing: 0;
    text-transform: none;
}

/* ========================================
   VAULT CONFIRMATION MODAL STYLING
   ======================================== */

.vault-confirm-modal .modal-content {
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    background: var(--charcoal);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.vault-confirm-modal .modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 14px 14px 0 0;
    background: rgba(255, 20, 147, 0.1);
}

.vault-modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--off-white);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vault-modal-icon {
    color: var(--neon-pink);
    font-size: 1.5rem;
}

.vault-confirm-modal .modal-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.vault-modal-message-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.vault-modal-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 3px solid var(--neon-pink);
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.15);
    animation: vault-modal-pulse 2s infinite ease-in-out;
}

/* vault-modal-pulse moved to static/css/animations.css */

.vault-modal-main-icon {
    color: var(--neon-pink);
    font-size: 2.5rem;
}

.vault-modal-message {
    max-width: 400px;
    margin: 0;
    color: var(--off-white);
    font-size: 1.1rem;
    line-height: 1.6;
}

.vault-modal-message small.text-muted {
    color: #ff6b6b;
    font-weight: 500;
    font-size: 0.9rem;
}

.vault-confirm-modal .modal-footer {
    justify-content: center;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-top: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 0 0 14px 14px;
    background: rgba(255, 255, 255, 0.02);
}

.vault-modal-btn-cancel {
    padding: 0.75rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: transparent;
    color: var(--off-white);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.vault-modal-btn-cancel:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.vault-modal-btn-confirm {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius-glass);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.vault-modal-btn-confirm.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.vault-modal-btn-confirm.btn-success:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #218838, #1aa085);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.vault-modal-btn-confirm.btn-danger {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
}

.vault-modal-btn-confirm.btn-danger:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #c82333, #e8680d);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.vault-modal-btn-confirm.btn-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #212529;
}

.vault-modal-btn-confirm.btn-warning:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #e0a800, #e8680d);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Modal backdrop */
.vault-confirm-modal .modal-backdrop {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .vault-confirm-modal .modal-dialog {
        margin: 1rem;
    }

    .vault-confirm-modal .modal-header,
    .vault-confirm-modal .modal-body,
    .vault-confirm-modal .modal-footer {
        padding: 1.25rem;
    }

    .vault-modal-title {
        font-size: 1.1rem;
    }

    .vault-modal-message {
        font-size: 1rem;
    }

    .vault-modal-btn-cancel,
    .vault-modal-btn-confirm {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   VAULT REJECTION REASON STYLING
   ======================================== */

.vault-rejection-reason {
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 20, 147, 0.2);
}

.vault-rejection-label {
    display: block;
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 8px;
    color: var(--off-white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vault-rejection-label i {
    color: var(--neon-pink);
}

.vault-rejection-textarea {
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--off-white);
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
    resize: vertical;
    transition: all 0.3s ease;
}

.vault-rejection-textarea:focus {
    border-color: var(--neon-pink);
    outline: none;
    background: var(--border-glass-color);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

.vault-rejection-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.vault-rejection-char-count {
    margin-top: 0.5rem;
    text-align: right;
}

.vault-rejection-char-count small {
    font-weight: 500;
    font-size: 0.8rem;
}

/* Animation for rejection reason container */
.vault-rejection-reason {
    animation: slideDownFadeIn 0.3s ease-out;
}

/* slideDownFadeIn moved to static/css/animations.css */

/* Vault Submit Container */
.vault-submit-container {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(255, 105, 180, 0.05));
    text-align: center;
}

.vault-submit-container::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 105, 180, 0.08) 0%, transparent 50%);
    content: "";
    pointer-events: none;
}

.vault-submit-content {
    z-index: 1;
    position: relative;
}

.vault-submit-icon {
    margin-bottom: 1rem;
    color: #ff1493;
    font-size: 3rem;
    opacity: 0.8;
}

.vault-submit-title {
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-shadow:
        0 0 10px rgba(255, 20, 147, 0.8),
        0 0 20px rgba(255, 20, 147, 0.6),
        0 0 30px rgba(255, 20, 147, 0.4);
    text-transform: uppercase;
}

.vault-submit-text {
    max-width: 500px;
    margin-right: auto;
    margin-bottom: 2rem;
    margin-left: auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.vault-submit-btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.vault-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

/* ========================================
   VAULT MAIN LAYOUT - SIDEBAR STRUCTURE
   ======================================== */

/* Main layout container: Left column (filters & grid) + Right sidebar (featured) */
.vault-main-layout {
    display: flex;
    gap: 2rem;
    width: 100%;
    margin-bottom: 3rem;
}

/* Left column contains filters and photo grid */
.vault-left-column {
    flex: 1;
    min-width: 0;
}

/* Right sidebar for featured photos - fixed width */
.vault-right-sidebar {
    flex: 0 0 380px;
    width: 380px;
}

/* ========================================
   VAULT FEATURED PHOTOS - VERTICAL CAROUSEL
   ======================================== */

/* Vault Featured Photos Carousel */
.vault-featured-section {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 80px);
    overflow: visible;
    border: 2px solid rgba(255, 20, 147, 0.2) !important;
    border-radius: 20px;
    padding: 0.5rem;
}

/* When using the glassmorphic-card modifier, disable its hover
   visual treatment and apply a subtle background only for that
   modifier to avoid redefining the base `.vault-featured-section`. */
.vault-featured-section.glassmorphic-card:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(255, 105, 180, 0.03));
    transform: none;
    border-color: rgba(255, 20, 147, 0.2);
    box-shadow: none;
}

.vault-featured-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.vault-featured-title {
    margin-bottom: 0.5rem;
    color: #ff1493;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vault-featured-title i {
    margin-right: 0.5rem;
    color: #ff1493;
}

.vault-featured-subtitle {
    margin: 0;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.vault-featured-note {
    margin: 0.5rem 0 0 0;
    color: #ff1493;
    font-weight: 500;
    font-size: 0.85rem;
}

.vault-featured-note i {
    margin-right: 0.5rem;
    color: #e1306c;
}

.vault-featured-carousel-container {
    position: relative;
    height: calc(100vh - 180px);
    overflow: visible;
}

.vault-featured-carousel {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.vault-featured-track {
    display: flex;
    flex-direction: column;
    height: max-content;
    padding: 50px 0;
    gap: 1.5rem;
    transform: translateZ(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Carousel navigation buttons - now vertical */
.vault-featured-carousel-btn {
    z-index: 1000;
    position: absolute;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translateX(-50%);
    border: none;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.9);
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.vault-featured-carousel-btn:hover {
    transform: translateX(-50%) scale(1.1);
    background: #ff1493;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.vault-featured-carousel-prev {
    top: 10px;
}

.vault-featured-carousel-next {
    bottom: 10px;
}

.vault-featured-carousel-btn:hover {
    transform: translateX(-50%) scale(1.1);
    background: #ff1493;
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

.vault-featured-carousel-prev {
    top: 10px;
}

.vault-featured-carousel-next {
    bottom: 10px;
}

/* Rotate arrows for vertical layout on desktop */
.vault-featured-carousel-prev i {
    transform: rotate(-90deg);
}

.vault-featured-carousel-next i {
    transform: rotate(-90deg);
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .vault-right-sidebar {
        flex: 0 0 320px;
        width: 320px;
    }
}

@media (max-width: 1200px) {
    /* Stack layout on smaller screens */
    .vault-main-layout {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .vault-right-sidebar {
        flex: 1;
        width: 100%;
        max-width: 100%;
        order: -1;
    }

    .vault-featured-section {
        position: relative;
        top: auto;
        max-height: none;
        margin-bottom: 0.1rem;
    }

    .vault-featured-carousel-container {
        height: auto;
        overflow: visible;
        padding: 0 40px; /* Add padding for buttons */
    }

    .vault-featured-carousel {
        height: auto;
        overflow: visible;
    }

    .vault-featured-track {
        flex-direction: row;
        width: max-content;
        height: auto;
        padding: 1rem 60px 1rem 0;
    }

    .vault-featured-item {
        flex: 0 0 350px;
        width: 350px;
        max-width: 350px;
    }

    .vault-featured-carousel-btn {
        top: 50%;
        left: auto;
        right: auto;
        transform: translateY(-50%);
        z-index: 1000;
        pointer-events: auto;
        position: absolute;
    }

    .vault-featured-carousel-btn:hover {
        transform: translateY(-50%) scale(1.1);
    }

    .vault-featured-carousel-prev {
        left: 5px;
        top: 50%;
    }

    .vault-featured-carousel-next {
        right: 5px;
        bottom: auto;
        top: 50%;
    }

    /* Remove rotation on mobile for horizontal layout */
    .vault-featured-carousel-prev i,
    .vault-featured-carousel-next i {
        transform: none;
    }
}

@media (max-width: 768px) {
    .vault-featured-item {
        flex: 0 0 200px;
        width: 200px;
        max-width: 200px;
    }

    .vault-featured-track {
        padding: 1rem 40px 1rem 0;
    }

    .vault-featured-carousel-btn {
        width: 35px;
        height: 35px;
    }

    .vault-filter-btn,
    .vault-clear-btn {
        flex: 1;
        min-width: 100px;
        max-width: 120px;
        height: 38px;
        padding: 0.375rem 0.75rem;
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
}

/* Vault Moderation */
.moderation-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    background: #f8f9fa;
    color: #6c757d;
    font-size: 2rem;
}

.moderation-image-placeholder p {
    margin: 0.5rem 0 0 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive adjustments for featured carousel */
@media (max-width: 768px) {
    .vault-featured-item {
        flex: 0 0 200px;
        min-width: 200px;
    }

    .vault-carousel-btn {
        width: 40px;
        height: 40px;
    }
    #photo-grid {
        /* Bootstrap g-4 equivalent gutters (1.5rem) for rows */
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
    #photo-grid > .col-6 {
        padding-top: calc(var(--bs-gutter-y) / 2);
        padding-right: calc(var(--bs-gutter-x) / 2);
        padding-bottom: calc(var(--bs-gutter-y) / 2);
        padding-left: calc(var(--bs-gutter-x) / 2);
    }
}

/* Vault Grid */
.vault-grid-wrapper {
    width: 100%;
    margin-bottom: 2rem; /* small gap between vault cards and footer */
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: start;
    gap: 1.5rem;
}

/* Prevent grid items from stretching to the height of the tallest item
   and ensure flex children can shrink properly. Fixes cases where a
   single tall child forces a very large row height. */

/* Allow vault cards and their inner flex containers to shrink below
   content size when necessary (prevents unexpected large heights). */
.vault-card,
.vault-card-inner {
    min-height: 0;
}

/* 5 columns for very large but not ultra-wide screens */
@media (max-width: 1700px) {
    .vault-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* 4 columns for large screens */
@media (max-width: 1400px) {
    .vault-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 3 columns for medium screens */
@media (max-width: 1100px) {
    .vault-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* 2 columns for tablets and mobile */
@media (max-width: 991px) {
    .vault-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vault-grid-wrapper {
        margin-top: 0; /* no extra spacing needed on mobile */
        margin-bottom: 2rem; /* keep a small 2rem gap on mobile as well */
    }
}

.vault-card-wrapper {
    width: 100%;
}

.vault-empty-wrapper {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
}

.vault-empty-state {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 420px;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 20, 147, 0.15);
    background: rgba(255, 20, 147, 0.04);
}

.vault-empty-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.12);
    border: 1px solid rgba(255, 20, 147, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
}

.vault-empty-icon-wrap i {
    color: var(--neon-pink);
}

.vault-empty-icon-wrap.vault-empty-filter-icon {
    background: rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.3);
}

.vault-empty-icon-wrap.vault-empty-filter-icon i {
    color: #ffc107;
}

.vault-empty-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   HALL OF FAME STYLES
   ======================================== */

.hall-of-fame-description {
    margin-bottom: 2rem;
}

.hall-of-fame-intro-card {
    position: relative;
    padding: 2.5rem;
    overflow: hidden;
    border: 2px solid rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(255, 105, 180, 0.05));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hall-of-fame-intro-card::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 105, 180, 0.08) 0%, transparent 50%);
    content: "";
    pointer-events: none;
}

.hall-of-fame-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
    color: var(--neon-pink);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hall-of-fame-subtitle i {
    color: var(--neon-pink);
    font-size: 1.8rem;
}

.hall-of-fame-description-text {
    max-width: 600px;
    margin-right: auto;
    margin-bottom: 2rem;
    margin-left: auto;
    color: var(--off-white);
    font-size: 1.1rem;
    line-height: 1.6;
}

.hall-of-fame-description-text strong {
    color: var(--neon-pink);
    font-weight: 700;
}

.hall-of-fame-qualification-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hall-of-fame-qualification-title i {
    color: var(--neon-pink);
}

.hall-of-fame-qualification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 2rem;
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .hall-of-fame-qualification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
    border: 1px solid rgba(255, 20, 147, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.qualification-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 20, 147, 0.4);
    background: var(--border-glass-color);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.1);
}

.qualification-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, var(--neon-pink), #ff69b4); */
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
    color: var(--neon-pink);
    font-size: 1.25rem;
}

.qualification-content h5 {
    margin-bottom: 0.5rem;
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.qualification-content p {
    margin: 0;
    color: var(--off-white);
    font-size: 0.9rem;
    line-height: 1.5;
}

.hall-of-fame-legend {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 20, 147, 0.2);
}

.legend-text {
    position: relative;
    margin: 0;
    color: var(--off-white);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
}

/* Light mode override for legend text */
html.light-mode .legend-text {
    color: var(--charcoal);
}

.legend-text em {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Light mode override for legend text emphasis */
html.light-mode .legend-text em {
    color: rgba(0, 0, 0, 0.8);
}

/* Light mode override for vault modal message */
html.light-mode .vault-modal-message small.text-muted {
    color: #cc4444 !important;
}

/* ========================================
   HALL OF FAME - AWARD CEREMONY THEME
   ======================================== */

.hall-of-fame-card {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 3px solid transparent;
    border-radius: 24px;
    background: rgba(20, 20, 20, 0.95);
    background-clip: padding-box;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hall-of-fame-card::before {
    z-index: -1;
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    border-radius: 24px;
    /* disable animated border glow for a more subtle card appearance */
    background: transparent;
    content: "";
    pointer-events: none;
}

/* hall-border-glow moved to static/css/animations.css */

.hall-of-fame-card:hover {
    transform: translateY(-5px) scale(1.01);
}

.hall-of-fame-header {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 20, 147, 0.15));
}

.hall-of-fame-header::before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    content: "";
    animation: hall-shine 3s ease-in-out infinite;
}

/* hall-shine moved to static/css/animations.css */

.trophy-icon {
    color: #ffd700;
    font-size: 2.5rem;
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.5);
    animation: trophy-pulse 3s ease-in-out infinite;
}

/* trophy-pulse moved to static/css/animations.css */

.featured-info {
    text-align: right;
}

.featured-info i {
    margin-right: 0.5rem;
    color: var(--electric-yellow);
}

.featured-date,
.feature-score {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--off-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-score {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 20, 147, 0.2));
    color: #ffd700;
    font-weight: 800;
    font-size: 1rem;
}

.hall-of-fame-photo-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.95);
}

.hall-of-fame-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hall-of-fame-card:hover .hall-of-fame-photo {
    transform: scale(1.05);
    filter: brightness(1.02) contrast(1.1);
}

.hall-of-fame-photo-overlay {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .vault-detail-photo-wrapper {
        margin-bottom: 0rem;
    }
}
