:root {
    --bg: #050505;
    --surface: rgba(20, 20, 20, 0.4);
    --surface-hover: rgba(40, 40, 40, 0.6);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);
    --accent: #0070f3;
    --accent-glow: rgba(0, 112, 243, 0.4);
    --roblox-color: #e63946;
    --discord-color: #5865F2;
    --text-main: #ffffff;
    --text-sec: #a1a1a1;
    --input-bg: transparent;
    
    --aurora-1: rgba(0, 112, 243, 0.15);
    --aurora-2: rgba(230, 57, 70, 0.1);
    --grid-color: rgba(255, 255, 255, 0.03);
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

body.light-theme {
    --bg: #f5f5f7;
    --surface: rgba(255, 255, 255, 0.5);
    --surface-hover: rgba(255, 255, 255, 0.8);
    --border: rgba(0, 0, 0, 0.05);
    --border-hover: rgba(0, 0, 0, 0.15);
    --accent: #005bb5;
    --accent-glow: rgba(0, 91, 181, 0.2);
    --text-main: #1d1d1f;
    --text-sec: #515154;
    --input-bg: rgba(255, 255, 255, 0.5);
    
    --aurora-1: rgba(0, 91, 181, 0.08);
    --aurora-2: rgba(230, 57, 70, 0.05);
    --grid-color: rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.4s ease, border-color 0.4s ease, color 0.3s ease, box-shadow 0.4s ease;
    cursor: none;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-main);
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--accent);
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--surface-hover);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--text-main);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s, border-radius 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-code);
    font-size: 0px;
    color: transparent;
    overflow: hidden;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-hover);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s, mix-blend-mode 0.2s, border-radius 0.2s;
}

.custom-cursor.hover { width: 12px; height: 12px; background: var(--accent); }
.cursor-glow.hover { width: 60px; height: 60px; background: var(--accent-glow); border-color: transparent; }

body.cursor-spotlight .cursor-glow {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border: none;
}
body.cursor-spotlight .custom-cursor { display: none; }

body.cursor-minimal .cursor-glow { display: none; }
body.cursor-minimal .custom-cursor { width: 4px; height: 4px; background: var(--text-main); }
body.cursor-minimal .custom-cursor.hover { width: 8px; height: 8px; background: var(--accent); }

body.cursor-hollow .custom-cursor { display: none; }
body.cursor-hollow .cursor-glow { width: 20px; height: 20px; border: 2px solid var(--accent); background: transparent; }
body.cursor-hollow .cursor-glow.hover { width: 50px; height: 50px; background: rgba(0, 112, 243, 0.1); }

body.cursor-crosshair .custom-cursor {
    width: 20px; height: 20px; background: transparent; border: 2px solid var(--roblox-color);
}
body.cursor-crosshair .custom-cursor::before, body.cursor-crosshair .custom-cursor::after {
    content: ''; position: absolute; background: var(--roblox-color);
}
body.cursor-crosshair .custom-cursor::before { width: 2px; height: 30px; top: -5px; left: 7px; }
body.cursor-crosshair .custom-cursor::after { width: 30px; height: 2px; top: 7px; left: -5px; }
body.cursor-crosshair .cursor-glow { display: none; }

body.cursor-inverter .cursor-glow {
    width: 40px; height: 40px; background: #fff; border: none; mix-blend-mode: difference; z-index: 10000;
}
body.cursor-inverter .custom-cursor { display: none; }
body.cursor-inverter .cursor-glow.hover { width: 80px; height: 80px; }

body.cursor-bubble .custom-cursor { transition: width 0.3s, height 0.3s, background 0.3s, color 0.3s; }
body.cursor-bubble .custom-cursor.hover {
    width: 60px; height: 30px; background: var(--text-main); color: var(--bg); font-size: 0.6rem; font-weight: bold; border-radius: 15px; content: 'Hover'; text-transform: uppercase;
}
body.cursor-bubble .custom-cursor.hover::after { content: 'OPEN'; }

body.cursor-glitch .cursor-glow { animation: glitchCursorAnim 0.3s infinite; border: 2px solid #39ff14; background: rgba(57, 255, 20, 0.1); }

@keyframes glitchCursorAnim {
    0% { transform: translate(-50%, -50%) skew(0deg); box-shadow: -2px 0 red, 2px 0 blue; }
    20% { transform: translate(-52%, -50%) skew(-5deg); box-shadow: 2px 0 red, -2px 0 blue; }
    40% { transform: translate(-50%, -48%) skew(5deg); box-shadow: -2px 0 red, 2px 0 blue; }
    60% { transform: translate(-48%, -50%) skew(-5deg); box-shadow: 2px 0 red, -2px 0 blue; }
    80% { transform: translate(-50%, -52%) skew(5deg); box-shadow: -2px 0 red, 2px 0 blue; }
    100% { transform: translate(-50%, -50%) skew(0deg); box-shadow: 2px 0 red, -2px 0 blue; }
}

.cursor-trail-particle {
    position: fixed; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 9997;
    animation: fadeTrail 0.5s forwards; transform: translate(-50%, -50%);
}
@keyframes fadeTrail { 0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.1); } }

.bg-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: var(--bg); overflow: hidden; }

.aurora {
    position: absolute; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--aurora-1), transparent 60%),
                radial-gradient(circle at 80% 20%, var(--aurora-2), transparent 50%);
    filter: blur(80px); animation: auroraMove 15s infinite alternate ease-in-out;
}

.noise-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.04; pointer-events: none; mix-blend-mode: overlay;
}

.grid-lines {
    position: absolute; width: 100%; height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
    transform: perspective(500px) rotateX(20deg) scale(1.5);
    opacity: 0.8; animation: gridFloat 20s linear infinite; pointer-events: none;
}

@keyframes auroraMove { 0% { transform: scale(1); } 100% { transform: scale(1.1) translate(-30px, 30px); } }
@keyframes gridFloat { 0% { background-position: 0 0; } 100% { background-position: 0 40px; } }

.floating-nav { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 1000; }
.nav-content {
    display: flex; align-items: center; gap: 15px; background: var(--surface);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border); padding: 10px 20px; border-radius: 50px; box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.nav-item, .nav-tool {
    background: transparent; border: none; color: var(--text-sec); width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.1rem; position: relative; overflow: hidden;
}
.nav-item.special { width: auto; padding: 0 20px; border-radius: 30px; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); font-family: var(--font-code); font-size: 0.85rem; font-weight: 700; }
.nav-item:hover, .nav-tool:hover { color: var(--text-main); background: var(--surface-hover); transform: translateY(-3px); }
.nav-item.active { color: var(--text-main); background: var(--surface-hover); }
.nav-item.special:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 15px var(--accent-glow); }
.nav-separator { width: 1px; height: 24px; background: var(--border); margin: 0 5px; }
.lang-text { font-family: var(--font-code); font-weight: 700; font-size: 0.9rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px 150px; position: relative; z-index: 1; }

.hero-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, minmax(180px, auto)); gap: 20px; margin-top: 100px; margin-bottom: 80px; }
.bento-item {
    background: var(--surface); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border);
    border-radius: 32px; padding: 40px; display: flex; flex-direction: column; justify-content: center; position: relative;
    overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform-style: preserve-3d; will-change: transform;
}
.bento-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 32px; padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 50%, rgba(255,255,255,0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 0;
}
.bento-item:hover { border-color: var(--border-hover); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

.profile-box { grid-column: 1 / 2; grid-row: 1 / 3; align-items: center; text-align: center; }
.intro-box { grid-column: 2 / 5; grid-row: 1 / 2; justify-content: flex-end; }
.social-box { grid-column: 2 / 4; grid-row: 2 / 3; padding: 25px; }
.status-box { grid-column: 4 / 5; grid-row: 2 / 3; align-items: center; text-align: center; }

.profile-pic { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; box-shadow: 0 0 40px var(--accent-glow); border: 2px solid var(--accent); padding: 4px; }
.academic-badge { background: rgba(255, 255, 255, 0.05); color: var(--text-sec); padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; font-family: var(--font-code); border: 1px solid var(--border); display: inline-flex; align-items: center; gap: 8px; text-align: center; line-height: 1.4; z-index: 2; }

.glitch-text { font-size: 4rem; font-weight: 800; letter-spacing: -2px; margin-bottom: 10px; background: linear-gradient(to right, var(--text-main) 20%, var(--text-sec) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; position: relative; z-index: 2; }
.cursor-blink { display: inline-block; width: 3px; height: 0.9em; background-color: var(--accent); margin-left: 5px; animation: blink 0.75s step-end infinite; vertical-align: baseline; }
@keyframes blink { 50% { opacity: 0; } }

.typewriter-container { font-family: var(--font-code); font-size: 1.4rem; min-height: 30px; font-weight: 700; margin-bottom: 20px; position: relative; z-index: 2; }
#typewriter { border-right: 3px solid var(--accent); padding-right: 5px; animation: blink 0.75s step-end infinite; background: linear-gradient(to right, var(--text-main), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

.about-me p { color: var(--text-sec); font-size: 1.15rem; line-height: 1.7; max-width: 90%; position: relative; z-index: 2; }
.about-me strong { color: var(--text-main); }

.social-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; width: 100%; height: 100%; position: relative; z-index: 2; }
.social-card-mini { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 16px; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; color: var(--text-sec); font-weight: 600; font-size: 0.95rem; }
.social-card-mini:hover { background: var(--surface-hover); color: var(--text-main); border-color: var(--accent); transform: translateY(-2px); }
.social-card-mini.discord:hover { border-color: var(--discord-color); color: var(--discord-color); box-shadow: 0 5px 20px rgba(88, 101, 242, 0.2); }

.status-content { display: flex; flex-direction: column; align-items: center; gap: 15px; font-family: var(--font-code); font-weight: 700; font-size: 0.9rem; color: var(--text-main); position: relative; z-index: 2; }
.dot { width: 20px; height: 20px; background-color: #4caf50; border-radius: 50%; box-shadow: 0 0 20px rgba(76, 175, 80, 0.6); }
.pulse { animation: pulseAnim 2s infinite; }
@keyframes pulseAnim { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(76, 175, 80, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); } }

.tabs-container { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.tab-btn { background: var(--surface); border: 1px solid var(--border); color: var(--text-sec); padding: 15px 35px; border-radius: 30px; font-size: 1.05rem; font-weight: 600; font-family: var(--font-main); backdrop-filter: blur(10px); }
.tab-btn:hover { border-color: var(--text-main); color: var(--text-main); transform: translateY(-2px); }
.tab-btn.active { background: var(--accent); color: white; border-color: transparent; box-shadow: 0 10px 25px var(--accent-glow); }
.tab-btn.active[data-target="roblox"] { background: var(--roblox-color); box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4); }

.skills-tab-content { display: none; animation: fadeInUp 0.5s ease forwards; }
.skills-tab-content.active { display: block; }

.skills-grid, .projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.skill-card { background: var(--surface); padding: 30px; border-radius: 24px; border: 1px solid var(--border); backdrop-filter: blur(16px); }
.skill-card:hover { border-color: var(--border-hover); background: var(--surface-hover); }
.skill-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.skill-icon { font-size: 1.5rem; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid var(--border); }
.roblox-icon { color: var(--roblox-color); }
.web-icon { color: var(--accent); }
.skill-name { font-weight: 700; font-size: 1.2rem; }
.skill-hours { font-size: 0.8rem; font-family: var(--font-code); color: var(--text-sec); margin-top: 4px; }
.skill-details { font-size: 0.95rem; color: var(--text-sec); line-height: 1.6; }

.partners-section { margin: 100px 0; text-align: center; }
.section-tag { font-family: var(--font-code); color: var(--text-sec); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 40px; font-weight: 700; }
.carousel-container { width: 100%; max-width: 1000px; margin: 0 auto; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.carousel-track { display: flex; gap: 80px; width: max-content; animation: scroll 30s linear infinite; }
.logo-item { width: 130px; height: 65px; display: flex; align-items: center; justify-content: center; opacity: 0.5; filter: grayscale(100%); }
.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.logo-item:hover { opacity: 1; filter: grayscale(0%); transform: scale(1.1); }
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.projects-section { margin-top: 50px; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.section-title { font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; }

.project-card { background: var(--surface); border-radius: 24px; overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; height: 100%; }
.img-wrapper { overflow: hidden; height: 240px; position: relative; }
.project-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.project-card:hover .project-img { transform: scale(1.08); }
.project-content { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.tags-row { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; z-index: 2; position: relative; }
.tag { font-size: 0.75rem; padding: 6px 12px; border-radius: 8px; font-weight: 700; font-family: var(--font-code); text-transform: uppercase; background: rgba(255,255,255,0.05); border: 1px solid var(--border); }
.tag.web { color: #3b9eff; border-color: rgba(59, 158, 255, 0.3); }
.tag.studio { color: #9d4edd; border-color: rgba(157, 78, 221, 0.3); }
.tag.mod { color: #ff006e; border-color: rgba(255, 0, 110, 0.3); }
.project-title { font-size: 1.5rem; margin-bottom: 12px; }
.project-desc { color: var(--text-sec); font-size: 1rem; margin-bottom: 25px; flex: 1; line-height: 1.5; }

.btn-project { display: inline-flex; align-items: center; justify-content: space-between; color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 1rem; padding: 15px 20px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; margin-top: auto; }
.btn-project:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.view-all-container { text-align: center; margin-top: 50px; }
.btn-view-all { display: inline-flex; align-items: center; gap: 10px; padding: 18px 40px; background: transparent; border: 1px solid var(--border); border-radius: 30px; color: var(--text-main); font-weight: 700; font-size: 1.1rem; text-decoration: none; backdrop-filter: blur(10px); }
.btn-view-all:hover { background: var(--text-main); color: var(--bg); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,255,255,0.1); }

#contact-area { margin-top: 150px; }
.glass-container { display: grid; grid-template-columns: 1fr 1.2fr; background: var(--surface); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--border); border-radius: 32px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.contact-visual { padding: 50px; background: linear-gradient(135deg, rgba(0, 112, 243, 0.05), transparent); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--border); }
.contact-text { color: var(--text-sec); font-size: 1.1rem; margin-top: 15px; line-height: 1.6; }
.visual-decoration { height: 180px; display: flex; align-items: center; justify-content: center; position: relative; margin-top: 40px; }
.floating-icon { font-size: 5rem; color: var(--accent); filter: drop-shadow(0 0 20px var(--accent-glow)); animation: float 6s ease-in-out infinite; z-index: 2; }
.orbit { position: absolute; width: 140px; height: 140px; border: 1px dashed var(--border-hover); border-radius: 50%; animation: spin 20s linear infinite; }

.contact-form-wrapper { padding: 50px; }
#discord-form { display: flex; flex-direction: column; gap: 30px; }
.input-wrapper { position: relative; }
.input-wrapper input, .input-wrapper textarea { width: 100%; padding: 15px 0; font-size: 1.05rem; color: var(--text-main); background: transparent; border: none; border-bottom: 2px solid var(--border); outline: none; font-family: var(--font-main); }
.input-wrapper label { position: absolute; top: 15px; left: 0; color: var(--text-sec); font-size: 1.05rem; pointer-events: none; transition: 0.3s ease all; }
.input-wrapper input:focus ~ label, .input-wrapper input:not(:placeholder-shown) ~ label, .input-wrapper textarea:focus ~ label, .input-wrapper textarea:not(:placeholder-shown) ~ label { top: -12px; font-size: 0.85rem; color: var(--accent); font-weight: 700; }
.input-border { position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: 0.4s; box-shadow: 0 0 10px var(--accent); }
.input-wrapper input:focus ~ .input-border, .input-wrapper textarea:focus ~ .input-border { width: 100%; }
.submit-btn { background: var(--text-main); color: var(--bg); padding: 18px 30px; border: none; border-radius: 12px; font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.submit-btn:hover { background: var(--accent); color: white; transform: translateY(-3px); box-shadow: 0 10px 25px var(--accent-glow); }

.main-footer { margin-top: 100px; border-top: 1px solid var(--border); padding: 40px 0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; color: var(--text-sec); font-size: 0.95rem; }
.footer-links a { color: var(--text-sec); text-decoration: none; margin-left: 20px; font-weight: 600; }
.footer-links a:hover { color: var(--text-main); }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.holographic-card:hover .holographic-overlay { opacity: 1; }

@keyframes neonPulse {
    0% { box-shadow: 0 0 5px #ff006e, inset 0 0 5px #ff006e; border-color: #ff006e; color: #ff006e; }
    100% { box-shadow: 0 0 25px #ff006e, inset 0 0 15px #ff006e; border-color: #ff006e; color: #fff; }
}

.cyber-switch input:checked + .cyber-slider { background-color: #39ff14; border-color: #39ff14; box-shadow: 0 0 15px #39ff14; }
.cyber-switch input:focus + .cyber-slider { box-shadow: 0 0 15px #39ff14; }
.cyber-switch input:checked + .cyber-slider:before { transform: translateX(26px); background-color: #000; }
.cyber-slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 3px; bottom: 3px; background-color: white; transition: 0.4s; border-radius: 50%; }

.magnetic-btn { transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s; will-change: transform; }

@media (max-width: 992px) {
    .hero-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .profile-box { grid-column: 1 / 3; }
    .intro-box { grid-column: 1 / 3; }
    .social-box { grid-column: 1 / 2; }
    .status-box { grid-column: 2 / 3; }
    .glass-container { grid-template-columns: 1fr; }
    .contact-visual { border-right: none; border-bottom: 1px solid var(--border); text-align: center; padding: 40px 20px; }
    .visual-decoration { display: none; }
}
@media (max-width: 768px) {
    .hero-bento { display: flex; flex-direction: column; margin-top: 60px; }
    .glitch-text { font-size: 3rem; }
    .typewriter-container { font-size: 1.2rem; }
    .floating-nav { bottom: 20px; width: 90%; }
    .nav-content { justify-content: space-between; padding: 10px 15px; }
    .nav-item.special span { display: none; }
    .nav-item.special { padding: 0; width: 45px; justify-content: center; }
    .section-title { font-size: 2rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links a { margin: 0 10px; }
    .tabs-container { flex-direction: column; }
    .tab-btn { width: 100%; text-align: center; }
}