/* My Archive Page Specific Styles */

/* Archive Controls */
.archive-controls {
    margin-bottom: 1.5rem;
}

.control-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* Search Box */
.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--cyber-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Filter Group */
.filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Exo 2', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover {
    border-color: var(--cyber-blue);
}

.filter-select:focus {
    outline: none;
    border-color: var(--cyber-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn:hover {
    color: var(--cyber-blue);
    border-color: var(--cyber-blue);
}

.view-btn.active {
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyber-blue);
    border-color: var(--cyber-blue);
}

/* Archive Stats */
.archive-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    color: var(--cyber-blue);
    font-weight: 500;
}

.stat-pill i {
    font-size: 1rem;
}

/* Builds Container */
.builds-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    margin-top: 0;
}

/* Grid View */
.builds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.6s ease;
    position: relative;
    top: auto !important;
    margin-top: 0;
}

/* Build Card */
.build-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.build-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.build-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}

.ship-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ship-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
}

.ship-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.ship-type {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.build-category {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyber-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: auto;
}

/* Build Content */
.build-content {
    flex: 1;
}

.build-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.build-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.commander-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.commander-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
}

.commander-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Build Stats */
.build-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.build-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.build-stats .stat i {
    color: var(--cyber-blue);
}

/* Build Actions */
.build-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.action-btn {
    flex: 1;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--cyber-blue);
    color: var(--cyber-blue);
}

.action-btn.delete-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}

/* Strategy Actions - same styling as build actions */
.strategy-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

/* List View */
.builds-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.build-list-item {
    display: grid;
    grid-template-columns: 3fr 2fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem !important;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.build-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.list-ship-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.list-build-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.list-build-details .build-name {
    margin: 0;
    font-size: 1.1rem;
}

.list-build-details .ship-name {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Inspirations in list view */
.build-list-item .inspirations-row {
    margin-left: auto;
    margin-right: 1rem;
}

.ship-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.3);
}

.list-commander {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.commander-icon-small {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
}

.category-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyber-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.badge-pvp {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.category-badge.badge-pve {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.category-badge.badge-ranked {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.category-badge.badge-arena {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.category-badge.badge-experimental {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
}

.list-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.list-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.list-actions {
    display: flex;
    gap: 0.5rem;
}

.action-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon:hover {
    color: var(--cyber-blue);
    border-color: var(--cyber-blue);
    background: rgba(0, 212, 255, 0.1);
}

.action-icon.danger:hover {
    color: var(--danger);
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.1);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeIn 0.6s ease;
}

.empty-icon {
    font-size: 5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlide 0.4s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.75rem;
}

.modal-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--danger);
    border-color: var(--danger);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Share Modal */
.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.share-option {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.share-option:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--cyber-blue);
    color: var(--cyber-blue);
}

.share-option i {
    font-size: 2rem;
}

.share-link-container {
    display: flex;
    gap: 0.5rem;
}

.share-link-container input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Exo 2', sans-serif;
}

.copy-btn {
    padding: 0.75rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--cyber-blue);
    border-radius: 8px;
    color: var(--cyber-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--cyber-blue);
    color: white;
}

/* Delete Modal */
.delete-modal .modal-body {
    text-align: center;
}

.build-delete-name {
    font-size: 1.125rem;
    color: var(--warning);
    margin-top: 1rem;
}

/* Animation for modal */
@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Favorite Button */
.build-card .favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.favorite-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: scale(1.1);
}

.favorite-btn.favorited {
    color: var(--accent-gold);
    background: rgba(255, 193, 7, 0.2);
    border-color: var(--accent-gold);
}

.favorite-btn.favorited:hover {
    background: rgba(255, 193, 7, 0.3);
}

.favorite-btn i {
    font-size: 1rem;
}

/* Favorite button in list view actions */
.list-actions .favorite-btn {
    position: relative;
    top: auto;
    right: auto;
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-actions .favorite-btn i {
    font-size: 1.25rem;
}

/* Make build card relative positioned for favorite button */
.build-card {
    position: relative;
}

/* Responsive */
/* Modal Styles */
.build-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.build-modal {
    width: 950px;
    max-width: 90vw;
    height: 580px;
    padding: 1.5rem;
    background: rgba(25, 40, 70, 0.98) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(96, 165, 250, 0.4) !important;
    border-radius: 16px !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8),
               0 0 50px rgba(96, 165, 250, 0.4),
               0 0 120px rgba(96, 165, 250, 0.2),
               inset 0 0 30px rgba(255, 255, 255, 0.08) !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: scaleIn 0.3s ease;
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@media (max-width: 1024px) {
    .builds-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .build-list-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .builds-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .control-group {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: 100%;
    }

    .filter-group {
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
    }

    .share-options {
        grid-template-columns: 1fr;
    }
}

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

/* Strategy Specific Styles */
.strategies-container {
    width: 100%;
    max-width: 1400px;
    position: relative;
    margin-top: 0;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.6s ease;
}

.strategy-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.strategy-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    margin: -1rem -1rem 1rem -1rem;
}

.strategy-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.strategy-header h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-primary);
}

.strategy-header .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strategy-card .favorite-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    transition: all 0.3s ease;
}

.strategy-card .favorite-btn:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.strategy-card .favorite-btn.favorited {
    color: var(--accent-gold);
}

.battle-type.badge {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyber-blue);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.strategy-summary {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.strategy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.strategy-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.strategy-meta i {
    color: var(--cyber-blue);
}



/* Strategy Empty State */
.strategies-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeIn 0.6s ease;
}

.strategies-empty-state .empty-icon {
    font-size: 5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0.5;
}

.strategies-empty-state h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.strategies-empty-state p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Content Type Toggle */
.content-type-toggle {
    display: flex;
    gap: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1rem;
}

.content-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.content-tab:hover {
    color: var(--text-primary);
}

.content-tab.active {
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyber-blue);
}

/* Archive Source Toggle */
.archive-source-toggle {
    display: flex;
    gap: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.source-tab {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.source-tab:hover {
    color: var(--text-primary);
}

.source-tab.active {
    background: rgba(0, 212, 255, 0.2);
    color: var(--cyber-blue);
}

/* WebSocket Real-time Update Animations */

/* New build animation */
.new-build-animation {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Build updated flash */
.build-updated {
    animation: updateFlash 1s ease;
}

@keyframes updateFlash {
    0%, 100% {
        background-color: inherit;
    }
    50% {
        background-color: rgba(0, 212, 255, 0.1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
}

/* Build cloned animation */
.build-cloned {
    animation: cloneEffect 1s ease;
}

@keyframes cloneEffect {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(0.95);
    }
    75% {
        transform: scale(1.02);
    }
}

/* Heart pulse for likes */
.heart-pulse {
    animation: heartPulse 0.6s ease;
}

@keyframes heartPulse {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
        color: #ef4444;
    }
    50% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Star spin for favorites */
.star-spin {
    animation: starSpin 0.6s ease;
}

@keyframes starSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        color: #fbbf24;
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Stat counter update */
.stat-updated {
    animation: statPulse 0.6s ease;
}

@keyframes statPulse {
    0% {
        transform: scale(1);
        color: inherit;
    }
    50% {
        transform: scale(1.1);
        color: var(--cyber-blue);
    }
    100% {
        transform: scale(1);
        color: inherit;
    }
}

/* Archive toast notifications */
.archive-toast {
    position: fixed;
    bottom: 2rem;
    right: -400px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    max-width: 400px;
}

.archive-toast.show {
    right: 2rem;
}

.archive-toast.success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.archive-toast.success i {
    color: #10b981;
}

.archive-toast.info {
    border-color: var(--cyber-blue);
    background: rgba(0, 212, 255, 0.1);
}

.archive-toast.info i {
    color: var(--cyber-blue);
}

.archive-toast.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.archive-toast.error i {
    color: #ef4444;
}

/* View count eye blink */
.fa-eye.view-update {
    animation: eyeBlink 0.3s ease;
}

@keyframes eyeBlink {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.1);
    }
}

/* Build card hover with real-time indicator */
.build-card.has-activity {
    border-color: var(--cyber-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* Real-time activity indicator */
.activity-indicator {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--cyber-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
    }
}

/* Clickable like stat for fleet builds */
.build-stats .like-stat.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin: -0.25rem -0.5rem;
}

.build-stats .like-stat.clickable:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.05);
}

.build-stats .like-stat.clickable:active {
    transform: scale(0.95);
}

.build-stats .like-stat .like-icon {
    transition: color 0.3s ease;
}

.build-stats .like-stat.clickable:hover .like-icon {
    color: var(--error-red);
}

/* Already liked state */
.build-stats .like-stat .like-icon.liked,
.strategy-meta .like-stat .like-icon.liked {
    color: var(--error-red) !important;
}