/* Base */
.skins-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #292828 100%);
    color: #ffffff;
    padding: 2rem;
    font-family: 'Rajdhani', sans-serif;
}

/* Server Navigation */
.server-nav {
    margin-bottom: 2rem;
}

/* Skins Server Selector Styles */
.skins-server-selector {
    position: relative;
    width: 320px;
    margin: -6rem 0 1.5rem 2rem;
    margin-left: -2rem;
}

.skins-server-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(41, 40, 40, 0.9));
    border: 2px solid rgba(255, 120, 0, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(255, 120, 0, 0.1);
}

/* Animated border shimmer */
.skins-server-trigger::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 120, 0, 0.4) 50%, 
        transparent 70%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.skins-server-trigger:hover::before {
    opacity: 1;
    animation: borderShimmer 2s linear infinite;
}

@keyframes borderShimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Scan line effect */
.skins-server-trigger::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 120, 0, 0.8), 
        transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.skins-server-trigger:hover::after {
    left: 100%;
}

.skins-server-trigger:hover {
    border-color: #ff7800;
    box-shadow: 0 0 30px rgba(255, 120, 0, 0.3),
                0 8px 32px rgba(255, 120, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.skins-server-current {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.skins-server-status {
    width: 12px;
    height: 12px;
    position: relative;
}

.skins-status-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff7800, #ff9900);
    border-radius: 3px;
    position: relative;
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.8),
                0 0 40px rgba(255, 120, 0, 0.4),
                inset 0 0 10px rgba(255, 153, 0, 0.5);
    animation: enhancedPulseGlow 2s infinite ease-in-out;
}

/* Pulsing ring effect */
.skins-status-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: transparent;
    border: 2px solid rgba(255, 120, 0, 0.6);
    border-radius: 4px;
    animation: pulseRing 2s infinite ease-in-out;
}

@keyframes enhancedPulseGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 120, 0, 0.8),
                   0 0 40px rgba(255, 120, 0, 0.4),
                   inset 0 0 10px rgba(255, 153, 0, 0.5);
        transform: rotate(45deg) scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 120, 0, 1),
                   0 0 60px rgba(255, 120, 0, 0.6),
                   inset 0 0 15px rgba(255, 153, 0, 0.8);
        transform: rotate(45deg) scale(1.1);
    }
}

@keyframes pulseRing {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0;
        transform: scale(1.3);
    }
}

.skins-server-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skins-server-name {
    color: #ff7800;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skins-dropdown-arrow {
    color: #ff7800;
    transition: transform 0.3s ease;
    height: 18px;
    width: 18px;
}

.skins-server-trigger[aria-expanded="true"] .skins-dropdown-arrow {
    transform: rotate(180deg);
}

.skins-server-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(41, 40, 40, 0.98));
    border: 2px solid rgba(255, 120, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(255, 120, 0, 0.2),
                0 4px 16px rgba(0, 0, 0, 0.4);
}

.skins-server-dropdown.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.skins-server-option {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 120, 0, 0.1);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover glow effect */
.skins-server-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 120, 0, 0.2), 
        transparent);
    transition: left 0.4s ease;
    z-index: 0;
}

.skins-server-option:hover::before {
    left: 100%;
}

.skins-server-option:last-child {
    border-bottom: none;
}

.skins-server-option:hover {
    background: rgba(255, 120, 0, 0.1);
    padding-left: 1.5rem;
    color: #ff7800;
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.5);
}

.skins-server-option.active {
    background: linear-gradient(90deg, rgba(255, 120, 0, 0.2), rgba(255, 120, 0, 0.1));
    border-left: 3px solid #ff7800;
    color: #ff7800;
    text-shadow: 0 0 10px rgba(255, 120, 0, 0.5);
    padding-left: 1.5rem;
}

/* Active item glow */
.skins-server-option.active::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #ff7800, #ff9900);
    box-shadow: 0 0 10px rgba(255, 120, 0, 0.8);
}

.dropdown-arrow {
    color: #ff7800;
    transition: transform 0.3s ease;
    height: 18px;
    width: 18px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 120, 0, 0.2);
    border: 2px solid rgba(255, 120, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.2s ease;
    z-index: 2;
}

.skin-image:hover .play-button {
    background: rgba(255, 120, 0, 0.3);
    border-color: #ff7800;
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.3);
}

.server-trigger[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.server-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 120, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 50;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.server-dropdown.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.server-option {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 120, 0, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.server-option:last-child {
    border-bottom: none;
}

.server-option:hover {
    background: rgba(255, 120, 0, 0.1);
    padding-left: 1.25rem;
}

.server-option.active {
    background: rgba(255, 120, 0, 0.15);
    border-left: 2px solid #ff7800;
}

@media (max-width: 640px) {
    .server-selector {
        max-width: 100%;
        padding: 0 1rem;
    }
}

.server-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, #ff7800 0%, #ff9040 100%);
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(255,120,0,0.2);
}

.server-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,120,0,0.3);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34,197,94,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.dropdown-content {
    position: absolute;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
}

.server-option {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.server-option:hover {
    background: rgba(255,120,0,0.1);
}

.server-option small {
    color: #999;
    font-size: 0.875rem;
}

/* Search Container */
.search-container {
    margin-bottom: 2rem;
    position: relative;
}

.search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 3.5rem;
    background: linear-gradient(135deg, rgba(41, 40, 40, 0.95), rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(255, 120, 0, 0.2);
    border-radius: 16px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.search-input::placeholder {
    color: #999999;
    font-weight: 400;
}

.search-input:focus {
    outline: none;
    border-color: #ff7800;
    box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.2),
                0 8px 32px rgba(255, 120, 0, 0.1);
    transform: translateY(-2px);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ff7800;
    font-size: 1.1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: #ff9900;
}

.clear-search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999999;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.clear-search-btn:hover {
    background: rgba(255, 120, 0, 0.1);
    color: #ff7800;
}

.search-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(41, 40, 40, 0.95));
    border: 2px solid rgba(255, 120, 0, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-results.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.search-result-item {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 120, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 120, 0, 0.1);
    padding-left: 1.5rem;
}

.search-result-item img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(255, 120, 0, 0.2);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-result-weapon {
    color: #999999;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Categories */
.categories {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    margin-bottom: 2.5rem;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: #ff7800 rgba(41, 40, 40, 0.5);
    position: relative;
}

/* Enhanced scrollbar */
.categories::-webkit-scrollbar {
    height: 8px;
}

.categories::-webkit-scrollbar-track {
    background: rgba(41, 40, 40, 0.5);
    border-radius: 4px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.categories::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff7800, #ff9900);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 120, 0, 0.3);
}

.categories::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff9900, #ff7800);
}

.category {
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, rgba(41, 40, 40, 0.95), rgba(0, 0, 0, 0.9));
    border: 2px solid rgba(255, 120, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Category hover effects */
.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 120, 0, 0.3), 
        transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.category:hover::before {
    left: 100%;
}

.category:hover {
    background: linear-gradient(135deg, rgba(255, 120, 0, 0.15), rgba(255, 120, 0, 0.1));
    border-color: rgba(255, 120, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.2),
                0 4px 15px rgba(0, 0, 0, 0.3);
}

.category.active {
    background: linear-gradient(135deg, #ff7800, #ff9900);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.3),
                0 4px 15px rgba(255, 120, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Active category glow */
.category.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 120, 0, 0.4), 
        rgba(255, 153, 0, 0.3), 
        rgba(255, 120, 0, 0.4));
    border-radius: 12px;
    z-index: -1;
    animation: categoryGlow 3s ease-in-out infinite;
}

@keyframes categoryGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Skins Grid */
.skins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
}

/* Grid background effect */
.skins-grid::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle at center, 
        rgba(255, 120, 0, 0.02) 0%, 
        transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.skin-card {
    background: linear-gradient(135deg, rgba(41, 40, 40, 0.95), rgba(0, 0, 0, 0.98));
    border: 2px solid rgba(255, 120, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                0 4px 16px rgba(255, 120, 0, 0.1);
}

/* Card hover glow effect */
.skin-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 120, 0, 0.3) 50%, 
        transparent 70%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.skin-card:hover::before {
    opacity: 1;
    animation: cardBorderGlow 3s linear infinite;
}

@keyframes cardBorderGlow {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.skin-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ff7800;
    box-shadow: 0 16px 48px rgba(255, 120, 0, 0.25),
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 120, 0, 0.2);
}

.skin-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff7800, transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.skin-card:hover::after {
    transform: scaleX(1);
}

.skin-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(41, 40, 40, 0.9));
}

/* Enhanced image overlay */
.skin-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(0, 0, 0, 0.4) 40%, 
        transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.skin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.skin-card:hover .skin-image img {
    transform: scale(1.08) rotate(0.5deg);
    filter: brightness(1) contrast(1.2);
}

.skin-info {
    padding: 1.25rem;
}

.skin-info h3 {
    margin: 0 0 1rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wear-select,
.seed-input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 120, 0, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.2s ease;
}

.wear-select:focus,
.seed-input:focus {
    border-color: #ff7800;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,120,0,0.2);
}

.select-btn {
    position: relative;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #ff7800, #ff9900);
    border: 1px solid rgba(255, 120, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

/* Glowing effect on hover */
.select-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #ff7800, #ff9040, 
        #ff7800, #ff9040,
        #ff7800, #ff9040);
    background-size: 400%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Shine effect */
.select-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
    z-index: 2;
}

/* Hover states */
.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.4);
}

.select-btn:hover::before {
    opacity: 1;
    animation: glowing 8s linear infinite;
}

.select-btn:hover::after {
    left: 150%;
    transition: 0.5s ease-in-out;
}

.select-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.3);
}

/* Glowing animation */
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

.global-mute-btn {
    position: relative;
    padding: 0.75rem 2rem;
    background: linear-gradient(to right, #ff7800, #ff9900);
    border: 1px solid rgba(255, 120, 0, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    z-index: 1;
}

.global-mute-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: skewX(-25deg);
    transition: all 0.5s ease;
    z-index: -1;
}

.global-mute-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ff9040 0%, #ff7800 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.global-mute-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 120, 0, 0.2),
                0 6px 6px rgba(255, 120, 0, 0.1),
                0 0 100px -10px #ff7800;
}

.global-mute-btn:hover::before {
    left: 100%;
}

.global-mute-btn:hover::after {
    opacity: 1;
}

.global-mute-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(255, 120, 0, 0.2);
}

.global-mute-btn.muted {
    background: linear-gradient(90deg, #4a4a4a 0%, #666666 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.global-mute-btn.muted:hover {
    background: linear-gradient(90deg, #666666 0%, #4a4a4a 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2),
                0 6px 6px rgba(0, 0, 0, 0.1);
}

.global-mute-btn.muted::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

/* Selected State */
.skin-card.selected {
    border: 2px solid #ff7800;
}

.skin-card.selected::before {
    content: "✓";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #0a5f1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    animation: checkmarkPop 0.3s ease-out;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* No Items State */
.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(to bottom right, rgba(41, 40, 40, 0.95), rgba(0, 0, 0, 0.95));
    border-radius: 12px;
    border: 1px solid rgba(255, 120, 0, 0.1);
    color: #999999;
    font-size: 1.125rem;
    font-family: 'Rajdhani', sans-serif;
}

/* Loading States */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

.loading-indicator {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #ff7800;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.loading-indicator i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(255, 120, 0, 0.25);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 16px 48px rgba(255, 120, 0, 0.4);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .skins-page {
        padding: 1rem;
    }
    
    .skins-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .skin-info {
        padding: 1rem;
    }
    
    .skin-info h3 {
        font-size: 1rem;
    }
    
    .wear-select,
    .seed-input,
    .select-btn {
        padding: 0.625rem;
    }
}