/* Mods Page Specific Styles */
        .page-header {
            text-align: center;
            margin: 3rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 100, 255, 0.1));
            border-radius: 15px;
        }
        
        .page-subtitle {
            color: #ccc;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 1rem auto;
        }
        
        .mod-category {
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(0, 255, 136, 0.2);
            border-radius: 15px;
        }
        
        .category-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid rgba(0, 255, 136, 0.3);
        }
        
        .category-icon {
            width: 50px;
            height: 50px;
            background: #00ff88;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.5rem;
        }
        
        .mods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
        }
        
        .mod-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 255, 136, 0.1);
            border-radius: 10px;
            padding: 1.2rem;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        
        .mod-card:hover {
            background: rgba(0, 255, 136, 0.1);
            border-color: #00ff88;
            transform: translateY(-5px);
        }
        
        .mod-name {
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .mod-actions {
            margin-top: auto;
            display: flex;
            gap: 0.8rem;
            align-items: center;
        }
        
        .steam-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: #1b2838;
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
            border: 1px solid #2a475e;
        }
        
        .steam-btn:hover {
            background: #2a475e;
        }
        
        .copy-btn {
            background: rgba(0, 255, 136, 0.2);
            color: #00ff88;
            border: 1px solid #00ff88;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s;
        }
        
        .copy-btn:hover {
            background: #00ff88;
            color: #000;
        }
        
        .mod-count-badge {
            background: rgba(0, 255, 136, 0.2);
            color: #00ff88;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-left: 1rem;
        }
        
        .mod-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .stat-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
        }
        
        .stat-box .number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #00ff88;
            font-family: 'Orbitron', sans-serif;
        }
        
        .requirements {
            background: rgba(255, 100, 100, 0.1);
            border: 1px solid rgba(255, 100, 100, 0.3);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        
        .requirements h3 {
            color: #ff6464;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .install-guide {
            background: rgba(20, 20, 20, 0.9);
            border: 1px solid rgba(255, 200, 0, 0.2);
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .install-steps {
            display: grid;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .install-step {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .step-number {
            background: #00ff88;
            color: #000;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 1.2rem;
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, #00ff88, #00cc6a);
            color: #000;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            transition: all 0.3s;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
        }
        
        .discord-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: #5865F2;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            margin-left: 1rem;
            transition: all 0.3s;
        }
        
        .discord-btn:hover {
            background: #4752c4;
            transform: translateY(-3px);
        }
        
        .mod-search {
            margin: 2rem 0;
        }
        
        .search-box {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-box input {
            width: 100%;
            padding: 1.2rem 1.2rem 1.2rem 3.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(0, 255, 136, 0.3);
            border-radius: 10px;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: #00ff88;
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
        }
        
        .search-box i {
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 1.2rem;
        }
        
        .no-results {
            text-align: center;
            padding: 3rem;
            color: #888;
            font-size: 1.1rem;
            display: none;
        }
        
        .load-order {
            background: rgba(0, 100, 255, 0.1);
            border: 1px solid rgba(100, 150, 255, 0.3);
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .load-order h3 {
            color: #6495ed;
        }
        
        @media (max-width: 768px) {
            .mods-grid {
                grid-template-columns: 1fr;
            }
            
            .install-step {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .download-btn, .discord-btn {
                width: 100%;
                margin: 0.5rem 0;
                justify-content: center;
            }
        }
