/* ===========================================
   Feature Request System Styles
   FutureAtoms - Inspired by Eververse patterns
   =========================================== */

/* --- Status Badge Colors --- */
:root {
    --status-submitted: #00ffff;
    --status-planned: #ffd700;
    --status-in-progress: #4facfe;
    --status-completed: #00ff00;
}

/* --- Feature Page Layout --- */
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features-hero {
    text-align: center;
    padding: 2rem 0 3rem;
}

.features-hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px currentColor);
}

.features-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.features-hero p {
    font-size: 1.125rem;
    color: rgba(224, 247, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Stats Bar --- */
.features-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 0.75rem;
    min-width: 120px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #00ffff;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(224, 247, 255, 0.5);
    margin-top: 0.25rem;
}

/* --- Filter Tabs --- */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-tab {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: rgba(224, 247, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.filter-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(224, 247, 255, 0.9);
}

.filter-tab.active {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
    color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

/* Status-specific active states */
.filter-tab[data-status="submitted"].active {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
    color: var(--status-submitted);
}

.filter-tab[data-status="planned"].active {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    color: var(--status-planned);
}

.filter-tab[data-status="in_progress"].active {
    background: rgba(79, 172, 254, 0.15);
    border-color: rgba(79, 172, 254, 0.4);
    color: var(--status-in-progress);
}

.filter-tab[data-status="completed"].active {
    background: rgba(0, 255, 0, 0.15);
    border-color: rgba(0, 255, 0, 0.4);
    color: var(--status-completed);
}

/* --- Category Filter Tabs --- */
.category-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(224, 247, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.category-tab i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.category-tab .category-count {
    font-size: 0.7rem;
    padding: 0.125rem 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    min-width: 1.25rem;
    text-align: center;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(224, 247, 255, 0.9);
}

.category-tab.active {
    background: rgba(var(--tab-color-rgb, 0, 255, 255), 0.15);
    border-color: var(--tab-color, #00ffff);
    color: var(--tab-color, #00ffff);
}

.category-tab.active i {
    opacity: 1;
}

.category-tab.active .category-count {
    background: rgba(var(--tab-color-rgb, 0, 255, 255), 0.3);
}

/* --- Sort Controls --- */
.sort-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.sort-label {
    font-size: 0.8rem;
    color: rgba(224, 247, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sort-select {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 2rem 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    color: rgba(224, 247, 255, 0.9);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300ffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.25rem;
}

.sort-select:hover {
    border-color: rgba(0, 255, 255, 0.3);
}

.sort-select:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.sort-select option {
    background: #0a0a14;
    color: #e0f7ff;
}

/* --- Feature Cards Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 400px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Feature Card --- */
.feature-card {
    background: rgba(5, 12, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--card-accent, #00ffff), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 255, 0.05);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Card Header */
.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

/* Status Badge */
.status-badge {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-badge.submitted {
    background: rgba(0, 255, 255, 0.15);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--status-submitted);
}

.status-badge.planned {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--status-planned);
}

.status-badge.in_progress {
    background: rgba(79, 172, 254, 0.15);
    border: 1px solid rgba(79, 172, 254, 0.3);
    color: var(--status-in-progress);
}

.status-badge.completed {
    background: rgba(0, 255, 0, 0.15);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: var(--status-completed);
}

/* --- Category Badge --- */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.category-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.625rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--category-color, #00ffff);
}

.category-badge i {
    font-size: 0.6rem;
    opacity: 0.8;
}

/* Upvote Button */
.upvote-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(224, 247, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 50px;
}

.upvote-btn:hover:not(.voted):not(:disabled) {
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.3);
    color: #00ffff;
    transform: scale(1.05);
}

.upvote-btn.voted {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.4);
    color: #00ffff;
    cursor: default;
}

.upvote-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.upvote-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.upvote-btn:hover:not(.voted):not(:disabled) i {
    transform: translateY(-2px);
}

.upvote-btn.voted i {
    animation: pulse-glow 1s ease-out;
}

@keyframes pulse-glow {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.upvote-count {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Card Content */
.feature-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-card-description {
    font-size: 0.95rem;
    color: rgba(224, 247, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Footer */
.feature-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: rgba(224, 247, 255, 0.4);
}

.feature-submitter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-submitter i {
    font-size: 0.75rem;
}

.feature-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Empty State --- */
.features-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(224, 247, 255, 0.5);
}

.features-empty i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.features-empty h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(224, 247, 255, 0.7);
}

.features-empty p {
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* --- Loading State --- */
.features-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(224, 247, 255, 0.6);
}

.features-loading i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.features-loading p {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* --- Submit Feature Button --- */
.submit-feature-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 200, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 9999px;
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 40;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.submit-feature-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(0, 200, 255, 0.3));
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.3);
}

.submit-feature-btn i {
    font-size: 1.1rem;
}

@media (max-width: 640px) {
    .submit-feature-btn {
        padding: 1rem;
        border-radius: 50%;
    }

    .submit-feature-btn span {
        display: none;
    }

    .submit-feature-btn i {
        font-size: 1.5rem;
    }
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.98), rgba(5, 10, 20, 0.98));
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 1.5rem;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(224, 247, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.25rem;
}

.modal-close:hover {
    background: rgba(255, 100, 100, 0.1);
    border-color: rgba(255, 100, 100, 0.3);
    color: #ff6b6b;
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding-right: 3rem;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: rgba(224, 247, 255, 0.5);
    margin-top: 0.5rem;
}

.modal-body {
    padding: 1.5rem;
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(224, 247, 255, 0.8);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-label .required {
    color: #ff6b6b;
    margin-left: 0.25rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #e0f7ff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(224, 247, 255, 0.3);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.03);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    width: 100%;
    padding: 0.875rem 2.5rem 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #e0f7ff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2300ffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
}

.form-select:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.4);
    background-color: rgba(0, 255, 255, 0.03);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.form-select option {
    background: #0a0a14;
    color: #e0f7ff;
    padding: 0.5rem;
}

.form-hint {
    font-size: 0.8rem;
    color: rgba(224, 247, 255, 0.4);
    margin-top: 0.5rem;
}

/* Character counter */
.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: rgba(224, 247, 255, 0.4);
    margin-top: 0.25rem;
}

.char-counter.warning {
    color: #ffd700;
}

.char-counter.error {
    color: #ff6b6b;
}

/* --- Submit Button --- */
.form-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 200, 255, 0.2));
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 0.75rem;
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.form-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(0, 200, 255, 0.3));
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
    transform: translateY(-1px);
}

.form-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-submit-btn.loading {
    pointer-events: none;
}

.form-submit-btn.success {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 200, 100, 0.2));
    border-color: rgba(0, 255, 0, 0.4);
    color: #00ff00;
}

/* --- Toast Notifications --- */
.toast-container {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    padding: 1rem 1.5rem;
    background: rgba(10, 15, 30, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: #e0f7ff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: toastIn 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 350px;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast.success {
    border-color: rgba(0, 255, 0, 0.3);
}

.toast.success i {
    color: #00ff00;
}

.toast.error {
    border-color: rgba(255, 100, 100, 0.3);
}

.toast.error i {
    color: #ff6b6b;
}

.toast.info {
    border-color: rgba(0, 255, 255, 0.3);
}

.toast.info i {
    color: #00ffff;
}

/* --- Back to Product Link --- */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(224, 247, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.back-link:hover {
    color: #00ffff;
}

.back-link i {
    transition: transform 0.2s ease;
}

.back-link:hover i {
    transform: translateX(-3px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .features-stats {
        gap: 1rem;
    }

    .stat-item {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .filter-tabs {
        gap: 0.375rem;
    }

    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .sort-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card-header {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .upvote-btn {
        flex-direction: row;
        width: fit-content;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    .toast-container {
        left: 1rem;
        right: 1rem;
        bottom: 5rem;
    }

    .toast {
        max-width: none;
    }
}

/* --- Skeleton Loading --- */
.skeleton {
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.03) 25%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 0.5rem;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 200px;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-badge {
    height: 1.5rem;
    width: 80px;
    border-radius: 9999px;
}
