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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><circle cx="8" cy="8" r="6" fill="%23a855f7"/></svg>') 8 8, auto;
}



/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #00ffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s;
    opacity: 0;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.1s ease;
    opacity: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
}

.logo span {
    color: #ff0080;
    text-shadow: 0 0 10px #ff0080;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff0080);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 50% 50%, #1a0033 0%, #0a0a0a 100%);
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    animation: float 8s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 90%; animation-delay: 8s; }

.hero-content {
    text-align: center;
    z-index: 2;
}

.glitch {
    position: relative;
    margin-bottom: 2rem;
}

.glitch h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 20px #00ffff;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    font-weight: bold;
}

.glitch::before {
    color: #ff0080;
    animation: glitch-1 0.5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    color: #00ffff;
    animation: glitch-2 0.5s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #cccccc;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s ease 1s both;
}

.neon-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-button.primary {
    border-color: #00ffff;
    color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.neon-button.secondary {
    border-color: #ff0080;
    color: #ff0080;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.neon-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

.neon-button.secondary:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.5);
}

.discord-logo {
    width: 18px;
    height: 14px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    background-image: url('discord.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) saturate(100%) invert(1);
}

.neon-button.primary .discord-logo {
    filter: brightness(0) saturate(100%) invert(50%) sepia(100%) saturate(2000%) hue-rotate(180deg);
}

.neon-button.secondary .discord-logo {
    filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(2000%) hue-rotate(320deg);
}

.neon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #00ffff, transparent);
    animation: scroll-pulse 2s infinite;
}

/* Showcase Section */
.showcase-section {
    padding: 5rem 2rem;
    background: #111111;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #ffffff;
    text-shadow: 0 0 20px #00ffff;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff0080);
}

.showcase-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.showcase-item {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1 1 350px;
    max-width: 400px;
}

.showcase-item::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.5s ease;
}

.showcase-item:hover::before {
    left: 100%;
}

.showcase-item:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.browser-mockup {
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.browser-header {
    background: #333;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-content {
    height: 200px;
    padding: 1rem;
}

.ecommerce-demo .demo-header {
    height: 30px;
    background: linear-gradient(90deg, #00ffff, #ff0080);
    border-radius: 5px;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.demo-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.demo-product {
    height: 60px;
    background: #444;
    border-radius: 5px;
    animation: slideInUp 1s ease infinite alternate;
}

.demo-product:nth-child(2) { animation-delay: 0.2s; }
.demo-product:nth-child(3) { animation-delay: 0.4s; }

.dashboard-demo {
    display: flex;
    gap: 1rem;
}

.demo-sidebar {
    width: 60px;
    background: #333;
    border-radius: 5px;
}

.demo-main {
    flex: 1;
}

.demo-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    height: 100%;
}

.demo-chart {
    background: linear-gradient(45deg, #00ffff, #ff0080);
    border-radius: 5px;
    animation: chartGrow 3s ease infinite;
}

.demo-chart:nth-child(2) { animation-delay: 1.5s; }

.phone-mockup {
    width: 150px;
    height: 250px;
    background: #333;
    border-radius: 20px;
    padding: 1rem;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #222;
    border-radius: 15px;
    padding: 1rem;
}

.app-header {
    height: 30px;
    background: #00ffff;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.app-card {
    height: 40px;
    background: #444;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    animation: slideInRight 1s ease infinite alternate;
}

.app-card:nth-child(2) { animation-delay: 0.3s; }
.app-card:nth-child(3) { animation-delay: 0.6s; }

/* Skills Section */
.skills-section {
    padding: 5rem 2rem;
    background: #0a0a0a;
}

.arsenal-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.arsenal-category {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    flex: 1 1 300px;
    max-width: 360px;
}

.arsenal-category:hover {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.category-title {
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #00ffff;
}

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-bar {
    background: #333;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #555;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #ff0080);
    border-radius: 4px;
    position: relative;
}

.skill-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: radial-gradient(circle at 50% 50%, #1a0033 0%, #0a0a0a 100%);
    text-align: center;
}

.contact-text {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

.avatar-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid #00ffff;
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 15px 35px rgba(0, 255, 255, 0.3));
    object-fit: cover;
}

.avatar.enlarged {
    transform: scale(1.5);
    z-index: 1000;
}

.css-avatar {
    width: 220px;
    height: 280px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.avatar-head {
    width: 140px;
    height: 140px;
    background: linear-gradient(145deg, #ffdbac, #d4a574);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid #00ffff;
}

.avatar-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.avatar-eyes {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.eye {
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    position: relative;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #333;
}

.pupil {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 30% 30%, #4a4a4a, #000);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

.avatar-nose {
    width: 8px;
    height: 12px;
    background: #d4a574;
    border-radius: 50%;
    margin: 0 auto 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.avatar-mouth {
    width: 25px;
    height: 12px;
    border: 2px solid #d4a574;
    border-top: none;
    border-radius: 0 0 25px 25px;
    margin: 0 auto;
}

.avatar-body {
    width: 100px;
    height: 120px;
    margin: 15px auto 0;
    position: relative;
}

.avatar-shirt {
    width: 100%;
    height: 100px;
    background: linear-gradient(145deg, #00ffff, #0099cc);
    border-radius: 50px 50px 25px 25px;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
    border: 2px solid #00cccc;
    position: relative;
}

.avatar-shirt::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 40px;
    background: linear-gradient(145deg, #ff0080, #cc0066);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(255, 0, 128, 0.3);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    color: #00ffff;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contact-value {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Animations */
@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 glitch-1 {
    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 glitch-2 {
    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 float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes slideInUp {
    0% { transform: translateY(10px); opacity: 0.7; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(-10px); opacity: 0.7; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes chartGrow {
    0%, 100% { transform: scaleY(0.8); }
    50% { transform: scaleY(1); }
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scaleY(1); }
    50% { opacity: 0.5; transform: translateX(-50%) scaleY(0.5); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Responsive */
@media (max-width: 768px) {
    .glitch h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .showcase-grid { grid-template-columns: 1fr; }
    .arsenal-grid { grid-template-columns: 1fr; }
    .contact-info { flex-direction: column; gap: 1rem; }
    .avatar { width: 150px; height: 150px; }
}