/* ===================================
   Egemen Ünlü Portfolio - Styles
   =================================== */

/* CSS Variables */
:root {
    --primary: #6EACDA;
    --secondary: #5a9ac8;
    --accent: #6EACDA;
    --background: #021526;
    --background-light: #03346E;
    --background-dark: #010d17;
    --text-primary: #E2E2B6;
    --text-secondary: rgba(226, 226, 182, 0.8);
    --text-muted: rgba(226, 226, 182, 0.5);
    --glass-bg: rgba(226, 226, 182, 0.05);
    --glass-border: rgba(226, 226, 182, 0.1);
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --topbar-bg: rgba(2, 21, 38, 0.95);
    --topbar-bg-scroll: rgba(2, 21, 38, 0.98);
}

/* Light Mode */
[data-theme="light"] {
    --primary: #FA8112;
    --secondary: #e07310;
    --accent: #FA8112;
    --background: #F5E7C6;
    --background-light: #FAF3E1;
    --background-dark: #e8d9b5;
    --text-primary: #222222;
    --text-secondary: rgba(34, 34, 34, 0.8);
    --text-muted: rgba(34, 34, 34, 0.5);
    --glass-bg: rgba(34, 34, 34, 0.05);
    --glass-border: rgba(34, 34, 34, 0.1);
    --topbar-bg: rgba(245, 231, 198, 0.95);
    --topbar-bg-scroll: rgba(245, 231, 198, 0.98);
}

/* Theme Switch */
.switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 2em;
    cursor: pointer;
    margin-right: 1rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    --background: #20262c;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background);
    transition: 0.5s;
    border-radius: 30px;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 1.4em;
    width: 1.4em;
    border-radius: 50%;
    left: 10%;
    bottom: 15%;
    box-shadow: inset 8px -4px 0px 0px #ececd9, -4px 1px 4px 0px #dadada;
    background: var(--background);
    transition: 0.5s;
}

.decoration {
    position: absolute;
    content: "";
    height: 2px;
    width: 2px;
    border-radius: 50%;
    right: 20%;
    top: 15%;
    background: #e5f041e6;
    backdrop-filter: blur(10px);
    transition: all 0.5s;
    box-shadow: -7px 10px 0 #e5f041e6, 8px 15px 0 #e5f041e6, -17px 1px 0 #e5f041e6,
        -20px 10px 0 #e5f041e6, -7px 23px 0 #e5f041e6, -15px 25px 0 #e5f041e6;
}

.switch input:checked~.decoration {
    transform: translateX(-20px);
    width: 10px;
    height: 10px;
    background: white;
    box-shadow: -12px 0 0 white, -6px 0 0 1.6px white, 5px 15px 0 1px white,
        1px 17px 0 white, 10px 17px 0 white;
}

.switch input:checked+.slider {
    background-color: #5494de;
}

.switch input:checked+.slider:before {
    transform: translateX(100%);
    box-shadow: inset 15px -4px 0px 15px #efdf2b, 0 0 10px 0px #efdf2b;
}

/* Language Toggle Button */
.lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 0.8rem;
    padding: 0;
}

.lang-toggle:hover {
    transform: scale(1.1);
}

.lang-toggle .lang-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Topbar Navigation
   =================================== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--topbar-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 0.8rem 0;
}

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

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

.logo span {
    color: var(--primary);
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -150px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.profile-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
}

.profile-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.profile-img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--background);
    z-index: 1;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.greeting {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.name {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--primary) 40%, transparent);
}

/* Email Tooltip Bubble */
.email-tooltip-wrapper {
    position: relative;
    cursor: pointer;
}

.email-bubble {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-primary);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--primary) 40%, transparent);
    z-index: 100;
}

.email-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--secondary);
}

.email-tooltip-wrapper.active .email-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.email-bubble:hover {
    filter: brightness(1.1);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--primary) 40%, transparent);
}

.cta-button i {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ===================================
   Section Styles
   =================================== */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    justify-content: center;
}

.title-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    font-size: 1.5rem;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: linear-gradient(180deg, var(--background) 0%, var(--background-light) 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--primary);
    font-weight: 600;
}

.about-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.nav-button:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--primary) 30%, transparent);
}

.nav-button i {
    font-size: 1.2rem;
}

/* ===================================
   Gallery Styles (Drawings & Models)
   =================================== */
.drawings {
    background: var(--background-light);
}

.models {
    background: linear-gradient(180deg, var(--background-light) 0%, var(--background) 100%);
}

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

.models-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.gallery-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(17, 31, 53, 0.95));
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.more-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--primary) 40%, transparent);
}

/* ===================================
   Projects Section
   =================================== */
.projects {
    background: var(--background);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.project-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.project-image {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background-light), var(--background-dark));
    padding: 2rem;
}

.project-image img {
    max-height: 100%;
    object-fit: contain;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.project-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.project-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px color-mix(in srgb, var(--primary) 40%, transparent);
}

.coming-soon .project-image {
    background: linear-gradient(135deg, var(--accent), var(--background-dark));
}

.coming-soon-icon {
    font-size: 4rem;
    color: var(--text-muted);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.coming-soon .project-info h3 {
    color: var(--text-muted);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--background-dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

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

/* ===================================
   Popup Styles
   =================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 2rem;
    will-change: opacity;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--background-light);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.popup-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* Folder Popup */
.folder-popup {
    padding: 2rem;
}

.folder-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-right: 3rem;
}

.folder-header i {
    color: var(--primary);
    font-size: 2rem;
}

.folder-section {
    margin-bottom: 1.5rem;
}

.folder-section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.gem-icon {
    color: #FFD700;
    font-size: 1.2rem;
}

.folder-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.folder-gallery.favorites {
    grid-template-columns: repeat(3, 1fr);
}

.folder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.folder-item:hover {
    background: rgba(246, 48, 73, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.folder-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}

.folder-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.folder-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 1.5rem 0;
}

/* Play Store Popup */
.playstore-popup {
    padding: 2rem;
}

.playstore-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.app-icon {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
}

.app-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.developer {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #FFD700;
    font-size: 0.9rem;
}

.app-rating span {
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.screenshots-carousel {
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.carousel-track {
    display: flex;
    gap: 1rem;
}

.carousel-track img {
    height: 250px;
    width: auto;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-track img:hover {
    transform: scale(1.05);
}

.app-description {
    margin-bottom: 1.5rem;
}

.app-description h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.app-description p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.playstore-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #34A853, #0F9D58);
    border: none;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.playstore-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(15, 157, 88, 0.4);
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 2rem;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    transform: scale(0.9);
    transition: var(--transition);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .name {
        font-size: 2.2rem;
    }

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

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

    .title-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

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

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

    .about-buttons {
        flex-direction: column;
        width: 100%;
    }

    .nav-button {
        width: 100%;
        justify-content: center;
    }

    .folder-gallery.favorites {
        grid-template-columns: repeat(2, 1fr);
    }

    .playstore-header {
        flex-direction: column;
        text-align: center;
    }

    .carousel-track img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .section-container {
        padding: 0 1rem;
    }

    .profile-wrapper {
        width: 150px;
        height: 150px;
    }

    .name {
        font-size: 1.8rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .folder-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .folder-gallery.favorites {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}