/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0a0a0a;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.nav-logo a:hover {
    color: #16a34a;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
}

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

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #22c55e;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #22c55e, #ec4899);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #22c55e;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 50%, #4b5563 100%);
    animation: gradientShift 15s ease infinite;
}

.particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(156, 163, 175, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 114, 128, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(75, 85, 99, 0.2) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 60% 60%, rgba(156, 163, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 10%, rgba(107, 114, 128, 0.05) 0%, transparent 50%);
    animation: particleFloat 25s ease-in-out infinite reverse;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(156, 163, 175, 0.05) 0%, 
        rgba(107, 114, 128, 0.05) 25%, 
        rgba(75, 85, 99, 0.05) 50%, 
        rgba(156, 163, 175, 0.05) 75%, 
        rgba(107, 114, 128, 0.05) 100%);
    animation: overlayShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #9ca3af 0%, #6b7280 50%, #4b5563 100%);
    }
    25% {
        background: linear-gradient(135deg, #6b7280 0%, #4b5563 50%, #9ca3af 100%);
    }
    50% {
        background: linear-gradient(135deg, #4b5563 0%, #9ca3af 50%, #6b7280 100%);
    }
    75% {
        background: linear-gradient(135deg, #9ca3af 0%, #6b7280 50%, #4b5563 100%);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.8;
    }
}

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

/* Floating Stars */
.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(34, 197, 94, 0.6);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    font-size: 28px;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    font-size: 32px;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    font-size: 20px;
}

.floating-element:nth-child(4) {
    top: 15%;
    right: 25%;
    animation-delay: 1s;
    font-size: 24px;
}

.floating-element:nth-child(5) {
    top: 45%;
    left: 5%;
    animation-delay: 3s;
    font-size: 18px;
}

.floating-element:nth-child(6) {
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
    font-size: 26px;
}

.floating-element:hover {
    color: rgba(34, 197, 94, 1);
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
    transform: scale(1.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 0.8;
    }
}

/* Floating HTML Tags */
.floating-tag {
    position: absolute;
    color: rgba(34, 197, 94, 0.8);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    background: rgba(10, 10, 10, 0.8);
    padding: 8px 12px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.4);
    animation: tagFloat 8s ease-in-out infinite;
    cursor: default;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.floating-tag:hover {
    color: rgba(34, 197, 94, 1);
    background: rgba(10, 10, 10, 0.9);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

.floating-tag:nth-child(4) {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.floating-tag:nth-child(5) {
    top: 25%;
    right: 10%;
    animation-delay: 1s;
}

.floating-tag:nth-child(6) {
    top: 45%;
    left: 8%;
    animation-delay: 2s;
}

.floating-tag:nth-child(7) {
    top: 35%;
    right: 15%;
    animation-delay: 3s;
}

.floating-tag:nth-child(8) {
    top: 65%;
    left: 12%;
    animation-delay: 4s;
}

.floating-tag:nth-child(9) {
    top: 55%;
    right: 8%;
    animation-delay: 5s;
}

.floating-tag:nth-child(10) {
    top: 75%;
    left: 18%;
    animation-delay: 6s;
}

.floating-tag:nth-child(11) {
    top: 85%;
    right: 12%;
    animation-delay: 7s;
}

@keyframes tagFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-25px) rotate(-5deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-10px) rotate(3deg);
        opacity: 0.6;
    }
}

/* Floating Skill Icons */
.floating-skill {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(34, 197, 94, 0.4);
    animation: skillFloat 10s ease-in-out infinite;
    cursor: default;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.floating-skill:hover {
    background: rgba(10, 10, 10, 0.9);
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
}

.floating-skill i {
    font-size: 24px;
    color: rgba(34, 197, 94, 0.8);
    transition: all 0.3s ease;
}

.floating-skill:hover i {
    color: rgba(34, 197, 94, 1);
    transform: scale(1.1);
}

/* Skill-specific colors on hover */
.floating-skill[data-skill="html"]:hover {
    background: rgba(227, 79, 38, 0.3);
    border-color: rgba(227, 79, 38, 0.8);
    box-shadow: 0 0 30px rgba(227, 79, 38, 0.6);
}

.floating-skill[data-skill="css"]:hover {
    background: rgba(38, 77, 228, 0.3);
    border-color: rgba(38, 77, 228, 0.8);
    box-shadow: 0 0 30px rgba(38, 77, 228, 0.6);
}

.floating-skill[data-skill="js"]:hover {
    background: rgba(247, 223, 30, 0.3);
    border-color: rgba(247, 223, 30, 0.8);
    box-shadow: 0 0 30px rgba(247, 223, 30, 0.6);
}

.floating-skill[data-skill="react"]:hover {
    background: rgba(97, 218, 251, 0.3);
    border-color: rgba(97, 218, 251, 0.8);
    box-shadow: 0 0 30px rgba(97, 218, 251, 0.6);
}

.floating-skill[data-skill="node"]:hover {
    background: rgba(104, 183, 120, 0.3);
    border-color: rgba(104, 183, 120, 0.8);
    box-shadow: 0 0 30px rgba(104, 183, 120, 0.6);
}

.floating-skill[data-skill="git"]:hover {
    background: rgba(240, 81, 51, 0.3);
    border-color: rgba(240, 81, 51, 0.8);
    box-shadow: 0 0 30px rgba(240, 81, 51, 0.6);
}

.floating-skill[data-skill="github"]:hover {
    background: rgba(36, 41, 46, 0.3);
    border-color: rgba(36, 41, 46, 0.8);
    box-shadow: 0 0 30px rgba(36, 41, 46, 0.6);
}

.floating-skill[data-skill="docker"]:hover {
    background: rgba(13, 36, 99, 0.3);
    border-color: rgba(13, 36, 99, 0.8);
    box-shadow: 0 0 30px rgba(13, 36, 99, 0.6);
}

.floating-skill[data-skill="firebase"]:hover {
    background: rgba(255, 152, 0, 0.3);
    border-color: rgba(255, 152, 0, 0.8);
    box-shadow: 0 0 30px rgba(255, 152, 0, 0.6);
}

.floating-skill[data-skill="database"]:hover {
    background: rgba(0, 150, 136, 0.3);
    border-color: rgba(0, 150, 136, 0.8);
    box-shadow: 0 0 30px rgba(0, 150, 136, 0.6);
}

.floating-skill[data-skill="server"]:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.8);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
}

/* Game Dev floating icons */
.floating-skill[data-skill="unity"]:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

.floating-skill[data-skill="gamepad"]:hover {
    background: rgba(155, 89, 182, 0.3);
    border-color: rgba(155, 89, 182, 0.8);
    box-shadow: 0 0 30px rgba(155, 89, 182, 0.6);
}

.floating-skill[data-skill="dice"]:hover {
    background: rgba(231, 76, 60, 0.3);
    border-color: rgba(231, 76, 60, 0.8);
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.6);
}

.floating-skill[data-skill="ghost"]:hover {
    background: rgba(52, 152, 219, 0.3);
    border-color: rgba(52, 152, 219, 0.8);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.6);
}

.floating-skill:nth-child(12) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.floating-skill:nth-child(13) {
    top: 20%;
    right: 25%;
    animation-delay: 1s;
}

.floating-skill:nth-child(14) {
    top: 30%;
    left: 35%;
    animation-delay: 2s;
}

.floating-skill:nth-child(15) {
    top: 40%;
    right: 35%;
    animation-delay: 3s;
}

.floating-skill:nth-child(16) {
    top: 50%;
    left: 25%;
    animation-delay: 4s;
}

.floating-skill:nth-child(17) {
    top: 60%;
    right: 20%;
    animation-delay: 5s;
}

.floating-skill:nth-child(18) {
    top: 70%;
    left: 15%;
    animation-delay: 6s;
}

.floating-skill:nth-child(19) {
    top: 80%;
    right: 30%;
    animation-delay: 7s;
}

.floating-skill:nth-child(20) {
    top: 90%;
    left: 30%;
    animation-delay: 8s;
}

.floating-skill:nth-child(21) {
    top: 15%;
    left: 45%;
    animation-delay: 9s;
}

.floating-skill:nth-child(22) {
    top: 25%;
    right: 45%;
    animation-delay: 10s;
}

.floating-skill:nth-child(23) {
    top: 35%;
    left: 55%;
    animation-delay: 11s;
}

@keyframes skillFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-35px) rotate(-10deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.9;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 100px 0 50px;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.highlight {
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5), 0 0 40px rgba(34, 197, 94, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #f1f5f9;
    line-height: 1.7;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #22c55e;
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
    font-weight: 700;
    text-shadow: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #16a34a;
    color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.8), 0 0 20px rgba(34, 197, 94, 0.6), 0 0 30px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
    font-weight: 700;
    text-shadow: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #22c55e;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.8), 0 0 20px rgba(34, 197, 94, 0.6), 0 0 30px rgba(34, 197, 94, 0.4);
}

.hero-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #22c55e;
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.6);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.2);
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
}

.placeholder-image {
    font-size: 5rem;
    color: rgba(34, 197, 94, 0.7);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e2e8f0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #22c55e 0%, #ec4899 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

/* About Section */
.about {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.stat p {
    color: #94a3b8;
    font-weight: 500;
}

.about-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.about-placeholder {
    font-size: 4rem;
    color: #22c55e;
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: rgba(10, 10, 10, 0.8);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.skill-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    text-align: center;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.skill-item:hover {
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.skill-item i {
    font-size: 1.2rem;
    color: #22c55e;
}

.skill-item span {
    font-weight: 500;
    color: #22c55e;
}

/* Game Development Category Special Styling */
.game-dev-category {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(231, 76, 60, 0.15) 100%);
    border: 2px solid rgba(155, 89, 182, 0.4);
}

.game-dev-category:hover {
    border-color: rgba(155, 89, 182, 0.8);
    box-shadow: 0 0 30px rgba(155, 89, 182, 0.4);
}

.game-dev-category h3 {
    color: #9b59b6;
}

.game-dev-category h3 i {
    margin-right: 0.5rem;
}

.game-dev-category .skill-item {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid rgba(155, 89, 182, 0.3);
}

.game-dev-category .skill-item:hover {
    background: rgba(155, 89, 182, 0.2);
}

.game-dev-category .skill-item i {
    color: #9b59b6;
}

.game-dev-category .skill-item span {
    color: #9b59b6;
}

/* Projects Section */
.projects {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(10, 10, 10, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #22c55e 0%, #ec4899 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder {
    font-size: 3rem;
    color: white;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

.project-content p {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-tech span {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #16a34a;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Experience Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(34, 197, 94, 0.3);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 50%;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-right: 0;
    padding-left: 2rem;
}

.timeline-content {
    background: rgba(10, 10, 10, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -6px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -6px;
}

.timeline-header {
    margin-bottom: 1rem;
}

.timeline-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.25rem;
}

.company {
    color: #22c55e;
    font-weight: 500;
    margin-right: 1rem;
}

.period {
    color: #94a3b8;
    font-size: 0.875rem;
}

.timeline-content p {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #22c55e;
}

/* Contact Section */
.contact {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.contact-info p {
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.contact-item i {
    color: #22c55e;
    font-size: 1.2rem;
    width: 20px;
}

.contact-social {
    display: flex;
    gap: 1rem;
}

.contact-social .social-link {
    color: #94a3b8;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.contact-social .social-link:hover {
    color: #22c55e;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.contact-form {
    background: rgba(10, 10, 10, 0.8);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: rgba(10, 10, 10, 0.8);
    color: #e2e8f0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(34, 197, 94, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid rgba(34, 197, 94, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .skill-items {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        padding-left: 3rem;
        padding-right: 1rem;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -6px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 12px 16px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Responsive styles for floating elements */
@media (max-width: 768px) {
    .floating-tag:nth-child(n+6),
    .floating-skill:nth-child(n+18) {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-tag:nth-child(n+4),
    .floating-skill:nth-child(n+12) {
        display: none;
    }
    
    .floating-tag {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .floating-skill {
        width: 40px;
        height: 40px;
    }
    
    .floating-skill i {
        font-size: 20px;
    }
} 