/* Base styling */
:root {
    --neon-green: #0cff0c;
    --neon-green-bright: #00ff00;
    --neon-green-shadow: rgba(12, 255, 12, 0.7);
    --neon-green-glow: rgba(12, 255, 12, 0.4);
    --neon-green-dim: rgba(12, 255, 12, 0.2);
    --dark-bg: #030303;
    --dark-bg-alt: #060606;
    --dark-card: #080808;
    --dark-card-hover: #0a0a0a;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    --card-glow: 0 0 20px var(--neon-green-glow);
    --button-glow: 0 0 15px var(--neon-green), 0 0 30px var(--neon-green-glow);
    --transition-normal: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --heading-font: 'Audiowide', 'Orbitron', sans-serif;
    --body-font: 'Exo 2', 'Rajdhani', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    background-color: #030303;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-size: 18px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

h1 {
    font-size: 4rem;
    text-transform: uppercase;
}

h2 {
    font-size: 3rem;
    text-transform: uppercase;
}

h3 {
    font-size: 2rem;
    font-family: var(--body-font);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(12, 255, 12, 0.1);
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px);
    box-shadow: 0 0 15px rgba(12, 255, 12, 0.2), inset 0 0 10px rgba(12, 255, 12, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    font-size: 1.5rem;
    animation: pulse-arrow 2s infinite ease-in-out;
}

@keyframes pulse-arrow {
    0% {
        transform: translateY(0);
        text-shadow: 0 0 5px var(--neon-green-shadow);
    }
    50% {
        transform: translateY(-3px);
        text-shadow: 0 0 10px var(--neon-green-shadow), 0 0 20px var(--neon-green-glow);
    }
    100% {
        transform: translateY(0);
        text-shadow: 0 0 5px var(--neon-green-shadow);
    }
}

.scroll-to-top:hover {
    background-color: rgba(12, 255, 12, 0.2);
    box-shadow: 0 0 20px rgba(12, 255, 12, 0.4), inset 0 0 15px rgba(12, 255, 12, 0.2);
    transform: translateY(-5px);
}

.neon-text {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green-shadow),
                 0 0 10px var(--neon-green-shadow),
                 0 0 20px var(--neon-green-shadow);
    letter-spacing: 2px;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--neon-green);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid var(--neon-green);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: all 0.15s ease;
    mix-blend-mode: difference;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 12px 0;
    background-color: rgba(5, 5, 5, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    margin-left: 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul {
    display: flex;
    gap: 2rem;
    margin-right: 40px;
}

nav a {
    position: relative;
    padding: 5px 0;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--neon-green);
}

nav a.hover-effect {
    position: relative;
    padding: 5px 8px;
    overflow: hidden;
    transition: var(--transition-normal);
}

nav a.hover-effect:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--neon-green-dim);
    transition: var(--transition-normal);
    z-index: -1;
    border-radius: 3px;
}

nav a.hover-effect:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-green);
    box-shadow: 0 0 5px var(--neon-green-shadow);
    transition: var(--transition-normal);
}

nav a.hover-effect:hover:before {
    height: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 40px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: var(--text-color);
    border-radius: 3px;
    transform-origin: center;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--neon-green);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--neon-green);
}

/* Section Styling */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.underline {
    height: 4px;
    width: 60px;
    background-color: var(--neon-green);
    margin: 0 auto;
    box-shadow: 0 0 10px var(--neon-green-shadow);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin: 20px 0 30px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Navigation */
.hero-nav {
    margin: 20px 0 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 12px 25px;
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 2px solid var(--neon-green-dim);
    box-shadow: 0 0 30px rgba(12, 255, 12, 0.15), inset 0 0 20px rgba(12, 255, 12, 0.05);
    animation: pulse-subtle 3s infinite ease-in-out;
}

@keyframes pulse-subtle {
    0% {
        box-shadow: 0 0 30px rgba(12, 255, 12, 0.15), inset 0 0 20px rgba(12, 255, 12, 0.05);
    }
    50% {
        box-shadow: 0 0 40px rgba(12, 255, 12, 0.25), inset 0 0 25px rgba(12, 255, 12, 0.1);
    }
    100% {
        box-shadow: 0 0 30px rgba(12, 255, 12, 0.15), inset 0 0 20px rgba(12, 255, 12, 0.05);
    }
}

.hero-nav-link {
    color: var(--text-color);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neon-green-dim);
    background-color: rgba(12, 255, 12, 0.05);
    box-shadow: 0 0 8px rgba(12, 255, 12, 0.2);
    text-shadow: 0 0 2px rgba(12, 255, 12, 0.2);
}

.hero-nav-link:hover {
    color: var(--neon-green-bright);
    background-color: rgba(12, 255, 12, 0.15);
    box-shadow: 0 0 20px rgba(12, 255, 12, 0.5), inset 0 0 10px rgba(12, 255, 12, 0.1);
    border: 1px solid var(--neon-green);
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 0 8px var(--neon-green);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 3px;
    height: 8px;
    background-color: var(--neon-green);
    border-radius: 3px;
    animation: scroll 1.5s infinite;
}

.scroll-arrow {
    width: 15px;
    height: 15px;
    border-right: 3px solid var(--neon-green);
    border-bottom: 3px solid var(--neon-green);
    transform: rotate(45deg);
    margin-top: 10px;
    box-shadow: 3px 3px 0px 0px var(--neon-green-glow);
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.terminal {
    background-color: #0f0f0f;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    width: 100%;
    margin-top: 20px;
}

.terminal-header {
    background-color: #1a1a1a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red {
    background-color: #ff5f56;
}

.terminal-button.yellow {
    background-color: #ffbd2e;
}

.terminal-button.green {
    background-color: #27c93f;
}

.terminal-title {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: monospace;
}

.terminal-body {
    padding: 20px;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.line {
    margin-bottom: 10px;
}

.prompt {
    color: var(--neon-green);
    margin-right: 10px;
}

.cursor-blink {
    display: inline-block;
    width: 8px;
    height: 15px;
    background-color: var(--neon-green);
    animation: blink 1s step-end infinite;
}

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

/* Skills Section */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background-color: var(--dark-card);
    border-radius: 8px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--card-shadow);
    cursor: pointer;
    min-height: 120px;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 10px var(--neon-green-glow);
    border: 1px solid var(--neon-green);
}

.skill-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--neon-green);
}

.skill-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 40px;
}

.hidden {
    display: none;
}

.show-more-container {
    display: flex;
    justify-content: center;
    margin: 30px 0 50px;
}

#show-more-btn {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-bounce);
    background-color: var(--dark-card);
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(12, 255, 12, 0.3);
    text-shadow: 0 0 5px rgba(12, 255, 12, 0.3);
}

#show-more-btn.active-btn {
    box-shadow: var(--button-glow);
    text-shadow: 0 0 8px var(--neon-green);
    background-color: rgba(12, 255, 12, 0.1);
}

.project-card {
    background-color: var(--dark-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease, 
                background-color 0.3s ease,
                border 0.3s ease;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(12, 255, 12, 0.1);
}

.project-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--neon-green-dim);
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.6)
    );
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(12, 255, 12, 0.1),
        transparent 70%
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-image::after {
    opacity: 1;
}

.project-card:hover .project-image::before {
    opacity: 0.4;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(0.85) saturate(1.3) contrast(1.1);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--neon-green-glow);
    background-color: var(--dark-card-hover);
    border: 1px solid var(--neon-green);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.3);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    opacity: 0;
}

.project-card:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.project-card:hover h3 {
    text-shadow: 0 0 10px var(--neon-green-glow);
    letter-spacing: 1.2px;
    color: var(--neon-green-bright);
    transition: all 0.3s ease;
}

.project-card.featured {
    grid-column: span 2;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 255, 12, 0.05);
    opacity: 0;
    transition: var(--transition-normal);
}

.project-card:hover::after {
    opacity: 1;
}

.project-content {
    padding: 25px;
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to top, var(--dark-card-hover), var(--dark-card));
    transition: all 0.3s ease;
    border-top: 1px solid rgba(12, 255, 12, 0.05);
}

.project-card:hover .project-content {
    background: linear-gradient(to top, var(--dark-card-hover), rgba(12, 255, 12, 0.03));
}

.project-card h3 {
    color: var(--neon-green);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.project-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: var(--neon-green);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card:hover h3::after {
    width: 100%;
    box-shadow: 0 0 5px var(--neon-green-glow);
}

.project-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 300;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.project-card:hover p {
    opacity: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    padding: 5px 10px;
    border-radius: 4px;
    background-color: rgba(12, 255, 12, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green-bright);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 8px rgba(12, 255, 12, 0.3);
    transition: all 0.3s ease;
}

.project-tags span:hover {
    background-color: rgba(12, 255, 12, 0.2);
    box-shadow: 0 0 12px rgba(12, 255, 12, 0.5);
    transform: translateY(-2px);
}

.more-projects {
    background-color: var(--dark-card);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--card-shadow);
}

.more-projects h3 {
    color: var(--neon-green);
    margin-bottom: 15px;
    text-align: center;
}

.more-projects ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.more-projects li {
    position: relative;
    padding-left: 20px;
    line-height: 1.5;
}

.more-projects li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-green);
}

/* Gaming Section */
.gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.gaming-card {
    background-color: var(--dark-card);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
}

.gaming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--neon-green-glow);
    border: 1px solid var(--neon-green);
}

.gaming-icon {
    margin-bottom: 20px;
}

.gaming-icon i {
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-shadow);
}

.gaming-card h3 {
    color: var(--neon-green);
    margin-bottom: 15px;
}

.gaming-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Social Section */
.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--dark-card);
    border-radius: 8px;
    min-width: 150px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
}

.social-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--neon-green-glow);
    border: 1px solid var(--neon-green);
}

.social-item i {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.social-item span {
    font-size: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--dark-bg-alt);
    padding: 40px 0;
    border-top: 1px solid rgba(12, 255, 12, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-footer {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: 100px 0;
    }
    
    .project-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin: 0;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text {
        margin-bottom: 30px;
    }
    
    .skills-container {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .project-grid, .more-projects ul {
        grid-template-columns: 1fr;
    }
    
    .gaming-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-item {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .logo {
        margin-left: 20px;
        font-size: 1.5rem;
    }
    
    .hamburger {
        margin-right: 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 80px 0;
    }
}
