@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Gasoek+One&family=JetBrains+Mono:wght@400;500&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg: #0f0f1a;
    --text: #ffffff;
    --accent: #ff6b9d;
    --secondary: #c084fc;
    --tertiary: #22d3ee;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(30, 30, 50, 0.8);
    --job-bg: #1e1e32;
    --glow: rgba(255, 107, 157, 0.15);
    --tag-bg: rgba(255, 107, 157, 0.15);
    --gradient-1: linear-gradient(135deg, #ff6b9d, #c084fc, #22d3ee);
}

[data-theme="light"] {
    --bg: #faf5ff;
    --text: #1e1b4b;
    --accent: #db2777;
    --secondary: #7c3aed;
    --tertiary: #0891b2;
    --muted: #64748b;
    --border: rgba(0, 0, 0, 0.08);
    --card-bg: rgba(255, 255, 255, 0.9);
    --job-bg: #ffffff;
    --glow: rgba(219, 39, 119, 0.1);
    --tag-bg: rgba(219, 39, 119, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(34, 211, 238, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--card-bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--glow);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 32px var(--glow);
    border-color: var(--secondary);
}

.theme-toggle:active {
    transform: scale(0.95);
}

@keyframes gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

footer {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
