* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
:root {
    --neon-cyan: #00f6ff;
    --neon-magenta: #ff006e;
    --neon-green: #39ff14;
    --neon-purple: #bf00ff;
    --neon-yellow: #ffff00;
    --dark-bg: #0a0a0f;
    --card-bg: rgba(15, 15, 25, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}
body {
    font-family: 'Pixelify Sans', cursive;
    background: var(--dark-bg);
    color: #fff;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 246, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(57, 255, 20, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}
@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 246, 255, 0.3);
}
.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    user-select: none;
    cursor: default;
}
.logo-dot-container {
    position: relative;
    display: flex;
    height: 12px;
    width: 12px;
}
.logo-dot-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: #39ff14;
    opacity: 0.75;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.logo-dot {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    background: linear-gradient(to right, #39ff14, #00f6ff);
}
@keyframes ping {
    0% { transform: scale(1); opacity: 0.75; }
    75%, 100% { transform: scale(2); opacity: 0; }
}
.logo-text {
    display: flex;
    align-items: center;
    color: #fff;
}
.logo-separator {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0.125rem;
}
.logo-hub {
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}
.logo:hover .logo-hub {
    background: linear-gradient(to right, #39ff14, #00f6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 3rem;
    position: relative;
}
.hero-content h1 {
    font-family: 'Press Start 2P', cursive;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInDown 1s ease;
}
.hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease 0.3s both;
}
.hero-content .tagline {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeIn 1s ease 0.6s both;
}
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeIn 1s ease 0.9s both;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}
.contact-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.3);
    transform: translateY(-3px);
}
.open-to-work {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    color: var(--neon-green);
    animation: pulseGreen 2s ease-in-out infinite;
}
.work-indicator {
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
}
.contact-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 0 10px rgba(57, 255, 20, 0.3); }
    50% { box-shadow: 0 0 20px rgba(57, 255, 20, 0.6); }
}
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}
.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}
.glass-card {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 246, 255, 0.2);
    transform: translateY(-5px);
}
.card-header {
    border-bottom: 2px solid var(--neon-magenta);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
.card-header h3 {
    font-size: 1.8rem;
    color: var(--neon-magenta);
    margin-bottom: 0.5rem;
}
.card-header .company {
    font-size: 1.1rem;
    color: var(--neon-cyan);
}
.card-header .duration {
    font-size: 0.9rem;
    color: #888;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.skill-category {
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.skill-category h4 {
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
}
.skill-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0.5rem 0.5rem 0;
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.skill-tag:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: scale(1.05);
}
.bullet-list {
    list-style: none;
    margin-top: 1rem;
}
.bullet-list li {
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}
.bullet-list li::before {
    content: '◆';
    color: var(--neon-cyan);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 0, 0.05), rgba(191, 0, 255, 0.05));
    border: 2px solid var(--neon-yellow);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.value-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(191, 0, 255, 0.3);
    transform: scale(1.05);
}
.value-card h4 {
    color: var(--neon-yellow);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.content-section {
    display: block;
}
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 246, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
}
.scroll-top.show {
    display: flex;
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 1.5rem; }
    .hero-content .subtitle { font-size: 1rem; }
    .hero-content .tagline { font-size: 0.95rem; }
    .section-title { font-size: 1.3rem; }
    .logo { font-size: 0.7rem; }
    nav { padding: 1rem; }
    .hero { padding: 6rem 1rem 2rem; }
}