/* Ultra Premium Variables */
:root {
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-dark: #7C3AED;
    --secondary: #06B6D4;
    --accent: #F59E0B;
    --accent-light: #FBBF24;
    
    --bg-primary: #0A0A0F;
    --bg-secondary: #111827;
    --bg-tertiary: #1F2937;
    --bg-glass: rgba(139, 92, 246, 0.08);
    --bg-card: rgba(17, 24, 39, 0.8);
    
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #64748B;
    
    --border: rgba(139, 92, 246, 0.2);
    --border-light: rgba(255, 255, 255, 0.1);
    
    --glow-primary: 0 0 40px rgba(139, 92, 246, 0.4);
    --glow-secondary: 0 0 40px rgba(6, 182, 212, 0.4);
    --glow-accent: 0 0 40px rgba(245, 158, 11, 0.4);
    
    --font-primary: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    cursor: none;
    user-select: none;
    position: relative;
    font-weight: 400;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Gesture Cursor */
.gesture-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.2s var(--ease-out);
    opacity: 0;
    transform: translate(-50%, -50%);
}

.gesture-cursor.active {
    opacity: 1;
}

.cursor-outer {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s var(--ease);
    box-shadow: var(--glow-primary);
}

.cursor-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.2s var(--ease);
}

.cursor-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s var(--ease);
    opacity: 0;
}

.gesture-cursor.clicking .cursor-outer {
    transform: scale(1.5);
    border-color: var(--accent);
    box-shadow: var(--glow-accent);
}

.gesture-cursor.clicking .cursor-inner {
    background: var(--accent);
    transform: translate(-50%, -50%) scale(2);
}

.gesture-cursor.hovering .cursor-trail {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Status Panel */
.status-panel {
    position: fixed;
    top: 30px;
    right: 30px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    z-index: 9999;
    font-family: var(--font-mono);
    font-size: 13px;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.status-item:last-child {
    margin-bottom: 0;
}

.status-icon {
    width: 16px;
    height: 16px;
    position: relative;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 9998;
}

.nav-brand {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-indicator {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--text-secondary);
}

.section-counter {
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

/* Main Container */
.main-container {
    height: 100vh;
    position: relative;
}

.section {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 60px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s var(--ease);
}

.section.active {
    opacity: 1;
    transform: translateX(0);
}

.section.prev {
    transform: translateX(-100%);
}

/* Hero Section */
.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 2;
}

.hero-badge {
    position: relative;
    display: inline-block;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 16px 40px;
    margin-bottom: 48px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.badge-text {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    animation: shimmer 4s infinite;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.gesture-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.control-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.control-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.8s var(--ease);
}

.control-item:hover::before,
.control-item.gesture-hover::before {
    left: 100%;
}

.control-item:hover,
.control-item.gesture-hover {
    border-color: var(--border);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), var(--glow-primary);
    background: rgba(139, 92, 246, 0.1);
}

.control-name {
    display: block;
    font-weight: 700;
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.control-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
}

.cta-button {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 16px;
    padding: 20px 48px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: none;
    transition: all 0.4s var(--ease);
    overflow: hidden;
    box-shadow: var(--glow-primary);
}

.cta-button:hover,
.cta-button.gesture-hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.4);
}

.button-text {
    position: relative;
    z-index: 2;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s var(--ease);
}

.cta-button:hover .button-glow,
.cta-button.gesture-hover .button-glow {
    left: 100%;
}

/* About Section */
.about-container {
    max-width: 1000px;
    width: 100%;
}

.about-header {
    margin-bottom: 64px;
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
}

.profile-image {
    position: relative;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    object-fit: cover;
    box-shadow: var(--glow-primary);
}

.profile-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

.profile-info {
    text-align: left;
}

.profile-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.profile-location {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.location-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.about-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 56px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.about-text {
    margin-bottom: 48px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.about-intro {
    font-size: 20px !important;
    color: var(--text-primary) !important;
    font-weight: 400;
}

.about-intro strong {
    color: var(--primary);
    font-weight: 700;
}



.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    width: 100%;
}

.skill-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.skill-card:hover {
    border-color: var(--border);
    transform: translateY(-8px);
    box-shadow: var(--glow-primary);
}

.skill-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unity-icon {
    background: linear-gradient(135deg, #222c37, #000000);
    border: 2px solid #ffffff;
}

.unity-icon::before {
    content: 'U';
    color: white;
    font-weight: bold;
    font-size: 24px;
}

.csharp-icon {
    background: linear-gradient(135deg, #239120, #68217a);
}

.csharp-icon::before {
    content: 'C#';
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.design-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.design-icon::before {
    content: '🎨';
    font-size: 24px;
}

.content-icon {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.content-icon::before {
    content: '📹';
    font-size: 24px;
}

.skill-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.skill-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

.games-showcase {
    max-width: 1200px;
    width: 100%;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
    justify-items: center;
}

.game-item iframe {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 552px;
}

.more-games {
    text-align: center;
}

.more-games-link {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: var(--glow-primary);
}

.contact-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.contact-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-value {
    font-family: var(--font-mono);
    color: var(--text-primary);
    font-size: 14px;
}

.contact-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: none;
    box-shadow: var(--glow-accent);
}

/* Games Page Styles */
.games-main {
    min-height: 100vh;
    padding: 120px 60px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.games-header {
    text-align: center;
    margin-bottom: 80px;
}

.games-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.games-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    font-weight: 300;
}

.games-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 48px;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 64px;
}

.game-item iframe {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s var(--ease);
    width: 100%;
    max-width: 552px;
}

.game-item iframe:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
}

.more-games {
    text-align: center;
}

.more-games-link {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s var(--ease);
    box-shadow: var(--glow-primary);
}

.more-games-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.4);
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s var(--ease);
}

.back-link:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .games-main { padding: 120px 30px 60px; }
    .games-container { grid-template-columns: 1fr; gap: 32px; }
    .game-item iframe { max-width: 100%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    max-width: 1400px;
    width: 100%;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 56px;
    transition: all 0.5s var(--ease);
    cursor: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
    transition: left 1s var(--ease);
}

.project-card:hover::before,
.project-card.gesture-hover::before {
    left: 100%;
}

.project-card:hover,
.project-card.gesture-hover {
    border-color: var(--border);
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), var(--glow-primary);
    background: rgba(139, 92, 246, 0.1);
}

.card-visual {
    position: relative;
    margin-bottom: 32px;
    text-align: center;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    position: relative;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.card-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 300;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    backdrop-filter: blur(10px);
}

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    max-width: 1200px;
    width: 100%;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 56px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.8s var(--ease);
}

.skill-category:hover::before {
    transform: scaleX(1);
}

.skill-category:hover {
    border-color: var(--border);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), var(--glow-primary);
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: 0.5px;
}



/* Contact Section */
.contact-container {
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.contact-header {
    margin-bottom: 64px;
}

.contact-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    padding: 80px 64px;
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.contact-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(139, 92, 246, 0.1), transparent, rgba(6, 182, 212, 0.1), transparent);
    animation: rotate 30s linear infinite;
    z-index: -1;
}

.contact-info {
    margin-bottom: 48px;
}

.avatar-container {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    object-fit: cover;
    transition: all 0.4s var(--ease);
    box-shadow: var(--glow-primary);
}

.avatar-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, var(--primary), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: -1;
}

.avatar-container:hover .avatar-glow {
    opacity: 0.4;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 16px;
}

.contact-value {
    font-family: var(--font-mono);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
}

.contact-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border: none;
    border-radius: 16px;
    padding: 20px 48px;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: none;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-accent);
}

.contact-button:hover,
.contact-button.gesture-hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 30px 60px rgba(245, 158, 11, 0.4);
}

/* Section Navigation */
.section-nav {
    position: fixed;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9997;
}

.nav-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.3);
    border: 2px solid var(--border-light);
    cursor: none;
    transition: all 0.4s var(--ease);
}

.nav-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
    transform: scale(1.3);
}

.nav-dot:hover,
.nav-dot.gesture-hover {
    border-color: var(--primary);
    transform: scale(1.2);
}

/* Floating Elements */
.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-item:nth-child(1) {
    top: 15%;
    left: 10%;
}

.float-item:nth-child(2) {
    top: 60%;
    right: 10%;
}

.float-item:nth-child(3) {
    bottom: 15%;
    left: 50%;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .navbar { padding: 0 30px; }
    .section { padding: 120px 30px 60px; }
    .gesture-controls { grid-template-columns: 1fr; gap: 24px; }
    .projects-grid { grid-template-columns: 1fr; gap: 32px; }
    .skills-container { grid-template-columns: 1fr; gap: 32px; }
    .contact-content { padding: 48px 32px; }
    .section-nav { right: 30px; }
    .status-panel { top: 20px; right: 20px; padding: 16px; min-width: 180px; }
    .profile-section { flex-direction: column; gap: 24px; text-align: center; }
    .profile-info { text-align: center; }
    .profile-title { font-size: 2.5rem; }

    .about-content { padding: 40px 32px; }
}

/* CSS Icons */
.camera-icon { background: var(--primary); border-radius: 3px; position: relative; }
.camera-icon::before { content: ''; position: absolute; top: -2px; left: 50%; transform: translateX(-50%); width: 6px; height: 4px; background: var(--primary); border-radius: 2px; }
.camera-icon::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 6px; height: 6px; border: 2px solid var(--bg-primary); border-radius: 50%; }

.hand-icon { background: var(--primary); width: 8px; height: 12px; border-radius: 4px 4px 2px 2px; position: relative; }
.hand-icon::before { content: ''; position: absolute; top: -2px; left: -2px; width: 3px; height: 8px; background: var(--primary); border-radius: 2px; }
.hand-icon::after { content: ''; position: absolute; top: -2px; right: -2px; width: 3px; height: 8px; background: var(--primary); border-radius: 2px; }

.target-icon { border: 2px solid var(--primary); border-radius: 50%; position: relative; }
.target-icon::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 4px; height: 4px; background: var(--primary); border-radius: 50%; }

.game-icon { position: relative; width: 48px; height: 30px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 8px; margin: 0 auto; box-shadow: 0 8px 16px rgba(139, 92, 246, 0.3); }
.game-icon::before { content: ''; position: absolute; top: 8px; left: 8px; width: 10px; height: 10px; border: 2px solid white; border-radius: 50%; }
.game-icon::after { content: ''; position: absolute; top: 8px; right: 8px; width: 12px; height: 8px; background: white; border-radius: 4px; }

.youtube-icon { position: relative; width: 48px; height: 34px; background: linear-gradient(135deg, #ff0000, #cc0000); border-radius: 8px; margin: 0 auto; box-shadow: 0 8px 16px rgba(255, 0, 0, 0.3); }
.youtube-icon::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-20%, -50%); width: 0; height: 0; border-left: 12px solid white; border-top: 8px solid transparent; border-bottom: 8px solid transparent; }

.course-icon { position: relative; width: 42px; height: 42px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 50%; margin: 0 auto; box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3); }
.course-icon::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 18px; height: 18px; background: var(--bg-primary); border-radius: 50%; }
.course-icon::after { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%); width: 12px; height: 8px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 4px 4px 0 0; }