/* ==========================================================================
   CSS Variables & Global Reset
   ========================================================================== */
   :root {
    --bg-dark: #0f1015;
    --bg-surface: #17181f;
    --bg-surface-light: #22232e;
    --primary-color: #6343e8; /* Soft Purple */
    --primary-hover: #5031cd;
    --text-white: #ffffff;
    --text-gray: #a3a4b6;
    --text-dark: #1e1e1e;
    
    --font-main: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease-in-out;
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-gray);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(99, 67, 232, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(99, 67, 232, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 6px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), #bc82ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.sub-title {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.3;
}

.bg-text {
    position: absolute;
    font-size: 15vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    background: rgba(15, 16, 21, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--text-white);
    font-weight: 400;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar a:not(.btn-outline) {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 400;
}

.navbar a:not(.btn-outline):hover, 
.navbar a.active {
    color: var(--text-white);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-surface-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-left: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--text-white);
}

.lang-btn.active {
    color: var(--primary-color);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: var(--text-white);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8% 0;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.greeting {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.name {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.role {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.6);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-text {
    font-size: 0.9rem;
    color: var(--text-white);
}

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

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--bg-surface);
    border-radius: 50%;
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Hero Image & Decorations */
.hero-image-container {
    position: relative;
    width: 450px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.hero-img-1 {
    animation: fadeHero1 10s infinite ease-in-out;
}

.hero-img-2 {
    animation: fadeHero2 10s infinite ease-in-out;
}

@keyframes fadeHero1 {
    0%, 45% { opacity: 1; transform: scale(1); }
    50%, 95% { opacity: 0; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes fadeHero2 {
    0%, 45% { opacity: 0; transform: scale(1.02); }
    50%, 95% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.02); }
}

.decoration-shape {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(99, 67, 232, 0.2) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(20px);
    opacity: 0.6;
    animation: blobMorph 8s ease-in-out infinite alternate;
}

.decoration-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -10%;
    right: -10%;
    z-index: 0;
}

.decoration-plus {
    position: absolute;
    top: 10%;
    right: 5%;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 300;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

@keyframes blobMorph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   Offer Section
   ========================================================================== */
.offer {
    padding: 100px 8%;
    background-color: var(--bg-surface);
}

.offer-cards {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.offer-cards::-webkit-scrollbar {
    display: none;
}

.card {
    background: var(--bg-surface-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.02);
    transition: var(--transition);
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: center;
    opacity: 0.6;
    transform: scale(0.95);
}

.card.main-card {
    opacity: 1;
    transform: scale(1.05);
    background: linear-gradient(145deg, var(--bg-surface-light), #1a1b23);
    border-color: rgba(99, 67, 232, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.card:hover {
    opacity: 1;
    transform: translateY(-10px);
}

.card-image-wrapper {
    margin-bottom: 1.5rem;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.glow-text {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(99, 67, 232, 0.5);
}

.card-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
}

.card-pagination i {
    font-size: 1.2rem;
    color: var(--text-gray);
    cursor: pointer;
    background: transparent;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.card-pagination i:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 24px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

/* ==========================================================================
   Statistics
   ========================================================================== */
.statistics {
    padding: 50px 8%;
    background-color: var(--bg-dark);
}

.stat-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-box {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-box.highlighted {
    background: rgba(99, 67, 232, 0.1);
    padding: 20px 0;
    border-radius: 8px;
    border: 1px solid rgba(99, 67, 232, 0.3);
}

.stat-box.highlighted h3 {
    color: var(--primary-color);
}

/* ==========================================================================
   Latest Project & Why Hire Me
   ========================================================================== */
.latest-project, .why-hire-me {
    padding: 100px 8%;
    position: relative;
}

.github-repos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.repo-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-gray);
    padding: 3rem;
    font-size: 1.2rem;
}

.repo-loading i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.github-card {
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.github-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 67, 232, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.github-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.github-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.github-card-title i {
    color: var(--text-gray);
}

.github-card-visibility {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-gray);
}

.github-card-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.github-card-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.github-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.github-lang-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.project-contact-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.project-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Why Hire Grid */
.hire-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.hire-item {
    text-align: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.icon-circle:hover {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(99, 67, 232, 0.4);
}

.hire-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.hire-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* ==========================================================================
   Favorite Games & Skills
   ========================================================================== */
.favorite-games {
    padding: 80px 8%;
    background: var(--bg-surface);
}

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

.game-item {
    background: var(--bg-dark);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(99, 67, 232, 0.5);
}

.game-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(99, 67, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    overflow: hidden;
}

.game-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-item h3 {
    font-size: 1.2rem;
}

/* Skills */
.skills {
    padding: 100px 8%;
    position: relative;
    text-align: center;
}

.skills-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-surface);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.skill-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    border-color: rgba(99, 67, 232, 0.5);
}

.skill-icon.ps { color: #31A8FF; font-weight: 700; font-family: sans-serif; font-size: 2rem; }
.skill-icon.ai { color: #FF9A00; font-weight: 700; font-family: sans-serif; font-size: 2rem; }
.skill-icon.pr { color: #EA77FF; font-weight: 700; font-family: sans-serif; font-size: 2rem; }
.skill-icon.cd { color: #1DBF73; font-weight: 700; font-family: sans-serif; font-size: 2rem; }
.skill-icon.html5 { color: #E34F26; }
.skill-icon.css3 { color: #1572B6; }
.skill-icon.code { color: var(--text-white); }
.skill-icon img { height: 40px; }

/* ==========================================================================
   Supporters / Donators (List Layout)
   ========================================================================== */
.supporters {
    padding: 100px 8%;
    background: var(--bg-dark);
    position: relative;
    text-align: center;
}

.supporters-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.supporters-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.supporter-row {
    display: flex;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    transition: var(--transition);
    text-align: left;
}

.supporter-row:hover {
    transform: translateX(5px);
    border-color: rgba(99, 67, 232, 0.5);
    background: var(--bg-surface-light);
}

.supporter-row.top-donator {
    background: linear-gradient(90deg, var(--bg-surface-light), #1a1b23);
    border-color: rgba(255, 215, 0, 0.3);
}

.supporter-row.top-donator:hover {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.supporter-row.special-donator {
    background: linear-gradient(90deg, var(--bg-surface-light), #2a1b40);
    border-color: rgba(155, 89, 182, 0.3);
}

.supporter-row.special-donator:hover {
    border-color: rgba(155, 89, 182, 0.8);
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.1);
}

.supporter-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.supporter-row.top-donator .supporter-rank i {
    color: #FFD700;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.supporter-row.special-donator .supporter-rank i {
    color: #9b59b6;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.5);
    animation: pulsePurple 2s infinite;
}

@keyframes pulsePurple {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.supporter-info {
    flex: 1;
    padding: 0 1.5rem;
}

.supporter-name {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.supporter-row.top-donator .supporter-name {
    color: #FFD700;
}

.supporter-row.special-donator .supporter-name {
    color: #e0aaff;
}

.supporter-msg {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    line-height: 1.4;
}

.supporter-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.supporter-row.top-donator .supporter-amount {
    color: #FFD700;
}

.supporter-row.special-donator .supporter-amount {
    color: #e0aaff;
}

.supporters-action {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .supporters-grid-2col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .supporter-row {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .supporter-rank {
        width: 100%;
        margin-bottom: 0.8rem;
    }

    .supporter-info {
        padding: 0;
        margin-bottom: 1rem;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 80px 8% 20px;
    background: var(--bg-surface);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 600px;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-desc {
    margin-bottom: 2rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.contact-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        margin-bottom: 4rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .social-wrapper {
        justify-content: center;
    }
    
    .offer-cards {
        justify-content: flex-start;
    }
    
    .hire-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-container {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-box::after {
        display: none;
    }
    
    .stat-box {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        flex-direction: column;
        padding: 2rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }
    
    .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    .name {
        font-size: 3rem;
    }
    
    .hero-image-container {
        width: 100%;
        max-width: 350px;
        height: 450px;
    }
    
    .hire-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .github-repos-container {
        grid-template-columns: 1fr;
    }
    
    .project-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .skills-icons {
        flex-wrap: wrap;
    }
}
