:root {
    --pink-primary: #ff6b9d;
    --pink-secondary: #ff8fb3;
    --pink-light: #ffb3d1;
    --pink-dark: #e6397a;
    --pink-gradient: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 100%);
    --pink-gradient-strong: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 50%, #ffb3d1 100%);
    --pink-gradient-soft: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 143, 179, 0.1) 100%);
    --dark-bg: #0a0a15;
    --dark-card: #151525;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 107, 157, 0.25);
    --text-primary: #ffffff;
    --text-secondary: #b8b8d4;
    --text-muted: #8b8ba8;
    --shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
    --shadow-hover: 0 25px 60px rgba(255, 107, 157, 0.35);
    --shadow-glow: 0 0 40px rgba(255, 107, 157, 0.4);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 107, 157, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(255, 143, 179, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 157, 0.04) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
    border-left: 1px solid rgba(255, 107, 157, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--pink-primary) 0%, var(--pink-secondary) 100%);
    border-radius: 10px;
    border: 2px solid var(--dark-bg);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--pink-secondary) 0%, var(--pink-light) 100%);
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--pink-primary) var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 21, 0.3) 0%, rgba(21, 21, 37, 0.3) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 107, 157, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, background, padding;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.navbar.scrolled::before {
    opacity: 0.5;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(10, 10, 21, 0.6) 0%, rgba(21, 21, 37, 0.6) 100%);
    backdrop-filter: blur(45px) saturate(200%);
    -webkit-backdrop-filter: blur(45px) saturate(200%);
    padding: 1rem 0;
    box-shadow: 0 12px 60px rgba(255, 107, 157, 0.3), 0 6px 25px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 107, 157, 0.35);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.logo-image {
    height: 6rem;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
    pointer-events: none;
}

.navbar.scrolled .logo-image {
    height: 4.5rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-links {
    gap: 0.3rem;
}

.github-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.github-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pink-gradient-soft);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.github-button:hover {
    color: var(--pink-primary);
    border-color: var(--pink-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.github-button:hover::before {
    opacity: 1;
}

.github-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.github-button:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    background: transparent;
    overflow: hidden;
}

.navbar.scrolled .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 143, 179, 0.1) 100%);
    border-radius: 20px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--pink-gradient);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.15) 0%, rgba(255, 143, 179, 0.15) 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, var(--pink-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-age {
    font-size: 1.1rem;
    color: var(--pink-light);
    margin-bottom: 2.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--pink-gradient-soft);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--pink-gradient);
    color: white;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-hover), var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--pink-primary);
    border: 2px solid var(--pink-primary);
}

.btn-secondary:hover {
    background: var(--pink-primary);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

.avatar-placeholder {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--pink-gradient-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover), var(--shadow-glow);
    animation: float 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.avatar-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.avatar-image:hover {
    border-color: var(--pink-primary);
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--pink-primary);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--pink-primary);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* Sections */
section {
    padding: 100px 20px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--pink-gradient);
    border-radius: 2px;
    opacity: 0.6;
}

/* About Section */
.about {
    background: linear-gradient(180deg, transparent 0%, rgba(21, 21, 37, 0.4) 50%, transparent 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-primary), transparent);
    opacity: 0.4;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.skills {
    text-align: center;
}

.skills h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.skill-tag {
    padding: 0.7rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: var(--pink-light);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--pink-primary);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    opacity: 0.2;
}

.skill-tag:hover::before {
    width: 300px;
    height: 300px;
}

.skill-tag:hover {
    background: rgba(255, 107, 157, 0.2);
    color: white;
    transform: translateY(-3px) scale(1.05);
    border-color: var(--pink-primary);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 28px;
    padding: 2.8rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease backwards;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--pink-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-hover), var(--shadow-glow), 0 0 0 1px rgba(255, 107, 157, 0.2);
    border-color: var(--pink-primary);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.12) 0%, rgba(255, 143, 179, 0.08) 100%);
}

.project-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.project-card h3 {
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    margin-bottom: 1.2rem;
    color: var(--pink-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.project-tech span {
    padding: 0.3rem 0.8rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--pink-light);
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, transparent 0%, rgba(21, 21, 37, 0.4) 50%, transparent 100%);
    backdrop-filter: blur(10px);
    position: relative;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--pink-gradient-soft);
    border-color: var(--pink-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.contact-label {
    font-weight: 600;
    color: var(--pink-primary);
}

.contact-value {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 2.5rem 20px;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--pink-gradient);
}

/* Consent Banner Styles */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 21, 0.98) 0%, rgba(21, 21, 37, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-top: 1px solid rgba(255, 107, 157, 0.3);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-banner.show {
    transform: translateY(0);
}

.consent-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.consent-banner-text {
    flex: 1;
    min-width: 300px;
}

.consent-banner-text h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.consent-banner-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.consent-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.consent-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.consent-btn-accept {
    background: var(--pink-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.consent-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.consent-btn-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.consent-btn-decline:hover {
    background: var(--glass-bg);
    color: var(--text-primary);
    border-color: var(--pink-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--pink-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .github-button {
        width: 40px;
        height: 40px;
    }

    .github-button svg {
        width: 18px;
        height: 18px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(10, 10, 21, 0.98) 0%, rgba(21, 21, 37, 0.98) 100%);
        backdrop-filter: blur(40px) saturate(200%);
        -webkit-backdrop-filter: blur(40px) saturate(200%);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 107, 157, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .navbar.scrolled .nav-link {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .consent-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .consent-banner-buttons {
        width: 100%;
        justify-content: center;
    }

    .consent-btn {
        flex: 1;
        min-width: 120px;
    }
}

