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

html {
    scroll-behavior:smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

#space-intro {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    z-index:10000;
    display:flex;
    justify-content:center;
    align-items:center;
    animation: intro1 1s ease-out 4s forwards;
    pointer-events: none;
}

        /* #space-intro.hidden {
            display: none;
        } */

/* from above nd below only one is needed and opacity 0 
means it hide everything */
/* later think about hidden.] */

@keyframes intro1 {
    from{
        opacity:1;
    }
    to {
        opacity: 0;
    }
}

.intro-content {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.space-title {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    opacity: 0;
    transform: scale(0.5) rotateX(90deg);
    animation: spac 2s ease-out 0.5s forwards;
    position: relative;
    z-index: 10;
}

@keyframes spac{
    0% {
        opacity: 0;
        transform: scale(0.5);
}
    50% {
        opacity: 1;
}
    100% {
        opacity: 1;
        transform: scale(1) ;
}
}

        .space-subtitle {
            font-size: 1.5rem;
            color: #a78bfa;
            margin-top: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease-out 2s forwards;
            position: relative;
            z-index: 10;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .cosmic-ring {
           position: absolute;
            border: 3px solid rgba(139, 92, 246, 0.5);
            border-radius: 50%;
            top: 50%;
            left: 50%;
        }

        .ring-1 {
            width: 200px;
            height: 200px;
            margin-left: -100px;
            margin-top: -100px;
            animation: expandRing 3s ease-out 0.5s forwards;
        }

        .ring-2 {
            width: 400px;
            height: 400px;
            margin-left: -200px;
            margin-top: -200px;
            animation: expandRing 3s ease-out 0.8s forwards;
        }

        .ring-3 {
            width: 600px;
            height: 600px;
            margin-left: -300px;
            margin-top: -300px;
            animation: expandRing 3s ease-out 1.1s forwards;
        }

        @keyframes expandRing {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                opacity: 0.8;
            }
            100% {
                transform: scale(2.5);
                opacity: 0;
            }
        }

        /* Light Speed Lines */
        .speed-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
            opacity: 0;
            animation: speedLine 1.5s ease-out forwards;
        }

        @keyframes speedLine {
            0% {
                opacity: 0;
                transform: translateX(-100%);
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateX(100%);
            }
        }


        /* Particles burst */
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #8b5cf6;
            border-radius: 50%;
            box-shadow: 0 0 10px #8b5cf6;
            opacity: 0;
            animation: particleBurst 2s ease-out forwards;
        }

        @keyframes particleBurst {
            0% {
                opacity: 0;
                transform: translate(0, 0) scale(0);
            }
            20% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translate(var(--tx), var(--ty)) scale(1);
            }
        }

        /* Starfield Animation */
        #starfield {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        /* Animated Nebula Background */
        .nebula {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -2;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
            animation: nebulaDrift 15s ease-in-out infinite alternate;
            pointer-events: none;
        }

        @keyframes nebulaDrift {
            0% {
                transform: scale(1) rotate(0deg);
                opacity: 0.4;
            }
            100% {
                transform: scale(1.05) rotate(3deg);
                opacity: 0.6;
            }
        }

        /* Floating Asteroids */
        .asteroid {
            position: fixed;
            background: rgba(139, 92, 246, 0.3);
            border-radius: 50%;
            opacity: 0.5;
            z-index: -1;
            pointer-events: none;
        }

        .asteroid-1 {
            width: 8px;
            height: 8px;
            top: 20%;
            left: 10%;
            animation: floatAsteroid1 25s linear infinite;
        }

        .asteroid-2 {
            width: 6px;
            height: 6px;
            top: 60%;
            left: 80%;
            animation: floatAsteroid2 30s linear infinite;
        }

        .asteroid-3 {
            width: 10px;
            height: 10px;
            top: 40%;
            left: 70%;
            animation: floatAsteroid3 35s linear infinite;
        }

        .asteroid-4 {
            width: 7px;
            height: 7px;
            top: 80%;
            left: 20%;
            animation: floatAsteroid1 28s linear infinite reverse;
        }

        .asteroid-5 {
            width: 12px;
            height: 12px;
            top: 30%;
            left: 50%;
            animation: floatDiagonal 40s linear infinite;
        }

        .asteroid-6 {
            width: 5px;
            height: 5px;
            top: 70%;
            left: 60%;
            animation: floatCircular 50s linear infinite;
        }

        @keyframes floatAsteroid1 {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            100% {
                transform: translate(100vw, 50vh) rotate(360deg);
            }
        }

        @keyframes floatAsteroid2 {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            100% {
                transform: translate(-100vw, -50vh) rotate(-360deg);
            }
        }

        @keyframes floatAsteroid3 {
            0% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(-50vw, 30vh) scale(1.5);
            }
            100% {
                transform: translate(-100vw, 60vh) scale(1);
            }
        }

        @keyframes floatDiagonal {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            100% {
                transform: translate(-80vw, 80vh) rotate(720deg);
            }
        }

        @keyframes floatCircular {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(30vw, -20vh) rotate(90deg);
            }
            50% {
                transform: translate(0, -40vh) rotate(180deg);
            }
            75% {
                transform: translate(-30vw, -20vh) rotate(270deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        /* Comets */
        .comet {
            position: fixed;
            width: 3px;
            height: 3px;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 0 10px #8b5cf6, 0 0 20px #8b5cf6;
            z-index: -1;
            pointer-events: none;
        }

        .comet-1 {
            top: 10%;
            left: -10%;
            animation: cometFly1 15s linear infinite;
        }

        .comet-2 {
            top: 50%;
            left: -10%;
            animation: cometFly2 20s linear infinite 5s;
        }

        .comet-3 {
            top: 80%;
            left: -10%;
            animation: cometFly1 18s linear infinite 10s;
        }

        @keyframes cometFly1 {
            0% {
                transform: translate(0, 0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translate(120vw, 60vh);
                opacity: 0;
            }
        }

        @keyframes cometFly2 {
            0% {
                transform: translate(0, 0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translate(120vw, -40vh);
                opacity: 0;
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: transparent;
            padding: 1.5rem 5%;
            z-index: 1000;
            transition: all 0.3s;
            animation: slideDown 0.8s ease-out;
        }

        nav.scrolled {
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 30px rgba(139, 92, 246, 0.3);
            padding: 1rem 5%;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin: 0;
        }

        nav li {
            animation: fadeInNav 0.6s ease-out forwards;
            opacity: 0;
            margin: 0;
        }

        nav li:nth-child(1) { animation-delay: 0.1s; }
        nav li:nth-child(2) { animation-delay: 0.2s; }
        nav li:nth-child(3) { animation-delay: 0.3s; }
        nav li:nth-child(4) { animation-delay: 0.4s; }
        nav li:nth-child(5) { animation-delay: 0.5s; }
        nav li:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInNav {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        nav a {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 1rem;
            display: inline-block;
        }

        nav a:hover, nav a.active {
            color: #8b5cf6;
            transform: translateY(-2px);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: #8b5cf6;
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        nav a:hover::after, nav a.active::after {
            width: 100%;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            position: fixed;
            top: 1rem;
            left: 1rem;
            z-index: 10001;
            background: rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(139, 92, 246, 0.5);
            border-radius: 10px;
            padding: 0.7rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .menu-toggle:hover {
            background: rgba(139, 92, 246, 0.4);
            transform: scale(1.05);
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: #fff;
            margin: 5px 0;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

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

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(10, 5, 20, 0.98);
            backdrop-filter: blur(20px);
            z-index: 10000;
            transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-right: 2px solid rgba(139, 92, 246, 0.3);
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu ul {
            list-style: none;
            padding: 5rem 0 2rem 0;
            margin: 0;
        }

        .mobile-menu li {
            margin: 0;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }

        .mobile-menu a {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 1.2rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            background: rgba(139, 92, 246, 0.2);
            color: #8b5cf6;
            padding-left: 2.5rem;
        }

        .mobile-menu a::before {
            content: '▹';
            position: absolute;
            left: 1rem;
            opacity: 0;
            transition: all 0.3s;
            color: #8b5cf6;
        }

        .mobile-menu a:hover::before,
        .mobile-menu a.active::before {
            opacity: 1;
            left: 1.5rem;
        }

        .mobile-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .mobile-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Content Container */
        .content {
            position: relative;
            z-index: 10;
            padding-top: 100px;
        }

        .section {
            min-height: 100vh;
            padding: 5rem 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Home Section */
        #home {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow-x: auto;
        }

        #home::-webkit-scrollbar {
            height: 5px;
        }

        #home::-webkit-scrollbar-track {
            background: rgba(139, 92, 246, 0.1);
        }

        #home::-webkit-scrollbar-thumb {
            background: rgba(139, 92, 246, 0.5);
            border-radius: 10px;
        }

        .profile-image-container {
            margin-bottom: 2rem;
            position: relative;
            animation: floatAnimation 3s ease-in-out infinite;
        }

        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .profile-image {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            border: 4px solid #8b5cf6;
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 80px rgba(139, 92, 246, 0.3);
            object-fit: cover;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { 
                box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 80px rgba(139, 92, 246, 0.3);
                transform: scale(1);
            }
            50% { 
                box-shadow: 0 0 60px rgba(139, 92, 246, 0.9), 0 0 120px rgba(139, 92, 246, 0.5);
                transform: scale(1.05);
            }
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, #8b5cf6, #ec4899, #8b5cf6);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease infinite;
            margin-bottom: 1.5rem;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: 1.7rem;
            color: #a78bfa;
            margin-bottom: 2.5rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
            font-size: 1.2rem;
            border: 2px solid #8b5cf6;
            padding: 2.5rem;
            border-radius: 15px;
            background: rgba(139, 92, 246, 0.1);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
        }

        .contact-info a {
            color: #a78bfa;
            text-decoration: none;
            transition: all 0.3s;
        }

        .contact-info a:hover {
            color: #8b5cf6;
            transform: translateX(5px);
        }

        /* Scroll Down Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

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

        .scroll-indicator span {
            display: block;
            width: 30px;
            height: 50px;
            border: 2px solid #8b5cf6;
            border-radius: 25px;
            position: relative;
        }

        .scroll-indicator span::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            width: 6px;
            height: 10px;
            background: #8b5cf6;
            border-radius: 3px;
            transform: translateX(-50%);
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% { top: 10px; opacity: 1; }
            100% { top: 30px; opacity: 0; }
        }

        /* Card Style */
        .card {
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid #8b5cf6;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
            transition: all 0.5s;
            transform: translateY(20px);
            opacity: 0;
        }

        .section.visible .card {
            transform: translateY(0);
            opacity: 1;
        }

        .card:nth-child(2) {
            transition-delay: 0.1s;
        }

        .card:nth-child(3) {
            transition-delay: 0.2s;
        }

        .card:nth-child(4) {
            transition-delay: 0.3s;
        }

        .card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
        }

        h2 {
            font-size: 3rem;
            color: #8b5cf6;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
            border-radius: 2px;
        }

        h3 {
            font-size: 1.8rem;
            color: #a78bfa;
            margin-bottom: 1rem;
        }

        /* Coding Profiles */
        .profile-grid {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-top: 2rem;
        }

        .profile-card {
            background: rgba(139, 92, 246, 0.15);
            border: 2px solid #8b5cf6;
            border-radius: 15px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
            width: 80%;
            max-width: 600px;
            opacity: 0;
        }

        .profile-card:nth-child(1) {
            align-self: flex-end;
            margin-right: 8%;
            transform: translateX(150px) rotate(5deg) scale(0.8);
        }

        .profile-card:nth-child(2) {
            align-self: flex-start;
            margin-left: 8%;
            transform: translateX(-150px) rotate(-5deg) scale(0.8);
        }

        .profile-card:nth-child(3) {
            align-self: flex-end;
            margin-right: 8%;
            transform: translateX(150px) rotate(5deg) scale(0.8);
        }

        .section.visible .profile-card {
            transform: translateX(0) rotate(0) scale(1);
            opacity: 1;
        }

        .section.visible .profile-card:nth-child(1) {
            transition-delay: 0.2s;
        }

        .section.visible .profile-card:nth-child(2) {
            transition-delay: 0.5s;
        }

        .section.visible .profile-card:nth-child(3) {
            transition-delay: 0.8s;
        }

        .profile-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
            pointer-events: none;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .profile-card:hover {
            transform: scale(1.08) translateY(-10px);
            box-shadow: 0 15px 50px rgba(139, 92, 246, 0.5);
        }

        .platform-name {
            font-size: 2rem;
            font-weight: bold;
            color: #8b5cf6;
            margin-bottom: 1rem;
        }

        .rating-info {
            font-size: 1.2rem;
            margin: 0.5rem 0;
        }

        .current-rating {
            color: #10b981;
            font-weight: bold;
        }

        .max-rating {
            color: #f59e0b;
            font-weight: bold;
        }

        .profile-link {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.7rem 1.5rem;
            background: #8b5cf6;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s;
            font-weight: 600;
            position: relative;
            z-index: 100;
        }

        .profile-link:hover {
            background: #7c3aed;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(139, 92, 246, 0.6);
        }

        /* Skills & Education */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .info-item {
            padding: 1rem;
            background: rgba(139, 92, 246, 0.1);
            border-left: 4px solid #8b5cf6;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .info-item:hover {
            background: rgba(139, 92, 246, 0.2);
            transform: translateX(10px);
        }

        ul {
            list-style: none;
            padding-left: 1rem;
        }

        li {
            margin: 1rem 0;
            padding-left: 1.5rem;
            position: relative;
            transition: all 0.3s;
            line-height: 1.8;
        }

        li:hover {
            transform: translateX(5px);
            color: #a78bfa;
        }

        li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: #8b5cf6;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .highlight {
            color: #8b5cf6;
            font-weight: bold;
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 0 4px;
            position: relative;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #8b5cf6, #ec4899);
            animation: shimmer 2s infinite;
        }

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

        /* Accomplishment list animation */
        #accomplishments .card {
            overflow: visible;
        }

        #accomplishments li {
            transform: translateX(-50px);
            opacity: 0;
            transition: all 0.6s ease-out;
        }

        #accomplishments.visible li {
            transform: translateX(0);
            opacity: 1;
        }

        #accomplishments.visible li:nth-child(1) { transition-delay: 0.1s; }
        #accomplishments.visible li:nth-child(2) { transition-delay: 0.2s; }
        #accomplishments.visible li:nth-child(3) { transition-delay: 0.3s; }
        #accomplishments.visible li:nth-child(4) { transition-delay: 0.4s; }
        #accomplishments.visible li:nth-child(5) { transition-delay: 0.5s; }
        #accomplishments.visible li:nth-child(6) { transition-delay: 0.6s; }
        #accomplishments.visible li:nth-child(7) { transition-delay: 0.7s; }

        /* Responsive */
        @media (max-width: 1000px) {
            nav {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .mobile-menu,
            .mobile-overlay {
                display: block;
            }

            #home {
                overflow-x: auto;
                flex-wrap: nowrap;
                min-width: 100%;
            }

            .hero-title {
                font-size: 2rem;
                white-space: nowrap;
            }

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

            .contact-info {
                font-size: 0.85rem;
                padding: 1.2rem;
                min-width: 280px;
            }

            .space-title {
                font-size: 2.5rem;
                letter-spacing: 0.3rem;
            }

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

            h2 {
                font-size: 2rem;
            }

            .profile-card {
                max-width: 100%;
                width: 95%;
                padding: 1.5rem;
            }

            .profile-card:nth-child(1),
            .profile-card:nth-child(2),
            .profile-card:nth-child(3) {
                align-self: center;
                margin-left: 0;
                margin-right: 0;
            }

            .platform-name {
                font-size: 1.5rem;
            }

            .rating-info {
                font-size: 1rem;
            }

            .section {
                padding: 2rem 5%;
            }

            .content {
                padding-top: 50px;
            }

            .profile-image {
                width: 160px;
                height: 160px;
            }

            .profile-image-container {
                margin-bottom: 1rem;
            }

            .hero-title {
                font-size: 2.2rem;
                white-space: nowrap;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                white-space: nowrap;
            }

            .contact-info {
                font-size: 0.9rem;
                padding: 1.3rem;
                min-width: 280px;
                gap: 1rem;
            }
        }
