:root {
    --primary: #8b5cf6;
    --secondary: #10b981;
    --accent: #06b6d4;
    --bg-light: #f8fafb;
    --bg-dark: #0f0f1e;
    --card-light: rgba(255, 255, 255, 0.95);
    --card-dark: rgba(30, 30, 46, 0.85);
    --text-light: #1a1a2e;
    --text-dark: #e4e4e7;
    --border-light: rgba(139, 92, 246, 0.1);
    --border-dark: rgba(139, 92, 246, 0.3);
    --shadow-light: rgba(139, 92, 246, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s;
    overflow-x: hidden;
    line-height: 1.5;
}

body.light-mode {
    background: linear-gradient(135deg, #f5f7fa 0%, #dfe9f3 100%);
    color: var(--text-light);
}

body.dark-mode {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-dark);
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    animation: bgFloat 15s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.8);
    border-bottom-color: var(--border-light);
}

body.dark-mode .navbar {
    background: rgba(15, 15, 30, 0.8);
    border-bottom-color: var(--border-dark);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-search {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.nav-search input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid transparent;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
}

body.light-mode .nav-search input {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-light);
}

body.dark-mode .nav-search input {
    background: rgba(30, 30, 46, 0.9);
    color: var(--text-dark);
}

.nav-search input:focus {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.nav-search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle, .filter-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}

body.light-mode .theme-toggle,
body.light-mode .filter-btn {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-light);
}

body.dark-mode .theme-toggle,
body.dark-mode .filter-btn {
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-dark);
}

.theme-toggle:hover, .filter-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 15px var(--shadow-light);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2.5rem 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Filter */
.category-filter {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

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

.filter-chip {
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.75rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 165px;
    flex: 0 0 auto;
    border: 1.5px solid;
}

/* Renkli kenarlıklar - her chip için farklı renk */
.filter-chip:nth-child(1) { border-color: #8b5cf6; } /* Mor */
.filter-chip:nth-child(2) { border-color: #10b981; } /* Yeşil */
.filter-chip:nth-child(3) { border-color: #06b6d4; } /* Cyan */
.filter-chip:nth-child(4) { border-color: #f59e0b; } /* Turuncu */
.filter-chip:nth-child(5) { border-color: #ec4899; } /* Pembe */
.filter-chip:nth-child(6) { border-color: #8b5cf6; } /* Mor */
.filter-chip:nth-child(7) { border-color: #10b981; } /* Yeşil */
.filter-chip:nth-child(8) { border-color: #06b6d4; } /* Cyan */
.filter-chip:nth-child(9) { border-color: #f59e0b; } /* Turuncu */
.filter-chip:nth-child(10) { border-color: #ec4899; } /* Pembe */
.filter-chip:nth-child(11) { border-color: #8b5cf6; } /* Mor */
.filter-chip:nth-child(12) { border-color: #10b981; } /* Yeşil */
.filter-chip:nth-child(13) { border-color: #06b6d4; } /* Cyan */
.filter-chip:nth-child(14) { border-color: #f59e0b; } /* Turuncu */
.filter-chip:nth-child(15) { border-color: #ec4899; } /* Pembe */
.filter-chip:nth-child(16) { border-color: #8b5cf6; } /* Mor */
.filter-chip:nth-child(17) { border-color: #10b981; } /* Yeşil */
.filter-chip:nth-child(18) { border-color: #06b6d4; } /* Cyan */
.filter-chip:nth-child(19) { border-color: #f59e0b; } /* Turuncu */
.filter-chip:nth-child(20) { border-color: #ec4899; } /* Pembe */
.filter-chip:nth-child(n+21) { border-color: #8b5cf6; } /* Geri kalanlar mor */

/* Menü ikonları için renkler */
.filter-chip i {
    color: var(--primary);
    transition: all 0.3s;
}

body.light-mode .filter-chip {
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-light);
}

body.dark-mode .filter-chip {
    background: rgba(30, 30, 46, 0.7);
    color: var(--text-dark);
}

.filter-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.filter-chip.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    border-width: 2px;
}

.filter-chip.active i {
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
}

/* Grid Layout */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    animation: fadeIn 0.8s ease;
}

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

/* Category Card */
.category-card {
    border-radius: 16px;
    padding: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s ease backwards;
}

body.light-mode .category-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--border-light);
}

body.dark-mode .category-card {
    background: rgba(30, 30, 46, 0.75);
    border-color: var(--border-dark);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-dark);
    border-color: var(--primary);
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.15s; }
.category-card:nth-child(3) { animation-delay: 0.2s; }
.category-card:nth-child(4) { animation-delay: 0.25s; }
.category-card:nth-child(5) { animation-delay: 0.3s; }
.category-card:nth-child(6) { animation-delay: 0.35s; }

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.category-icon i {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Farklı kategoriler için renkli ikonlar */
.category-card:nth-child(1) .category-icon { background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%); }
.category-card:nth-child(2) .category-icon { background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%); }
.category-card:nth-child(3) .category-icon { background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%); }
.category-card:nth-child(4) .category-icon { background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%); }
.category-card:nth-child(5) .category-icon { background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%); }
.category-card:nth-child(6) .category-icon { background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%); }
.category-card:nth-child(7) .category-icon { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.category-card:nth-child(8) .category-icon { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.category-card:nth-child(9) .category-icon { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.category-card:nth-child(10) .category-icon { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.category-card:nth-child(11) .category-icon { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.category-card:nth-child(12) .category-icon { background: linear-gradient(135deg, #f59e0b 0%, #8b5cf6 100%); }
.category-card:nth-child(13) .category-icon { background: linear-gradient(135deg, #ec4899 0%, #10b981 100%); }
.category-card:nth-child(14) .category-icon { background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%); }
.category-card:nth-child(15) .category-icon { background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%); }
.category-card:nth-child(16) .category-icon { background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%); }
.category-card:nth-child(17) .category-icon { background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%); }
.category-card:nth-child(18) .category-icon { background: linear-gradient(135deg, #f59e0b 0%, #06b6d4 100%); }
.category-card:nth-child(19) .category-icon { background: linear-gradient(135deg, #ef4444 0%, #8b5cf6 100%); }
.category-card:nth-child(20) .category-icon { background: linear-gradient(135deg, #10b981 0%, #ec4899 100%); }
.category-card:nth-child(21) .category-icon { background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%); }
.category-card:nth-child(22) .category-icon { background: linear-gradient(135deg, #10b981 0%, #f59e0b 100%); }
.category-card:nth-child(23) .category-icon { background: linear-gradient(135deg, #f59e0b 0%, #10b981 100%); }
.category-card:nth-child(24) .category-icon { background: linear-gradient(135deg, #ec4899 0%, #06b6d4 100%); }
.category-card:nth-child(25) .category-icon { background: linear-gradient(135deg, #8b5cf6 0%, #ef4444 100%); }
.category-card:nth-child(26) .category-icon { background: linear-gradient(135deg, #06b6d4 0%, #ec4899 100%); }
.category-card:nth-child(27) .category-icon { background: linear-gradient(135deg, #10b981 0%, #8b5cf6 100%); }
.category-card:nth-child(28) .category-icon { background: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%); }
.category-card:nth-child(29) .category-icon { background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%); }
.category-card:nth-child(30) .category-icon { background: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%); }

.category-title {
    font-size: 1.15rem;
    font-weight: 800;
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.category-desc {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}

.link-item {
    transition: all 0.3s;
}

.link-item a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

body.light-mode .link-item a {
    color: var(--text-light);
    background: rgba(139, 92, 246, 0.05);
}

body.dark-mode .link-item a {
    color: var(--text-dark);
    background: rgba(139, 92, 246, 0.15);
}

.link-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: transform 0.3s;
}

.link-item a:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px var(--shadow-light);
}

body.light-mode .link-item a:hover {
    background: rgba(139, 92, 246, 0.15);
}

body.dark-mode .link-item a:hover {
    background: rgba(139, 92, 246, 0.3);
}

.link-item a:hover::before {
    transform: scaleY(1);
}

.link-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Highlight for search */
.highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(16, 185, 129, 0.3));
    padding: 0 4px;
    border-radius: 4px;
    font-weight: 700;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid;
}

body.light-mode .footer {
    background: rgba(255, 255, 255, 0.7);
    border-top-color: var(--border-light);
}

body.dark-mode .footer {
    background: rgba(15, 15, 30, 0.7);
    border-top-color: var(--border-dark);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

body.light-mode .social-link {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
}

body.dark-mode .social-link {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent);
}

.social-link:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 25px var(--shadow-light);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
}

/* Filter Panel */
.filter-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: -5px 0 30px var(--shadow-dark);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
}

body.light-mode .filter-panel {
    background: rgba(255, 255, 255, 0.95);
}

body.dark-mode .filter-panel {
    background: rgba(15, 15, 30, 0.95);
}

.filter-panel.open {
    right: 0;
}

.filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.filter-panel-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.close-filter {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

body.light-mode .close-filter {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-light);
}

body.dark-mode .close-filter {
    background: rgba(139, 92, 246, 0.2);
    color: var(--text-dark);
}

.close-filter:hover {
    transform: scale(1.1) rotate(90deg);
}

.filter-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-container {
        flex-wrap: wrap;
    }

    .nav-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        width: 100%;
        right: -100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .category-filter {
        justify-content: flex-start;
        padding: 1rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .filter-chip {
        width: 100%;
        padding: 0.65rem 0.6rem;
        font-size: 0.85rem;
        gap: 0.4rem;
        font-weight: 600;
    }
    
    .filter-chip svg {
        width: 16px;
        height: 16px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* Email Badge Styling */
.email-badge {
    margin-top: 1.5rem;
    display: inline-block;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body.light-mode .email-link {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: #6d28d9;
}

body.dark-mode .email-link {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(16, 185, 129, 0.15));
    border: 2px solid rgba(139, 92, 246, 0.4);
    color: #a78bfa;
}

.email-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.6s;
}

.email-link:hover::before {
    left: 100%;
}

.email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.3);
}

body.light-mode .email-link:hover {
    border-color: rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(16, 185, 129, 0.15));
}

body.dark-mode .email-link:hover {
    border-color: rgba(139, 92, 246, 0.7);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(16, 185, 129, 0.2));
}

.email-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    transition: all 0.3s;
}

body.light-mode .email-icon-wrapper {
    background: linear-gradient(135deg, #8b5cf6, #10b981);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

body.dark-mode .email-icon-wrapper {
    background: linear-gradient(135deg, #7c3aed, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.email-link:hover .email-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.email-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.email-text {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .email-link {
        padding: 0.75rem 1.25rem;
        gap: 0.6rem;
    }
    
    .email-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .email-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }
    
    .email-text {
        font-size: 0.875rem;
    }
}
