/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --bg-color: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: #475569;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --lobster-primary: #ff6b35;
    --lobster-secondary: #f7931e;
    --lobster-accent: #ff4081;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-2: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-lobster: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff4081 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 1.75rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--text-primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box i {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.search-box input {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 14px 10px 40px;
    color: var(--text-primary);
    font-size: 0.9rem;
    width: 220px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    width: 280px;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    background: var(--bg-card);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 8px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.lang-dropdown a:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Category Filter */
.category-filter {
    padding: 32px 0;
    position: sticky;
    top: 72px;
    background: var(--bg-color);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 12px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-1);
    border-color: transparent;
    color: white;
}

/* Tools Section */
.tools-section {
    padding: 48px 0 80px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Tool Card */
.tool-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.tool-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tool-icon.chat { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); }
.tool-icon.image { background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%); }
.tool-icon.video { background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); }
.tool-icon.model3d { background: linear-gradient(135deg, #10b981 0%, #22c55e 100%); }
.tool-icon.audio { background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%); }
.tool-icon.other { background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%); }
.tool-icon.lobster { background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); }
.tool-icon.lobster-derivatives { background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%); }

.tool-info {
    flex: 1;
}

.tool-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.tool-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 44px;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tool-tag {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
}

.tool-tag.free {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

.tool-tag.paid {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-color);
}

.tool-tag.chinese {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.tool-tag.token {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: white;
    font-weight: 600;
}

/* Token Button Styles */
.btn-token {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    border: none;
    color: white;
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-token:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(247, 147, 30, 0.4);
}

.tool-actions {
    display: flex;
    gap: 12px;
}

.btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--border-color);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 48px 0 32px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo i {
    font-size: 1.75rem;
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }
    
    .search-box input {
        width: 180px;
    }
    
    .search-box input:focus {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .header .container {
        height: 64px;
    }

    .header-actions {
        gap: 8px;
    }
    
    .search-box {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 12px 16px;
        border-bottom: 1px solid var(--border-color);
        display: none;
        z-index: 998;
    }

    .search-box.active {
        display: flex;
    }

    .search-box input {
        width: 100% !important;
    }

    .search-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        padding: 10px 12px;
        color: var(--text-primary);
        cursor: pointer;
        width: 42px;
        height: 42px;
    }

    .search-toggle-btn:hover {
        border-color: var(--primary-color);
        background: var(--bg-card);
    }

    @media (min-width: 769px) {
        .search-toggle-btn {
            display: none;
        }
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .category-filter {
        top: 64px;
        padding: 20px 0;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tool-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Lobster Theme Styles */
.lobster-nav {
    background: var(--gradient-lobster);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.lobster-nav:hover {
    opacity: 0.8;
}

.lobster-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-xl);
    padding: 32px 48px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lobster-icon {
    font-size: 4rem;
    animation: lobsterWave 2s ease-in-out infinite;
}

@keyframes lobsterWave {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.lobster-info {
    text-align: left;
}

.lobster-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    background: var(--gradient-lobster);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lobster-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.btn-lobster {
    background: var(--gradient-lobster);
    border: none;
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-lobster:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.lobster-filter {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
    border-color: var(--lobster-primary);
    color: var(--lobster-primary);
}

.lobster-filter:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(247, 147, 30, 0.3) 100%);
}

.lobster-filter.active {
    background: var(--gradient-lobster);
    color: white;
    border-color: transparent;
}

/* Tool Card Lobster Styles */
.tool-card[data-category="lobster"]::before {
    background: var(--gradient-lobster);
}

.tool-card[data-category="lobster-derivatives"]::before {
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 64px 20px;
    color: var(--text-secondary);
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* ===== Skills Zone ===== */
.skills-zone {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    border: 1.5px solid rgba(255, 107, 53, 0.25);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.skills-zone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.skills-zone-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.skills-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.skills-zone-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.skills-zone-title p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-skills-all {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    display: inline-block;
}

.btn-skills-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.skill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.25s ease;
    cursor: pointer;
}

.skill-card:hover {
    border-color: var(--lobster-primary);
    background: rgba(255, 107, 53, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.2);
}

.skill-card-github {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.06);
}

.skill-card-github:hover {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.12);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.skill-card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

.skill-card-info {
    flex: 1;
    min-width: 0;
}

.skill-card-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.skill-card-info p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.skill-download-btn {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.skill-card:hover .skill-download-btn {
    transform: scale(1.15);
}

.skill-github-btn {
    width: auto;
    padding: 0 10px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    font-size: 0.75rem;
    white-space: nowrap;
}

.skills-install-tip {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.skills-install-tip code {
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.9rem;
    color: #a5f3fc;
    background: rgba(6, 182, 212, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.skills-install-tip span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Skills Zone Responsive */
@media (max-width: 768px) {
    .skills-zone {
        padding: 24px 20px;
        margin-top: 32px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-zone-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Tool Card Skills Styles */
.tool-card[data-category="skills"]::before {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%);
}

.tool-icon.skills {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

/* Skills Filter Button */
.skills-filter {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
    color: #a5b4fc !important;
}

.skills-filter:hover,
.skills-filter.active {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%) !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4) !important;
}

/* Skills Section (standalone) */
.skills-section {
    padding: 0 0 60px;
}

.skills-section .skills-zone {
    margin-top: 0 !important;
}
