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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

.rust-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 136, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(255, 165, 0, 0.02) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 136, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 136, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridPulse 8s ease-in-out infinite;
}

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

@keyframes gridPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff8800;
}

.nav-logo i {
    font-size: 1.5rem;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 5px #ff8800; }
    50% { text-shadow: 0 0 20px #ff8800, 0 0 30px #ff4500; }
}

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

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ff8800;
    text-shadow: 0 0 10px #ff8800;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #ff8800, #ff4500);
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #ff8800;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px #ff8800;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #ff8800;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #ff8800;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
}

.rust-text {
    color: #ff8800;
    text-shadow: 0 0 20px #ff8800, 0 0 40px #ff4500;
    display: block;
}

.glitch-text {
    color: #e0e0e0;
    position: relative;
    display: block;
    animation: glitchEffect 3s infinite;
}

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

.glitch-text:before {
    animation: glitchTop 1s linear infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    color: #ff4500;
}

.glitch-text:after {
    animation: glitchBottom 1.5s linear infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    color: #ff8800;
}

@keyframes glitchTop {
    2%, 64% { transform: translate(2px, -2px); }
    4%, 60% { transform: translate(-2px, 2px); }
    62% { transform: translate(13px, -1px) skew(-13deg); }
}

@keyframes glitchBottom {
    2%, 64% { transform: translate(-2px, 0); }
    4%, 60% { transform: translate(-2px, 0); }
    62% { transform: translate(-22px, 5px) skew(21deg); }
}

@keyframes glitchEffect {
    0%, 100% { text-shadow: 0 0 5px #e0e0e0; }
    20% { text-shadow: 2px 0 #ff4500, -2px 0 #ff8800; }
    40% { text-shadow: -2px 0 #ff4500, 2px 0 #ff8800; }
    60% { text-shadow: 0 0 5px #e0e0e0; }
    80% { text-shadow: 2px 2px #ff4500, -2px -2px #ff8800; }
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 136, 0, 0.1);
    border: 1px solid #ff8800;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff8800;
    text-shadow: 0 0 10px #ff8800;
}

.stat-label {
    font-size: 0.8rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ff8800, #ff4500);
    color: #000;
    border: 2px solid #ff8800;
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff4500, #ff8800);
    box-shadow: 0 0 30px rgba(255, 136, 0, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ff8800;
    border: 2px solid #ff8800;
}

.btn-secondary:hover {
    background: #ff8800;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 136, 0, 0.3);
    transform: translateY(-2px);
}

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

.rust-logo {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-gear {
    font-size: 8rem;
    color: #ff8800;
    animation: gearRotate 10s linear infinite;
    text-shadow: 0 0 30px #ff8800, 0 0 60px #ff4500;
}

@keyframes gearRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-sparks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff8800;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff8800;
    animation: sparkFly 2s linear infinite;
}

.spark:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.spark:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 0.7s;
}

.spark:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.4s;
}

@keyframes sparkFly {
    0% {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.5) translate(20px, -20px);
    }
    100% {
        opacity: 0;
        transform: scale(0) translate(40px, -40px);
    }
}

/* Common AK-47 image styles */
.ak47-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 136, 0, 0.8));
    transition: all 0.3s ease;
}

.ak47-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

/* Glow pulse animation */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* AK-47 in About Section */
.ak47-about {
    position: absolute;
    top: 7%;
    left: 2%;
    width: 350px;
    height: 250px;
    animation: ak47Levitate2 8s ease-in-out infinite;
    z-index: 2;
    transform: rotate(15deg);
}

/* AK-47 in Projects Section */
.ak47-projects {
    position: absolute;
    top: 5%;
    right: 60%;
    width: 300px;
    height: 220px;
    animation: ak47Levitate3 7s ease-in-out infinite;
    z-index: 2;
    transform: rotate(25deg);
}

/* AK-47 in Skills Section */
.ak47-skills {
    position: absolute;
    top: 0%;
    left: 10%;
    width: 320px;
    height: 230px;
    animation: ak47Levitate4 9s ease-in-out infinite;
    z-index: 2;
    transform: rotate(25deg);
}



/* Different levitation animations for variety */
@keyframes ak47Levitate2 {
    0%, 100% {
        transform: translateY(0) rotate(15deg);
    }
    50% {
        transform: translateY(-25px) rotate(20deg);
    }
}

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

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



/* Hover effects for all AK-47s */
.ak47-about:hover .ak47-image,
.ak47-projects:hover .ak47-image,
.ak47-skills:hover .ak47-image {
    filter: drop-shadow(0 0 50px rgb(255, 25, 0));
    transform: scale(1.5);
}

.ak47-about:hover,
.ak47-projects:hover,
.ak47-skills:hover {
    animation-play-state: paused;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 136, 0, 0.3);
}

.section-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff8800, #ff4500);
    margin: 0 auto;
    box-shadow: 0 0 10px #ff8800;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.about-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ff8800;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #ff8800;
}

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

.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 136, 0, 0.05);
    border-left: 3px solid #ff8800;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 136, 0, 0.1);
    transform: translateX(10px);
}

.timeline-year {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #ff8800;
    min-width: 60px;
}

.timeline-text {
    color: #e0e0e0;
}

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

.rust-character {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ff8800;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.1), transparent);
}

.character-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 136, 0, 0.2), transparent);
    animation: characterPulse 2s ease-in-out infinite;
}

@keyframes characterPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.rust-character i {
    font-size: 4rem;
    color: #ff8800;
    z-index: 2;
    text-shadow: 0 0 20px #ff8800;
}

/* Games Section */
.games {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.games-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #b0b0b0;
    border: 2px solid #333;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff8800;
    color: #000;
    border-color: #ff8800;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.3);
}

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

.game-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 136, 0, 0.2);
    border-color: #ff8800;
}

.game-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-placeholder {
    font-size: 4rem;
    color: #666;
    transition: all 0.3s ease;
}

.game-card:hover .game-placeholder {
    color: #ff8800;
    text-shadow: 0 0 20px #ff8800;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 136, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-actions {
    display: flex;
    gap: 1rem;
}

.game-btn {
    width: 50px;
    height: 50px;
    background: #000;
    color: #ff8800;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-btn:hover {
    background: #ff8800;
    color: #000;
    transform: scale(1.1);
}

.game-info {
    padding: 1.5rem;
}

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.game-description {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 136, 0, 0.2);
    color: #ff8800;
    font-size: 0.8rem;
    border-radius: 15px;
    border: 1px solid #ff8800;
}

/* Project Links */
.project-links {
    margin-top: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #ff8800, #ff4500);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 136, 0, 0.3);
}

.project-link:hover {
    background: linear-gradient(45deg, #ff4500, #ff8800);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.5);
    color: #000;
}

.project-link i {
    font-size: 1rem;
}

/* Skills Section */
.skills {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

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

.skill-category h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #ff8800;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px #ff8800;
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.skill-name {
    font-weight: 600;
    color: #e0e0e0;
    min-width: 120px;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background: #333;
    margin-left: 1rem;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff8800, #ff4500);
    border-radius: 4px;
    width: 0;
    transition: width 2s ease;
    box-shadow: 0 0 10px rgba(255, 136, 0, 0.5);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.contact-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ff8800;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px #ff8800;
}

.contact-info p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 136, 0, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: #ff8800;
    background: rgba(255, 136, 0, 0.1);
}

.contact-method i {
    font-size: 1.5rem;
    color: #ff8800;
    width: 30px;
    text-align: center;
}

.method-info {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-value {
    color: #e0e0e0;
    font-weight: 600;
}

.contact-form {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ff8800;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 136, 0, 0.05);
    border: 2px solid #333;
    border-radius: 5px;
    color: #e0e0e0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8800;
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.2);
    background: rgba(255, 136, 0, 0.1);
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 2px solid #ff8800;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff8800;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #ff8800;
    text-shadow: 0 0 10px #ff8800;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 136, 0, 0.1);
    border: 1px solid #ff8800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff8800;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 136, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        border-top: 2px solid #ff8800;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-categories {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Animations for scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}