/* CYBERPUNK + WITCHER HYBRID THEME - ULTRA MODERN */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&family=Cinzel:wght@400;600;700&subset=latin,latin-ext&display=swap');

/* CYBERPUNK PRELOADER */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #050510 50%, #000000 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    overflow: hidden;
}

.preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.03) 2px,
            rgba(0, 255, 255, 0.03) 4px
        );
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
    padding: 4rem;
    border: 3px solid rgba(0, 255, 255, 0.6);
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
    box-shadow: 
        0 0 80px rgba(0, 255, 255, 0.8),
        0 0 120px rgba(255, 0, 255, 0.4),
        inset 0 0 60px rgba(0, 255, 255, 0.15);
    background: 
        radial-gradient(ellipse at center, rgba(0, 255, 255, 0.1) 0%, transparent 70%),
        rgba(0, 0, 0, 0.95);
    min-width: 450px;
    animation: preloaderGlow 2s ease-in-out infinite, preloaderFloat 4s ease-in-out infinite;
    backdrop-filter: blur(0px);
}

@keyframes preloaderGlow {
    0%, 100% {
        box-shadow: 
            0 0 80px rgba(0, 255, 255, 0.8),
            0 0 120px rgba(255, 0, 255, 0.4),
            inset 0 0 60px rgba(0, 255, 255, 0.15);
        border-color: rgba(0, 255, 255, 0.6);
    }
    50% {
        box-shadow: 
            0 0 120px rgba(0, 255, 255, 1),
            0 0 180px rgba(255, 0, 255, 0.6),
            inset 0 0 90px rgba(0, 255, 255, 0.25);
        border-color: rgba(0, 255, 255, 0.9);
    }
}

@keyframes preloaderFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

.preloader-logo {
    margin-bottom: 3rem;
}

.preloader-text {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #00ffad 50%, #00ffde 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    animation: neonPulse 2s ease-in-out infinite, glitch 3s infinite;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    text-shadow: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: auto;
    transform: translateZ(0);
}

@keyframes neonPulse {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0.9;
    }
}

.preloader-subtitle {
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    font-size: 1.1rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: none;
    animation: blink 1.5s infinite;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.preloader-progress {
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.preloader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--witcher-gold), var(--neon-cyan));
    width: 0%;
    animation: loading 2s ease-in-out forwards;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.8),
        inset 0 0 20px rgba(0, 255, 255, 0.3);
    position: relative;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerBar 1s infinite;
}

@keyframes shimmerBar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

.preloader-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
}

.preloader-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: none;
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: statPulse 2s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% {
        text-shadow: none;
    }
    50% {
        text-shadow: none;
    }
}

#loadPercent {
    animation: countUp 2s ease-in-out forwards;
}

@keyframes countUp {
    0% { content: '0%'; }
    25% { content: '25%'; }
    50% { content: '50%'; }
    75% { content: '75%'; }
    100% { content: '100%'; }
}

:root {
    /* Cyberpunk Neon Colors */
    --neon-cyan: #00ffff;
    --neon-magenta: #ff00ff;
    --neon-green: #00ff41;
    --neon-yellow: #ffff00;
    --neon-purple: #9d00ff;
    --neon-red: #ff0040;
    
    /* Witcher Colors */
    --witcher-gold: #d4af37;
    --witcher-red: #8b2635;
    --witcher-dark: #0a0a0a;
    
    /* Hybrid Colors */
    --bg-dark: #000000;
    --bg-darker: #050505;
    --bg-card: #0a0a0f;
    --bg-card-hover: #151520;
    --text-primary: #e0e0ff;
    --text-secondary: #a0a0c0;
    --accent-primary: var(--neon-cyan);
    --accent-secondary: var(--witcher-gold);
    --accent-danger: var(--neon-red);
    --border-color: rgba(0, 255, 255, 0.2);
    --border-glow: rgba(0, 255, 255, 0.6);
    --shadow-neon: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 40px rgba(0, 255, 255, 0.3);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3);
    --shadow-magenta: 0 0 20px rgba(255, 0, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scan Lines Effect */
@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes matrixRain {
    0% { transform: translateY(-100vh); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

body {
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, #000000 0%, #050510 50%, #000000 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
    text-shadow: none;
}

/* Scan Lines Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 255, 255, 0.03) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    animation: scanline 8s linear infinite;
}

/* Matrix Rain Background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.03) 2px,
            rgba(0, 255, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Navigation - Cyberpunk Style */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.5),
        inset 0 -2px 0 rgba(212, 175, 55, 0.3);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(2px);
    transition: all 0.3s;
}

.navbar:hover {
    border-bottom-color: var(--witcher-gold);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.6),
        inset 0 -2px 0 rgba(0, 255, 255, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.translate-wrapper {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
}

#google_translate_element {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1000 !important;
}

.translate-wrapper .goog-te-gadget {
    font-family: 'Rajdhani', sans-serif !important;
    font-size: 0.875rem !important;
    color: var(--neon-cyan) !important;
}

/* Google Translate skiptranslate gizle */
.skiptranslate,
.skiptranslate.goog-te-gadget,
div.skiptranslate,
div.skiptranslate.goog-te-gadget,
[class*="skiptranslate"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

.translate-wrapper .goog-te-gadget-simple {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    border-radius: 4px !important;
    padding: 0.5rem 1rem !important;
    color: var(--neon-cyan) !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-width: 100px !important;
    min-height: 30px !important;
    white-space: nowrap !important;
}

.translate-wrapper .goog-te-gadget-simple:hover {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5) !important;
}

/* Google Translate görünürlük garantisi */
.translate-wrapper,
#google_translate_element {
    min-width: 100px !important;
    min-height: 30px !important;
}

.translate-wrapper .goog-te-gadget-simple {
    min-width: 100px !important;
    min-height: 30px !important;
    white-space: nowrap !important;
}

.translate-wrapper .goog-te-gadget-simple .goog-te-menu-value {
    color: var(--neon-cyan) !important;
    display: inline !important;
    visibility: visible !important;
}

.translate-wrapper .goog-te-gadget-simple .goog-te-menu-value span {
    color: var(--neon-cyan) !important;
    display: inline !important;
    visibility: visible !important;
}

/* Tüm Google Translate elementlerinde metin görünür */
.goog-te-gadget-simple {
    color: var(--neon-cyan) !important;
}

.goog-te-gadget-simple * {
    color: var(--neon-cyan) !important;
}

/* Google Translate Branding Gizle */
.translate-wrapper .goog-te-banner-frame,
.translate-wrapper .goog-te-gadget-icon,
.goog-te-banner-frame,
.goog-te-banner,
#google_translate_element .goog-te-banner-frame,
#google_translate_element .goog-te-banner {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

.translate-wrapper .goog-te-gadget-simple .goog-te-menu-value {
    padding-left: 0 !important;
    color: var(--neon-cyan) !important;
}

/* Google Translate dil metnini görünür yap */
.goog-te-gadget-simple,
.goog-te-gadget-simple * {
    color: var(--neon-cyan) !important;
}

.goog-te-gadget-simple .goog-te-menu-value,
.goog-te-gadget-simple .goog-te-menu-value span,
.goog-te-gadget-simple .goog-te-menu-value span:not(.VIpgJd-ZVi9od-xl07Ob-lTBxed) {
    color: var(--neon-cyan) !important;
    display: inline !important;
    visibility: visible !important;
}

/* Tüm Google Translate içindeki metinleri görünür yap - ID selector ile */
[id*="targetLanguage"],
[id*="targetLanguage"] .goog-te-menu-value,
[id*="targetLanguage"] .goog-te-menu-value span,
div[id*="targetLanguage"] {
    color: var(--neon-cyan) !important;
    display: inline !important;
    visibility: visible !important;
}

#google_translate_element .goog-te-gadget-simple,
#google_translate_element .goog-te-gadget-simple * {
    color: var(--neon-cyan) !important;
}

#google_translate_element .goog-te-menu-value,
#google_translate_element .goog-te-menu-value *,
#google_translate_element .goog-te-gadget-simple .goog-te-menu-value,
#google_translate_element .goog-te-gadget-simple .goog-te-menu-value * {
    color: var(--neon-cyan) !important;
    display: inline !important;
    visibility: visible !important;
}

.translate-wrapper .goog-te-gadget-simple .goog-te-menu-value span {
    color: var(--neon-cyan) !important;
    display: inline !important;
    visibility: visible !important;
}

/* Google Translate VIpgJd class gizle */
.translate-wrapper .goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed,
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed {
    display: none !important;
    visibility: hidden !important;
}

/* Google Translate Dropdown Stil */
.goog-te-menu-frame {
    background: rgba(0, 0, 0, 0.95) !important;
    border: 2px solid rgba(0, 255, 255, 0.5) !important;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6) !important;
}

.goog-te-menu-item {
    color: var(--text-primary) !important;
    background: rgba(10, 10, 15, 0.9) !important;
}

.goog-te-menu-item:hover {
    background: rgba(0, 255, 255, 0.2) !important;
    color: var(--neon-cyan) !important;
}

.logo {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #37cdd4 50%, #00ffd9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    animation: neonPulse 3s ease-in-out infinite;
    filter: none;
    text-shadow: none;
    transition: all 0.3s;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: auto;
    transform: translateZ(0);
}

.logo::before {
    content: '◉';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-cyan);
    font-size: 1rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--witcher-gold), var(--neon-magenta));
    transition: width 0.5s;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.logo:hover::after {
    width: 100%;
}

.logo:hover {
    animation: glitch 0.3s;
    filter: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.nav-menu a::before {
    content: '▶';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--neon-cyan);
    transition: all 0.3s;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--witcher-gold));
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.nav-menu a:hover {
    color: var(--neon-cyan);
    text-shadow: none;
}

.nav-menu a:hover::before {
    opacity: 1;
    left: -15px;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 5px var(--neon-cyan);
    transition: all 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Ultra Cyberpunk with Terminal Visual Show */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(0, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
        linear-gradient(135deg, #000000 0%, #050510 50%, #000000 100%);
}

/* Cyberpunk Terminal */
.hero-terminal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.terminal-window {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 600px;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(0, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.5),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    font-family: 'Courier New', monospace;
    overflow: hidden;
}

.terminal-header {
    background: rgba(0, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-btn-close {
    background: #ff5f56;
    box-shadow: 0 0 5px #ff5f56;
}

.terminal-btn-minimize {
    background: #ffbd2e;
    box-shadow: 0 0 5px #ffbd2e;
}

.terminal-btn-maximize {
    background: #27c93f;
    box-shadow: 0 0 5px #27c93f;
}

.terminal-title {
    color: var(--neon-cyan);
    font-size: 0.75rem;
    text-shadow: none;
    font-weight: 600;
}

.terminal-body {
    padding: 1rem;
    color: var(--neon-green);
    font-size: 0.875rem;
    line-height: 1.6;
    max-height: 500px;
    overflow-y: auto;
    position: relative;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-prompt {
    color: var(--witcher-gold);
    font-weight: bold;
}

.terminal-command {
    color: var(--neon-cyan);
}

.terminal-output {
    color: var(--neon-green);
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    margin-top: 0.5rem;
}

.terminal-cursor-line {
    animation: blinkCursor 1s infinite;
}

.terminal-cursor {
    color: var(--neon-cyan);
    animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.terminal-ascii {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--neon-cyan);
    font-family: 'Courier New', monospace;
    font-size: 0.28rem;
    line-height: 1.0;
    white-space: pre;
    text-shadow: none;
    max-width: 100%;
    overflow: hidden;
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 4px;
    animation: asciiFadeIn 0.5s ease-in;
}

@keyframes asciiFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes terminalGlow {
    0%, 100% {
        opacity: 0.5;
        text-shadow: none;
    }
    50% {
        opacity: 0.7;
        text-shadow: none;
    }
}

@media (max-width: 1024px) {
    .terminal-window {
        display: none;
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-particles canvas {
    width: 100%;
    height: 100%;
}

.hero-code-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--neon-cyan);
    overflow: hidden;
}

.code-line {
    position: absolute;
    white-space: nowrap;
    animation: codeFall 15s linear infinite;
    text-shadow: none;
}

.code-line:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.code-line:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.code-line:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.code-line:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.code-line:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
}

@keyframes codeRain {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes codeFall {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

.hero-visual {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    z-index: 1;
    opacity: 0.6;
}

.hero-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--neon-cyan);
    background: rgba(0, 255, 255, 0.05);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.5),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.cube-face.front {
    transform: rotateY(0deg) translateZ(150px);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(150px);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(150px);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(150px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(150px);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(150px);
}

@keyframes cubeRotate {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem clamp(1rem, 2vw, 1.5rem);
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: fadeInDown 1s ease-out;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-badge .hero-icon {
    width: 18px;
    height: 18px;
    color: var(--neon-cyan);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.05) 2px,
            rgba(0, 255, 255, 0.05) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 255, 0.03) 2px,
            rgba(255, 0, 255, 0.03) 4px
        );
    animation: float 20s infinite linear;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 4s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) skewX(-15deg); }
    50% { transform: translateX(100%) skewX(-15deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem clamp(1rem, 5vw, 20px);
    animation: fadeInUp 1s ease-out;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 0.8fr;
        text-align: left;
        align-items: center;
    }
    
    .hero-text {
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-name,
    .hero-subtitle,
    .hero-tagline {
        text-align: left;
    }
    
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-name {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #37d4be 50%, #00ffc2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: clamp(2px, 1vw, 8px);
    animation: neonPulse 2s ease-in-out infinite;
    position: relative;
    filter: none;
    text-shadow: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga" 1, "kern" 1;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 1.1;
    word-break: break-word;
    hyphens: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: auto;
    transform: translateZ(0);
}

.hero-name:hover {
    animation: neonPulse 2s ease-in-out infinite, glitch 0.3s;
    filter: none;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.75rem);
    color: var(--witcher-gold);
    font-weight: 400;
    letter-spacing: clamp(1px, 0.5vw, 4px);
    text-transform: uppercase;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-shadow: none;
    animation: neonPulse 3s ease-in-out infinite;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-tagline {
    font-size: clamp(0.9rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: none;
    animation: fadeIn 1.5s ease-out 0.3s both;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    width: 100%;
    max-width: 800px;
    text-align: center;
    line-height: 1.6;
    word-break: break-word;
    padding: 0 1rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 2s ease-out 0.6s both;
    width: 100%;
    max-width: 100%;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn i,
.hero-buttons .btn svg {
    transition: transform 0.3s;
    filter: drop-shadow(0 0 5px currentColor);
    width: 20px;
    height: 20px;
}

.hero-buttons .btn:hover i,
.hero-buttons .btn:hover svg {
    transform: translateX(10px) scale(1.2);
}

/* Buttons - Cyberpunk Style */
.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.btn-primary {
    background: transparent;
    color: var(--neon-red);
    border-color: var(--neon-red);
    box-shadow: 
        0 0 20px rgba(255, 0, 64, 0.5),
        inset 0 0 20px rgba(255, 0, 64, 0.1);
    text-shadow: none;
}

.btn-primary:hover {
    background: rgba(255, 0, 64, 0.1);
    border-color: var(--neon-red);
    box-shadow: 
        0 0 40px rgba(255, 0, 64, 0.8),
        inset 0 0 30px rgba(255, 0, 64, 0.2);
    transform: translateY(-5px) scale(1.05);
    text-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--witcher-gold);
    border-color: var(--witcher-gold);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.5),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    text-shadow: none;
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--witcher-gold);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.8),
        inset 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px) scale(1.05);
    text-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.4),
        inset 0 0 15px rgba(0, 255, 255, 0.05);
    text-shadow: none;
}

.btn-outline:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        inset 0 0 25px rgba(0, 255, 255, 0.15);
    text-shadow: none;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--witcher-gold), var(--neon-cyan), transparent);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.section-title {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, #37c6d4 50%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga" 1, "kern" 1;
}

.section-title-icon {
    width: 3rem;
    height: 3rem;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
    animation: floatIcon 4s ease-in-out infinite;
    color: var(--neon-cyan);
    stroke-width: 2;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--witcher-gold), var(--neon-cyan), transparent);
    box-shadow: 
        0 0 15px var(--neon-cyan),
        0 0 30px var(--witcher-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-style: italic;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-footer {
    text-align: center;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.section-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* About Section */
.about-section {
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
}

.about-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    min-width: 150px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--neon-cyan), var(--witcher-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: none;
    animation: neonPulse 2s ease-in-out infinite;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
}

.about-title {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--witcher-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-description {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.15rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
}

/* Projects Grid - Cyberpunk Cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.project-card {
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    border-color: var(--witcher-gold);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.8),
        0 0 80px rgba(212, 175, 55, 0.4),
        inset 0 0 40px rgba(212, 175, 55, 0.1);
    transform: translateY(-15px) scale(1.02);
}

.project-thumbnail {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-darker);
    position: relative;
}

.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    opacity: 0.3;
    font-size: 4rem;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-view {
    color: var(--witcher-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    text-shadow: none;
    animation: neonPulse 2s ease-in-out infinite;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.7);
}

.project-card:hover .project-thumbnail img {
    transform: scale(1.15);
    filter: brightness(1);
}

.project-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    gap: 1rem;
}

.project-content header {
    margin: 0;
}

.project-title {
    font-size: 1.75rem;
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--neon-cyan), var(--witcher-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-description {
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
    line-height: 1.8;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
}

.tech-badge {
    background: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(0, 255, 255, 0.4);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    font-size: 0.875rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.tech-badge:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: scale(1.1);
    text-shadow: none;
}

.project-footer {
    margin: 0;
    padding: 0;
    margin-top: 0.5rem;
}

.project-link {
    color: var(--neon-red);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: none;
}

.project-link svg,
.project-link i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 5px var(--neon-red));
    width: 18px;
    height: 18px;
}

.project-link:hover {
    color: var(--neon-red);
    text-shadow: none;
}

.project-link:hover svg,
.project-link:hover i {
    transform: translateX(10px) scale(1.2);
    filter: drop-shadow(0 0 10px var(--neon-red));
}

/* Skills - Cyberpunk Style */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.skill-category {
    background: rgba(10, 10, 15, 0.8);
    padding: 2.5rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.skill-category::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.skill-category:hover::before {
    opacity: 1;
}

.skill-category:hover {
    border-color: var(--witcher-gold);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.6),
        inset 0 0 40px rgba(212, 175, 55, 0.1);
    transform: translateY(-10px);
}

.skill-category-title {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--neon-cyan), var(--witcher-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
    animation: floatIcon 3s ease-in-out infinite;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.05);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: all 0.3s;
}

.skill-item:hover {
    padding-left: 1.5rem;
    border-color: rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    transform: translateX(10px);
}

.skill-name {
    color: var(--text-primary);
    font-weight: 600;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-level {
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    transition: all 0.3s;
}

.skill-level-uzman {
    background: rgba(212, 175, 55, 0.2);
    color: var(--witcher-gold);
    border: 1px solid var(--witcher-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    text-shadow: none;
}

.skill-level-ileri {
    background: rgba(0, 255, 255, 0.2);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    text-shadow: none;
}

.skill-level-orta {
    color: var(--text-secondary);
    border: 1px solid rgba(0, 255, 255, 0.3);
    background: rgba(0, 255, 255, 0.05);
}

.skill-level-başlangıç {
    color: var(--text-secondary);
    border: 1px solid rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.03);
}

/* Blog - Cyberpunk Cards */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 100%;
}

.blog-card {
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    padding: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.blog-card:hover::before {
    left: 100%;
}

.blog-card:hover {
    border-color: var(--witcher-gold);
    box-shadow: 
        0 0 40px rgba(212, 175, 55, 0.6),
        inset 0 0 40px rgba(212, 175, 55, 0.1);
    transform: translateY(-10px);
}

.blog-header {
    margin: 0;
}

.blog-date {
    color: var(--neon-cyan);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-shadow: none;
}

.blog-date i,
.blog-date svg {
    width: 16px;
    height: 16px;
    opacity: 0.8;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.blog-title {
    font-size: 1.75rem;
    margin: 0;
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.blog-title a {
    background: linear-gradient(135deg, var(--neon-cyan), var(--witcher-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-title a:hover {
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    animation: glitch 0.3s;
}

.blog-thumbnail {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    display: block;
}

.blog-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.blog-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-excerpt {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
}

.blog-footer {
    margin: 0;
    padding: 0;
    border: none;
}

.blog-link {
    color: var(--neon-red);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: none;
    margin-top: 0.5rem;
    align-self: flex-start;
}

.blog-link svg,
.blog-link i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 5px var(--neon-red));
    width: 18px;
    height: 18px;
}

.blog-link:hover {
    color: var(--neon-red);
    text-shadow: none;
}

.blog-link:hover svg,
.blog-link:hover i {
    transform: translateX(10px) scale(1.2);
    filter: drop-shadow(0 0 10px var(--neon-red));
}

/* Resume/Projects Hero Background */
.resume-hero,
.projects-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0 6rem;
}

.resume-hero-bg,
.projects-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.resume-hero-bg canvas,
.projects-hero-bg canvas {
    width: 100%;
    height: 100%;
}

.resume-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem clamp(1rem, 5vw, 20px);
    animation: fadeInUp 1s ease-out;
    width: 100%;
}

.resume-content-wrapper {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.resume-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.resume-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem clamp(1rem, 2vw, 1.5rem);
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: fadeInDown 1s ease-out;
    white-space: nowrap;
    flex-shrink: 0;
}

.resume-hero-badge .resume-hero-icon {
    width: 18px;
    height: 18px;
    color: var(--neon-cyan);
}

.resume-hero-title {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.resume-hero-name {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--witcher-gold) 50%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: clamp(2px, 1vw, 8px);
    animation: neonPulse 2s ease-in-out infinite;
    position: relative;
    filter: none;
    text-shadow: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 1.1;
    word-break: break-word;
    hyphens: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: auto;
    transform: translateZ(0);
}

.resume-hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.75rem);
    color: var(--witcher-gold);
    font-weight: 400;
    letter-spacing: clamp(1px, 0.5vw, 4px);
    text-transform: uppercase;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-shadow: none;
    animation: neonPulse 3s ease-in-out infinite;
    width: 100%;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.resume-code-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
    overflow: hidden;
}

.resume-code-rain .code-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--neon-cyan);
    white-space: nowrap;
    animation: codeRain 20s linear infinite;
}

.resume-code-rain .code-line:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.resume-code-rain .code-line:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.resume-code-rain .code-line:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.resume-code-rain .code-line:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.resume-code-rain .code-line:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
}

.resume-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 4s infinite;
    pointer-events: none;
    z-index: 1;
}

.resume-hero .container {
    position: relative;
    z-index: 2;
}

.resume-content-wrapper {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

/* Resume Section */
.resume-section {
    margin-bottom: 5rem;
    background: rgba(0, 255, 255, 0.03);
    padding: 3rem;
    border: 2px solid rgba(0, 255, 255, 0.2);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.resume-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    animation: shimmer 4s infinite;
    pointer-events: none;
}

.resume-content {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.15rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    position: relative;
    z-index: 1;
}

.timeline {
    position: relative;
    padding-left: 4rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--neon-cyan) 0%, var(--witcher-gold) 50%, var(--neon-magenta) 100%);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(212, 175, 55, 0.6);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 3rem;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 1rem;
    width: 20px;
    height: 20px;
    background: var(--witcher-gold);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    border: 3px solid var(--bg-dark);
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 1),
        0 0 40px rgba(212, 175, 55, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(212, 175, 55, 1),
            0 0 40px rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(212, 175, 55, 1),
            0 0 60px rgba(212, 175, 55, 0.8);
    }
}

.timeline-content h3 {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--neon-cyan), var(--witcher-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline-subtitle {
    color: var(--witcher-gold);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: none;
}

.timeline-date {
    color: var(--neon-cyan);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-style: italic;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-shadow: none;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
}

/* Contact Form - Cyberpunk Style */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(10, 10, 15, 0.9);
    padding: 4rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 10s infinite;
    pointer-events: none;
}

.contact-form:hover {
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 
        0 0 50px rgba(0, 255, 255, 0.6),
        inset 0 0 50px rgba(0, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-shadow: none;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    color: var(--text-primary);
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 
        0 0 10px rgba(0, 255, 255, 0.2),
        inset 0 0 10px rgba(0, 255, 255, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.6),
        inset 0 0 25px rgba(0, 255, 255, 0.1);
    text-shadow: none;
}

.form-group small {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
}

/* Alerts */
.alert {
    padding: 1.5rem;
    border-radius: 0;
    margin-bottom: 2rem;
    border: 2px solid;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    animation: slideDown 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: rgba(0, 255, 65, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 
        0 0 25px rgba(0, 255, 65, 0.4),
        inset 0 0 25px rgba(0, 255, 65, 0.05);
    text-shadow: none;
}

.alert-error {
    background: rgba(255, 0, 64, 0.1);
    border-color: var(--neon-red);
    color: var(--neon-red);
    box-shadow: 
        0 0 25px rgba(255, 0, 64, 0.4),
        inset 0 0 25px rgba(255, 0, 64, 0.05);
    text-shadow: none;
}

/* Project Detail */
.project-detail,
.blog-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.project-detail-thumbnail,
.blog-detail-thumbnail {
    margin-bottom: 4rem;
    border-radius: 0;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    box-shadow: var(--shadow-neon);
    width: 100%;
}

.blog-detail-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
    filter: brightness(0.8);
}

.blog-detail-thumbnail:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.blog-detail-date {
    display: block;
    color: var(--neon-cyan);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-shadow: none;
}

.project-detail-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
    filter: brightness(0.8);
}

.project-detail-thumbnail:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.project-detail-title,
.blog-detail-title {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--witcher-gold) 50%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
    animation: neonPulse 3s ease-in-out infinite;
}

.project-detail-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.project-detail-content,
.blog-detail-content {
    color: var(--text-secondary);
    line-height: 2;
    font-size: 1.2rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--neon-cyan), var(--witcher-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-detail-content li {
    margin-bottom: 0.75rem;
}

.blog-detail-content code {
    background: rgba(0, 255, 255, 0.1);
    color: var(--neon-cyan);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.blog-detail-content pre {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
}

.blog-detail-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: var(--neon-green);
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--witcher-gold);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 0 8px 8px 0;
}

.blog-detail-content a {
    color: var(--neon-cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s;
}

.blog-detail-content a:hover {
    color: var(--neon-cyan);
    border-bottom-color: var(--neon-cyan);
    text-shadow: none;
}

.project-detail-content h2,
.blog-detail-content h2 {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--neon-cyan), var(--witcher-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.project-detail-content p,
.blog-detail-content p {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 3rem;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.back-link::before {
    content: '◄';
    transition: transform 0.3s;
    color: var(--neon-cyan);
    text-shadow: none;
}

.back-link:hover {
    color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    padding-left: 1rem;
}

.back-link:hover::before {
    transform: translateX(-10px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    flex-wrap: wrap;
}

.pagination-link {
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.2),
        inset 0 0 10px rgba(0, 255, 255, 0.05);
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.pagination-link:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: translateY(-5px);
    text-shadow: none;
}

.pagination-info {
    color: var(--text-secondary);
    font-weight: 600;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer - Cyberpunk Style */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    padding: 4rem 0;
    margin-top: auto;
    position: relative;
    box-shadow: 
        0 -5px 30px rgba(0, 255, 255, 0.3),
        inset 0 2px 0 rgba(212, 175, 55, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--witcher-gold), var(--neon-cyan), transparent);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content p {
    color: var(--text-secondary);
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.2),
        inset 0 0 10px rgba(0, 255, 255, 0.05);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover::before {
    width: 150%;
    height: 150%;
}

.social-link:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px) scale(1.15);
}

.social-link i,
.social-link svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 5px currentColor);
}

.social-link:hover i,
.social-link:hover svg {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

.social-links a {
    color: var(--neon-cyan);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.2),
        inset 0 0 10px rgba(0, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover::before {
    width: 150%;
    height: 150%;
}

.social-links a:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px) scale(1.15);
}

.social-links a i,
.social-links a svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 5px currentColor);
}

.social-links a:hover i,
.social-links a:hover svg {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 0 10px var(--neon-cyan));
}

/* Utility */
.text-center {
    text-align: center;
}

.empty-state {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-secondary);
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(10, 10, 15, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.2);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    border-radius: 0;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.1),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
    margin: 4rem 0;
}

.empty-state p {
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.8;
    animation: neonPulse 3s ease-in-out infinite;
}

.page-title {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--witcher-gold) 50%, var(--neon-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    filter: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga" 1, "kern" 1;
    text-shadow: none;
    animation: neonPulse 3s ease-in-out infinite;
}

.error-page {
    text-align: center;
    padding: 8rem 0;
}

.error-page h1 {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    font-size: 10rem;
    background: linear-gradient(135deg, var(--neon-red) 0%, var(--neon-magenta) 50%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-shadow: none;
    animation: glitch 0.5s infinite, neonPulse 2s ease-in-out infinite;
}

.search-filter-bar {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.search-form {
    display: flex;
    gap: 1.5rem;
    max-width: 700px;
    width: 100%;
    align-items: stretch;
}

.search-input {
    flex: 1;
    padding: 1.25rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: 'Rajdhani', 'Arial', 'Helvetica', sans-serif;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.2),
        inset 0 0 10px rgba(0, 255, 255, 0.05);
}

.search-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    background: rgba(10, 10, 15, 0.95);
    transform: translateY(-2px);
}

.related-posts {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    position: relative;
}

.related-posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--witcher-gold), var(--neon-cyan), transparent);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.related-posts h2 {
    font-family: 'Orbitron', 'Arial', 'Helvetica', sans-serif;
    background: linear-gradient(135deg, var(--neon-cyan), var(--witcher-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4rem;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        border-top: 2px solid var(--neon-cyan);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1.5rem 2rem;
        width: 100%;
        font-size: 1.1rem;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(0, 255, 255, 0.1);
        border-left-color: var(--neon-cyan);
        padding-left: 2.5rem;
    }

    .nav-menu a::before {
        left: 1.5rem;
    }

    .nav-menu a:hover::before {
        left: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
        position: relative;
    }

    .hero {
        min-height: 90vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 2rem 20px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-title {
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .hero-name {
        width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        width: 100%;
        text-align: center;
    }

    .hero-tagline {
        margin-bottom: 2rem;
        width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-text {
        align-items: center;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
        gap: 1rem;
        padding-bottom: 1.5rem;
    }

    .section-title-icon {
        width: 2rem;
        height: 2rem;
    }

    .projects-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skills-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-item {
        width: 100%;
    }

    .hero-code-rain {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        width: 100%;
    }

    .hero-name {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
