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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    overflow-x: hidden;
}

::selection {
    background: #6366F1;
    color: white;
}

/* Navbar Blur */

header {
    transition: .4s;
}

/* Hover Underline */

nav ul li a {
    position: relative;
}

nav ul li a::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #6366F1;

    transition: .3s;
}

nav ul li a:hover::after {

    width: 100%;

}

/* ================= Scroll Progress ================= */

#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 9999;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
}

#progress-bar {

    width: 0%;

    height: 100%;

    border-radius: 20px;

    background: linear-gradient(90deg,
            #14B8A6,
            #3B82F6,
            #8B5CF6);

    box-shadow:
        0 0 10px rgba(20, 184, 166, .5),
        0 0 20px rgba(99, 102, 241, .4);

    transition: width .15s linear;
}

/* Chrome / Edge */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #09090B;
}

::-webkit-scrollbar-thumb {

    border-radius: 20px;

    background: linear-gradient(180deg,
            #14B8A6,
            #3B82F6,
            #8B5CF6);

    border: 2px solid #09090B;
}

::-webkit-scrollbar-thumb:hover {

    background: linear-gradient(180deg,
            #2DD4BF,
            #60A5FA,
            #A78BFA);
}

/* ================= NAVBAR ================= */

.nav-link {

    color: #94A3B8;

    position: relative;

    transition: .35s;

}

.nav-link:hover {

    color: #F8FAFC;

}

.nav-link::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #14B8A6;

    border-radius: 20px;

    transition: .35s;

}

.nav-link:hover::after {

    width: 100%;

}

.mobile-link {

    color: #CBD5E1;

    transition: .3s;

}

.mobile-link:hover {

    color: #14B8A6;

}

/*================ HERO =================*/

.gradient-text {

    background: linear-gradient(90deg,
            #14B8A6,
            #60A5FA,
            #8B5CF6,
            #14B8A6);

    background-size: 300%;

    animation: gradient 8s linear infinite;

    -webkit-background-clip: text;

    color: transparent;

}

@keyframes gradient {

    0% {

        background-position: 0%;

    }

    100% {

        background-position: 300%;

    }

}

.skill-pill {

    padding: 12px 22px;

    border-radius: 999px;

    border: 1px solid #24324D;

    background: #101827;

    transition: .35s;

    cursor: pointer;

}

.skill-pill:hover {

    transform: translateY(-5px);

    border-color: #14B8A6;

    box-shadow: 0 10px 30px rgba(20, 184, 166, .25);

}

.hero-btn-primary {

    display: flex;

    align-items: center;

    padding: 16px 30px;

    border-radius: 999px;

    font-weight: 600;

    color: white;

    background: linear-gradient(90deg, #14B8A6, #8B5CF6);

    transition: .35s;

}

.hero-btn-primary:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(20, 184, 166, .35);

}

.hero-btn-secondary {

    display: flex;

    align-items: center;

    padding: 16px 30px;

    border-radius: 999px;

    border: 1px solid #24324D;

    background: #101827;

    transition: .35s;

}

.hero-btn-secondary:hover {

    transform: translateY(-5px);

    border-color: #14B8A6;

}

.social-btn {

    width: 58px;

    height: 58px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    background: #101827;

    border: 1px solid #24324D;

    transition: .35s;

}

.social-btn:hover {

    transform: translateY(-6px) rotate(-6deg);

    color: #14B8A6;

    border-color: #14B8A6;

    box-shadow: 0 15px 35px rgba(20, 184, 166, .25);

}

/*========== BENTO =========*/

.bento-card {

    position: relative;

    padding: 30px;

    border-radius: 28px;

    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(20, 184, 166, 0.08), transparent 40%), #101827;

    border: 1px solid #24324D;

    transition: .4s;

    overflow: hidden;

    min-height: 145px;
    padding: 24px;

}

.bento-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(135deg,

            transparent,

            rgba(20, 184, 166, .08),

            transparent,

            rgba(139, 92, 246, .08));

    opacity: 0;

    transition: .4s;

}

.bento-card:hover::before {

    opacity: 1;

}

.bento-card:hover {

    transform:

        translateY(-10px) scale(1.02);

    border-color: #14B8A6;

    box-shadow:

        0 25px 60px rgba(20, 184, 166, .2);

}

.bento-card h3 {
    margin-top: 20px;
    font-size: 28px;
}

.bento-card p {
    margin-top: 8px;
}

.arrow {

    position: absolute;

    right: 25px;

    top: 20px;

    font-size: 24px;

    transition: .35s;

}

.bento-card:hover .arrow {

    transform:

        translate(5px, -5px);

}

.project-btn {

    display: inline-block;

    margin-top: 35px;

    padding: 14px 24px;

    border-radius: 999px;

    background:

        linear-gradient(90deg,

            #14B8A6,

            #8B5CF6);

    transition: .35s;

}

.project-btn:hover {

    transform: translateY(-4px);

}

@keyframes floating {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

.floating {

    animation: floating 5s ease-in-out infinite;

}

.delay1 {

    animation-delay: 1s;

}

.delay2 {

    animation-delay: 2s;

}

.delay3 {

    animation-delay: 3s;

}

.delay4 {

    animation-delay: 4s;

}

/*================ TERMINAL ================*/

/*================ TERMINAL =================*/

.terminal-header {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 16px 22px;

    background: #111827;

    border-bottom: 1px solid #24324D;
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #FF5F57;
}

.yellow {
    background: #FEBC2E;
}

.green {
    background: #28C840;
}

.terminal-title {
    margin-left: 10px;
    color: #94A3B8;
    font-size: 13px;
}

#terminal {
    padding: 18px 22px;
    color: #E2E8F0;
    font-size: 15px;
    line-height: 1.45;
    font-family: "JetBrains Mono", Consolas, monospace;
    white-space: pre-wrap;
    margin: 0;
}



.cursor {
    color: #14B8A6;
    animation: blink .8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.terminal-card {
    height: 360px;

    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(20, 184, 166, 0.08), transparent 40%), #101827;
    border: 1px solid #24324D;
    border-radius: 28px;

    overflow: hidden;
    position: relative;

    transition: all .35s ease;
}

.terminal-card:hover {
    border-color: #14B8A6;
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(20, 184, 166, .18);
}

.terminal-body {
    padding: 24px;
    background: #0B1220;
    height: calc(100% - 60px);
    overflow: hidden;
}

.terminal-body::-webkit-scrollbar {
    display: none;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.prompt {
    color: #22C55E;
    font-weight: 600;
}

.command {
    color: #F8FAFC;
}

.output {
    color: #94A3B8;
    margin-left: 24px;
    margin-bottom: 12px;
}

.cursor {
    width: 8px;
    height: 18px;
    background: #22C55E;
    display: inline-block;
    animation: blink .8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

#terminal-content {

    transition: .25s;

}





.timeline {

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.timeline-line {

    position: absolute;

    left: 8%;

    right: 8%;

    top: 12px;

    height: 2px;

    background: #24324D;

}

.timeline-node {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    z-index: 5;

}

.timeline-node span {

    margin-top: 22px;

    color: #CBD5E1;

    font-weight: 600;

}

.dot {

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: #09090B;

    border: 4px solid #14B8A6;

    transition: .35s;

    cursor: pointer;

}

.dot:hover,
.timeline-node:hover .dot {

    transform: scale(1.3);

    box-shadow: 0 0 25px #14B8A6;

    background: #14B8A6;

}

.active {

    background: #14B8A6;

}

.popup {

    position: absolute;

    bottom: 70px;

    width: 250px;

    background: rgba(16, 24, 39, 0.75);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(36, 50, 77, 0.6);

    border-radius: 18px;

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

}

.popup h3 {

    margin-bottom: 12px;

    color: white;

}

.popup p {

    color: #94A3B8;

    margin: 6px 0;

}

.timeline-node:hover .popup {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dashboard-card {
    background: #101827;
    border: 1px solid #24324D;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
}

.dashboard-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 30px;

    border-bottom: 1px solid #24324D;

    transition: .35s;

}

.dashboard-row:last-child {

    border-bottom: none;

}

.dashboard-row:hover {

    background: #131F33;

    padding-left: 38px;

}

.label {

    color: #CBD5E1;

    font-size: 18px;

    font-weight: 500;

}

.value {

    color: #14B8A6;

    font-size: 24px;

    font-weight: 700;

}

.learning {

    color: #60A5FA;

    font-size: 18px;

}

.status {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #22C55E;

    font-weight: 600;

}

.status-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: #22C55E;

    box-shadow: 0 0 15px #22C55E;

    animation: pulse 1.5s infinite;

}

@keyframes pulse {

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

    50% {
        transform: scale(1.5);
        opacity: .6;
    }

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

}

/*================ PIPELINE CARD =================*/

.pipeline-card {
    background: #101827;
    border: 1px solid #24324D;
    border-radius: 28px;
    padding: 28px 36px;
    overflow: hidden;
}

/*================ TITLE =================*/

.pipeline-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.pipeline-title span {
    color: #14B8A6;
    font-size: 18px;
    font-weight: 700;
}

.pipeline-title h2 {
    font-size: 32px;
    font-weight: 800;
}

/*================ PIPELINE =================*/

.pipeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/*================ STEP =================*/

.pipeline-step {

    flex: 1;

    text-align: center;

    padding: 10px 6px;

    transition: .3s;

}

.pipeline-step:hover {

    transform: translateY(-5px);

}

/*================ ICON =================*/

.step-icon {

    width: 52px;

    height: 52px;

    margin: 0 auto 12px;

    border-radius: 14px;

    background: #0B1220;

    border: 1px solid #24324D;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 24px;

}

/*================ TEXT =================*/

.pipeline-step h3 {

    font-size: 18px;

    font-weight: 700;

    color: #F8FAFC;

    margin-bottom: 6px;

}

.pipeline-step p {

    color: #94A3B8;

    font-size: 14px;

    line-height: 1.4;

}

/*================ ARROW =================*/

.pipeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
}

.pipeline-arrow i {
    font-size: 24px;
    background: linear-gradient(90deg, #14B8A6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: arrowMove 1.2s ease-in-out infinite;
}

@keyframes arrowMove {
    0% {
        transform: translateX(0);
        opacity: .7;
    }

    50% {
        transform: translateX(8px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: .7;
    }
}

@keyframes arrowMove {

    0% {
        transform: translateX(0);
    }

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

    100% {
        transform: translateX(0);
    }
}

/*================ DASHBOARD =================*/

.dashboard-section {

    margin-top: 80px;

}

.section-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 40px;

}

.section-heading span {

    color: #14B8A6;

    font-size: 20px;

    font-weight: 700;

}

.section-heading h2 {

    font-size: 38px;

    font-weight: 800;

    color: #F8FAFC;

}

.heading-line {

    flex: 1;

    height: 1px;

    background: #24324D;

}

/* GRID */

.stats-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

}

.stat-card {

    background: #101827;

    border: 1px solid #24324D;

    border-radius: 22px;

    padding: 28px;

    transition: .35s;

    position: relative;

    overflow: hidden;

}

.stat-card:hover {

    transform: translateY(-8px);

    border-color: #14B8A6;

    box-shadow: 0 20px 45px rgba(20, 184, 166, .12);

}

.stat-card.large {

    grid-column: span 1;

}

.stat-icon {

    width: 56px;

    height: 56px;

    border-radius: 16px;

    background: #0B1220;

    border: 1px solid #24324D;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    color: #14B8A6;

    margin-bottom: 18px;

}

.stat-card h3 {

    font-size: 42px;

    font-weight: 800;

    background: linear-gradient(90deg, #14B8A6, #60A5FA, #8B5CF6);

    -webkit-background-clip: text;

    color: transparent;

    margin-bottom: 8px;

}

.stat-card h4 {

    font-size: 24px;

    color: #F8FAFC;

    margin-bottom: 12px;

}

.stat-card p {

    color: #94A3B8;

    font-size: 17px;

    line-height: 1.6;

}

.learning-text {

    color: #60A5FA !important;

    font-weight: 600;

}

.status-live {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #22C55E;

    font-size: 18px;

    font-weight: 700;

}

.live-dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #22C55E;

    animation: pulse 1.6s infinite;

}

@keyframes pulse {

    0% {

        box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);

    }

    100% {

        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);

    }

}

.dashboard-section {
    max-width: 1200px;
    /* same width as Journey */
    margin: 70px auto;
}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;

}

.stat-card {

    background: #101827;

    border: 1px solid #24324D;

    border-radius: 18px;

    padding: 22px;

    text-align: center;

    transition: .35s;

}

.stat-card:hover {

    transform: translateY(-6px);

    border-color: #14B8A6;

    box-shadow: 0 15px 35px rgba(20, 184, 166, .12);

}

.stat-card i {

    font-size: 28px;

    color: #14B8A6;

    margin-bottom: 18px;

}

.stat-card h3 {

    font-size: 34px;

    font-weight: 800;

    margin-bottom: 8px;

    background: linear-gradient(90deg, #14B8A6, #60A5FA);

    -webkit-background-clip: text;

    color: transparent;

}

.stat-card span {

    color: #94A3B8;

    font-size: 15px;

}

.pipeline-wrapper {
    max-width: 1200px;
    /* Same width as dashboard/journey */
    margin: 70px auto 0;
}

/* ================= PROJECTS ================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    height: 380px;
    perspective: 1200px;
}

.project-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform .8s ease;
}

.project-card:hover .project-inner,
.project-card.flipped .project-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK */

.project-front,
.project-back {
    position: absolute;
    inset: 0;
    border-radius: 26px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid #24324D;
    background: #101827;
}

/* ================= FRONT ================= */

.project-front {
    display: flex;
    flex-direction: column;
}

/* Screenshot */

.project-image {
    width: 100%;
    height: 70%;
    object-fit: cover;
    object-position: top center;
    transition: .5s;
}

.project-logo {
    mix-blend-mode: screen;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

/* Footer */

.front-content {
    height: 30%;
    padding: 20px 24px;
    border-top: 1px solid #24324D;
    background: #101827;
}

.project-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.stack-box {
    text-align: right;
}

.stack-title {
    display: block;
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stack-icons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.stack-icons img {
    width: 28px;
    height: 28px;
    transition: .3s;
}

.stack-icons img:hover {
    transform: translateY(-4px) scale(1.1);
}

.front-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
}

.front-content p {
    color: #CBD5E1;
    font-size: 15px;
    margin-bottom: 12px;
}

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

.tech-tags span {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #24324D;
    background: #0B1220;
    color: #E2E8F0;
    font-size: 12px;
}

/* ================= BACK ================= */

.project-back {
    transform: rotateY(180deg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-back h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.project-back p {
    color: #94A3B8;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 18px;
}

.project-back ul {
    list-style: none;
    margin-bottom: 25px;
}

.project-back li {
    margin-bottom: 10px;
    color: #E2E8F0;
    font-size: 15px;
}

/* Buttons */

.project-buttons {
    display: flex;
    gap: 15px;
}

.project-buttons a {
    flex: 1;
    padding: 12px;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    background: #0B1220;
    border: 1px solid #24324D;
    color: #E2E8F0;
    transition: .3s;
}

.project-buttons a:hover {
    background: #14B8A6;
    border-color: #14B8A6;
    color: #fff;
    transform: translateY(-3px);
}

.tech-layout {

    display: grid;

    grid-template-columns: 45% 55%;

    gap: 40px;

    align-items: center;

}

.tech-cards {

    display: grid;

    gap: 18px;

}

.tech-card {

    background: #101827;

    border: 1px solid #24324D;

    padding: 18px 22px;
    border-radius: 18px;

    transition: .4s;

}

.tech-card:hover {

    transform: translateY(-8px);

    border-color: #14B8A6;

    box-shadow: 0 15px 40px rgba(20, 184, 166, .12);

}

.tech-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.tech-list {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.tech-list span {

    padding: 6px 12px;
    font-size: 13px;
    border-radius: 999px;

    border: 1px solid #24324D;

    background: #0B1220;

    color: #CBD5E1;

    transition: .35s;

}

.tech-list span:hover {

    background: #14B8A6;

    color: white;

}

/* ==============================
   GALAXY CONTAINER
============================== */

.galaxy-container {
    position: relative;
    width: 100%;
    height: 720px;
    background: #0B1220;
    border: 1px solid #24324D;
    border-radius: 24px;
    overflow: hidden;
}

/* ==============================
   PLANETS
============================== */

.planet {

    position: absolute;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #111827;

    border: 2px solid #2E3B55;

    color: #fff;

    font-weight: 600;

    cursor: pointer;

    user-select: none;

    transition:
        transform .3s,
        box-shadow .3s,
        border-color .3s;

    will-change: transform, left, top;

}

/* ---------- Sizes ---------- */

.planet.large {

    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 22px;

}

.planet.medium {

    width: 78px;
    height: 78px;
    border-radius: 50%;
    font-size: 16px;

}

.planet.small {

    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 13px;

}

/* ==============================
   CATEGORY COLORS
============================== */

.programming:hover {

    border-color: #22C55E;

    box-shadow: 0 0 25px rgba(34, 197, 94, .35);

}

.frontend:hover {

    border-color: #14B8A6;

    box-shadow: 0 0 25px rgba(20, 184, 166, .35);

}

.backend:hover {

    border-color: #8B5CF6;

    box-shadow: 0 0 25px rgba(139, 92, 246, .35);

}

.ai:hover {

    border-color: #EC4899;

    box-shadow: 0 0 25px rgba(236, 72, 153, .35);

}

.database:hover {

    border-color: #F59E0B;

    box-shadow: 0 0 25px rgba(245, 158, 11, .35);

}

.platform:hover {

    border-color: #3B82F6;

    box-shadow: 0 0 25px rgba(59, 130, 246, .35);

}

.planet:hover {

    transform: scale(1.12);

    z-index: 100;

}

/* ==============================
   FLOAT
============================== */

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

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

}

/* ==============================
   STARS
============================== */

.galaxy-container::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(#14B8A622 1px, transparent 1px);

    background-size: 40px 40px;

    opacity: .35;

    animation: starsMove 30s linear infinite;

}

@keyframes starsMove {

    from {
        background-position: 0 0;
    }

    to {
        background-position: 120px 120px;
    }

}

.skill-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    transition: .35s;
}

/* Programming */
.programming-title {
    color: #22C55E;
}

/* Frontend */
.frontend-title {
    color: #14B8A6;
}

/* Backend */
.backend-title {
    color: #8B5CF6;
}

/* AI */
.ai-title {
    color: #EC4899;
}

/* Database */
.database-title {
    color: #F59E0B;
}

.platform-title {
    color: #3B82F6;
}

.frontend-title {
    background: linear-gradient(90deg, #14B8A6, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.backend-title {
    background: linear-gradient(90deg, #8B5CF6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-title {
    background: linear-gradient(90deg, #EC4899, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.database-title {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.programming-title {
    background: linear-gradient(90deg, #22C55E, #16A34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.galaxy-header {
    text-align: center;
    margin-bottom: 28px;
}

.galaxy-header h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.galaxy-header p {
    color: #94A3B8;
    font-size: 16px;
}

/* ========================= */
/* ACHIEVEMENTS */
/* ========================= */

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.achievement-card {

    position: relative;
    overflow: hidden;

    background: #101827;
    border: 1px solid #24324D;
    border-radius: 26px;

    padding: 35px;

    transition: .45s;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 340px;

}

/* Glow Effect */

.achievement-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg,
            rgba(20, 184, 166, .08),
            rgba(139, 92, 246, .08));

    opacity: 0;

    transition: .45s;

}

.achievement-card:hover {

    transform: translateY(-12px);

    border-color: #14B8A6;

    box-shadow:
        0 20px 60px rgba(20, 184, 166, .15);

}

.achievement-card:hover::before {

    opacity: 1;

}

/* Icon */

.achievement-icon {

    width: 72px;
    height: 72px;

    border-radius: 20px;

    background: #0B1220;

    border: 1px solid #24324D;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 34px;

    margin-bottom: 28px;

    transition: .4s;

}

.achievement-card:hover .achievement-icon {

    transform: rotate(-10deg) scale(1.12);

}

/* Number */

.achievement-number {

    font-size: 56px;

    font-weight: 800;

    color: #14B8A6;

    margin-bottom: 10px;

    line-height: 1;

}

.achievement-number1 {

    font-size: 56px;

    font-weight: 800;

    color: #14B8A6;

    margin-bottom: 10px;

    line-height: 1;

}

/* Heading */

.achievement-card h4 {

    font-size: 28px;

    font-weight: 700;

    margin-bottom: 16px;

    color: #fff;

}

/* Description */

.achievement-card p {

    color: #94A3B8;

    line-height: 1.7;

    font-size: 16px;

    margin-bottom: 35px;

}

/* Button */

.achievement-card a {

    align-self: flex-start;

    text-decoration: none;

    color: #fff;

    border: 1px solid #24324D;

    padding: 12px 24px;

    border-radius: 999px;

    transition: .35s;

    font-weight: 600;

}

.achievement-card a:hover {

    background: #14B8A6;

    color: #fff;

    border-color: #14B8A6;

    transform: translateY(-3px);

}

/* Small floating circle */

.achievement-card::after {

    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background: rgba(20, 184, 166, .05);

    top: -70px;
    right: -70px;

    transition: .45s;

}

.achievement-card:hover::after {

    transform: scale(1.3);

}

/* Responsive */

@media(max-width:900px) {

    .achievement-grid {

        grid-template-columns: 1fr;

    }

}

.achievement-card {

    opacity: 0;

    transform: translateY(60px);

}

.show-card {

    opacity: 1;

    transform: translateY(0);

    transition:

        opacity .8s,

        transform .8s;

}

.achievement-card::before {

    content: "";

    position: absolute;

    top: -120%;

    left: -60%;

    width: 40%;

    height: 300%;

    background:

        linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .08),

            transparent);

    transform: rotate(25deg);

    transition: .8s;

}

.achievement-card:hover::before {

    left: 140%;

}

.achievement-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

}

.achievement-card {

    min-height: 360px;

}

/* ==========================================
   DEVELOPER PROFILES
========================================== */

.profiles-subtitle {
    text-align: center;
    color: #94A3B8;
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Grid */

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

/* Card */

.profile-card {

    position: relative;
    overflow: hidden;

    background: #101827;
    border: 1px solid #24324D;
    border-radius: 20px;

    min-height: 185px;
    padding: 22px 14px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    text-decoration: none;

    transition: .4s ease;
}

/* Gradient Overlay */

.profile-card::before {

    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(135deg,
            rgba(255, 255, 255, .04),
            transparent);

    opacity: 0;
    transition: .4s;

}

.profile-card:hover::before {

    opacity: 1;

}

/* Floating Circle */

.profile-card::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    top: -70px;
    right: -70px;

    opacity: .08;

    transition: .45s;

}

.profile-card:hover::after {

    transform: scale(1.25);

}

.profile-card:hover {

    transform: translateY(-8px);

}

/* ===================================
   ICON
=================================== */

.profile-icon {

    width: 56px;
    height: 56px;

    border-radius: 16px;

    background: #0B1220;
    border: 1px solid #24324D;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 15px;

    transition: .35s;

}

.profile-icon i {

    font-size: 26px;

}

.profile-icon img {

    width: 34px;
    height: 34px;
    object-fit: contain;

    transition: .35s;

}

.profile-card:hover .profile-icon {

    transform: rotate(-8deg) scale(1.12);

}

.profile-card:hover .profile-icon img {

    transform: scale(1.15);

}

/* ===================================
   TEXT
=================================== */

.profile-card h3 {

    color: #fff;

    font-size: 18px;

    margin-bottom: 6px;

    font-weight: 700;

}

.profile-card p {

    color: #94A3B8;

    font-size: 13px;

    line-height: 1.5;

}

/* ===================================
   PLATFORM COLORS
=================================== */

/* LeetCode */

.leetcode:hover {

    border-color: #FFA116;

    box-shadow: 0 18px 40px rgba(255, 161, 22, .18);

}

.leetcode::after {

    background: #FFA116;

}

/* GitHub */

.github:hover {

    border-color: #ffffff;

    box-shadow: 0 18px 40px rgba(255, 255, 255, .12);

}

.github::after {

    background: #ffffff;

}

/* HackerRank */

.hackerrank:hover {

    border-color: #00EA64;

    box-shadow: 0 18px 40px rgba(0, 234, 100, .20);

}

.hackerrank::after {

    background: #00EA64;

}

/* CodeChef */

.codechef:hover {

    border-color: #5B4638;

    box-shadow: 0 18px 40px rgba(91, 70, 56, .25);

}

.codechef::after {

    background: #5B4638;

}

/* GeeksforGeeks */

.gfg:hover {

    border-color: #2F8D46;

    box-shadow: 0 18px 40px rgba(47, 141, 70, .22);

}

.gfg::after {

    background: #2F8D46;

}

/* LinkedIn */

.linkedin:hover {

    border-color: #0A66C2;

    box-shadow: 0 18px 40px rgba(10, 102, 194, .22);

}

.linkedin::after {

    background: #0A66C2;

}

/* ===================================
   RESUME BUTTON
=================================== */

.resume-box {

    margin-top: 50px;

    display: flex;
    justify-content: center;

}

.resume-box a {

    padding: 16px 34px;

    background: #101827;

    border: 1px solid #24324D;

    border-radius: 999px;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.resume-box a:hover {

    background: #14B8A6;

    border-color: #14B8A6;

    transform: translateY(-4px);

}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:1400px) {

    .profiles-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}

@media(max-width:768px) {

    .profiles-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



.contact-heading {
    text-align: center;
    margin-bottom: 45px;
}

.contact-heading h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-heading p {
    color: #94A3B8;
    font-size: 18px;
}

.contact-card {

    background: #101827;

    border: 1px solid #24324D;

    border-radius: 28px;

    padding: 45px;

    text-align: center;

    transition: .4s;

}

.contact-card:hover {

    border-color: #14B8A6;

    box-shadow: 0 20px 60px rgba(20, 184, 166, .12);

}

.contact-profile img {

    width: 120px;
    height: 120px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #14B8A6;

    margin-bottom: 22px;

}

.contact-profile h2 {

    font-size: 34px;

    margin-bottom: 8px;

}

.contact-profile p {

    color: #94A3B8;

    margin-bottom: 20px;

}

.availability {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #0B1220;

    border: 1px solid #24324D;

    padding: 10px 20px;

    border-radius: 999px;

    color: #14B8A6;

    font-weight: 600;

}

.status-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #22C55E;

    box-shadow: 0 0 12px #22C55E;

}

.contact-card hr {

    border: none;

    height: 1px;

    background: #24324D;

    margin: 35px 0;

}

.contact-details {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}

.detail {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    font-size: 18px;

}

.detail i {

    color: #14B8A6;

    font-size: 20px;

}

.social-links {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-bottom: 35px;

}

.social-links a {

    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: #0B1220;

    border: 1px solid #24324D;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 22px;

    transition: .35s;

}

.social-links a:hover {

    transform: translateY(-6px);

    border-color: #14B8A6;

    color: #14B8A6;

}

.resume-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 16px 36px;

    border-radius: 999px;

    background: #14B8A6;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.resume-btn:hover {

    transform: translateY(-5px);

    background: #0EA5A4;

}

@media(max-width:768px) {

    .contact-details {

        grid-template-columns: 1fr;

    }

    .contact-card {

        padding: 30px;

    }

    .contact-profile h2 {

        font-size: 28px;

    }

}


/*==========================
        FOOTER
===========================*/

.footer {

    margin-top: 120px;

    padding: 70px 20px 35px;

    border-top: 1px solid #24324D;

    background: #09090B;

}

.footer-container {

    max-width: 1200px;

    margin: auto;

    text-align: center;

}

.footer h2 {

    font-size: 34px;

    margin-bottom: 12px;

    color: #fff;

}

.footer p {

    color: #94A3B8;

    font-size: 16px;

}

.footer-social {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin: 35px 0;

}

.footer-social a {

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: #101827;

    border: 1px solid #24324D;

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    font-size: 20px;

    transition: .35s;

}

.footer-social a:hover {

    transform: translateY(-6px);

    border-color: #14B8A6;

    color: #14B8A6;

    box-shadow: 0 10px 25px rgba(20, 184, 166, .25);

}

.back-top {

    width: 60px;

    height: 60px;

    margin: 20px auto 35px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #14B8A6;

    color: white;

    text-decoration: none;

    font-size: 20px;

    transition: .35s;

}

.back-top:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(20, 184, 166, .3);

}

.footer-bottom {

    border-top: 1px solid #24324D;

    padding-top: 25px;

}

.footer-bottom span {

    color: #EF4444;

}

@media(max-width:768px) {

    .footer h2 {

        font-size: 28px;

    }

    .footer-social {

        flex-wrap: wrap;

    }

}

.cursor-ring {

    position: fixed;

    width: 34px;
    height: 34px;

    border: 2px solid #14B8A6;

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 99999;

    transition:
        width .25s,
        height .25s,
        border-color .25s,
        background .25s;

    backdrop-filter: blur(2px);

}

@media (max-width: 768px),
(pointer: coarse) {
    .cursor-ring {
        display: none !important;
    }
}

/* DO NOT hide the system cursor */

body {

    cursor: default;

}

/* ============================
      GITHUB ACTIVITY GRID
============================ */


.github-heatmap-wrapper {

    background: #0B1220;

    border: 1px solid #24324D;

    border-radius: 20px;

    padding: 20px;

    overflow-x: auto;

}


.github-chart-shell {

    background: #0B1220;

    border: 1px solid #24324D;

    border-radius: 20px;

    padding: 16px;

    overflow: hidden;

}


.github-chart-image {

    display: block;

    width: 100%;

    height: auto;

    border-radius: 12px;

}


.github-months {

    display: grid;

    grid-template-columns: repeat(53, 12px);

    gap: 4px;

    margin-left: 42px;

    margin-bottom: 10px;

    color: #94A3B8;

    font-size: 11px;

}


.github-days {

    display: grid;

    grid-template-rows: repeat(7, 12px);

    gap: 4px;

    color: #94A3B8;

    font-size: 10px;

}


.github-grid-container {

    display: grid;

    grid-template-rows: repeat(7, 12px);

    grid-auto-flow: column;

    grid-auto-columns: 12px;

    gap: 4px;

}


.github-box {

    width: 12px;

    height: 12px;

    border-radius: 3px;

    transition: .25s;

}


.github-box:hover {

    transform: scale(1.7);

    box-shadow: 0 0 12px #14B8A6;

}


/* colors */

.level-0 {

    background: #161B22;

}

.level-1 {

    background: #0E4429;

}

.level-2 {

    background: #006D32;

}

.level-3 {

    background: #26A641;

}

.level-4 {

    background: #39D353;

}

/* Interactive Bridge Highlights */
.planet.highlighted {
    transform: scale(1.12);
    z-index: 100;
}

.planet.highlighted.programming {
    border-color: #22C55E;
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.45);
}

.planet.highlighted.frontend {
    border-color: #14B8A6;
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.45);
}

.planet.highlighted.backend {
    border-color: #8B5CF6;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.45);
}

.planet.highlighted.ai {
    border-color: #EC4899;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.45);
}

.planet.highlighted.database {
    border-color: #F59E0B;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.45);
}

.planet.highlighted.platform {
    border-color: #3B82F6;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.45);
}

.tech-card.highlighted-card {
    transform: translateY(-8px) scale(1.02);
    border-color: #14B8A6;
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.18);
}

/* ====================================================
   PROJECT FILTERS
   ==================================================== */
.filter-btn {
    padding: 10px 22px;
    border-radius: 999px;
    background: #0B1220;
    border: 1px solid #24324D;
    color: #94A3B8;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-btn:hover {
    color: #fff;
    border-color: #14B8A6;
    background: rgba(20, 184, 166, 0.05);
}

.filter-btn.active {
    color: #070B14;
    background: #14B8A6;
    border-color: #14B8A6;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

/* Project Card filter animation */
.project-card {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.project-card.hide-card {
    display: none;
}

/* ====================================================
   INFINITE TECH MARQUEE
   ==================================================== */
.tech-marquee-container {
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.tech-marquee-items {
    animation: marquee 25s linear infinite;
}

.ticker-item {
    font-size: 14px;
    font-weight: 600;
    color: #94A3B8;
    background: #101827;
    border: 1px solid #24324D;
    padding: 8px 18px;
    border-radius: 999px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.ticker-item:hover {
    color: #14B8A6;
    border-color: #14B8A6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ====================================================
   PRELOADER
   ==================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #070B14;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.code-bracket {
    color: #14B8A6;
    animation: bracketPulse 1.5s infinite ease-in-out;
}

.code-text {
    background: linear-gradient(90deg, #14B8A6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-bar-bg {
    width: 180px;
    height: 3px;
    background: rgba(36, 50, 77, 0.4);
    border-radius: 99px;
    margin: 0 auto 16px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #14B8A6, #8B5CF6);
    border-radius: 99px;
    animation: loadProgress 0.8s ease-in-out forwards;
}

.preloader-status {
    font-family: "JetBrains Mono", Consolas, monospace;
    font-size: 13px;
    color: #94A3B8;
    letter-spacing: 1px;
    animation: statusPulse 1.2s infinite ease-in-out;
}

@keyframes bracketPulse {

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

    50% {
        transform: scale(1.12);
        opacity: 0.8;
    }
}

@keyframes loadProgress {
    0% {
        width: 0%;
    }

    40% {
        width: 45%;
    }

    75% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* ====================================================
   MOBILE RESPONSIVENESS OVERRIDES
   ==================================================== */
@media (max-width: 1024px) {
    .tech-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .galaxy-container {
        height: 500px;
    }

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

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-card {
        height: 350px;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-left: 20px;
        position: relative;
    }

    .timeline-line {
        left: 28px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: 100%;
    }

    .timeline-node {
        flex-direction: row;
        gap: 20px;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
    }

    .timeline-node span {
        margin-top: 0;
        font-size: 18px;
        font-weight: 700;
        color: #14B8A6;
    }

    .popup {
        position: relative;
        bottom: auto;
        left: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: calc(100% - 100px);
        box-shadow: none;
    }

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

    .pipeline-card {
        padding: 16px 20px;
        border-radius: 20px;
    }

    .pipeline {
        flex-direction: column;
        gap: 8px;
    }

    .pipeline-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 14px;
        width: 100%;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid #24324D;
        border-radius: 16px;
    }

    .pipeline-step:hover {
        transform: translateY(-2px);
    }

    .pipeline-step .step-icon {
        margin: 0;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .pipeline-step h3 {
        margin-bottom: 2px;
        font-size: 16px;
    }

    .pipeline-step p {
        font-size: 13px;
    }

    .pipeline-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
        height: 24px;
    }

    .pipeline-arrow i {
        font-size: 16px;
    }
    .filter-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    .project-image {
        height: 50% !important;
        object-fit: cover;
        background: #101827 !important;
    }
    .front-content {
        height: 50% !important;
        border-top: none !important;
    }
    .project-back {
        padding: 20px !important;
    }
    .project-back h2 {
        font-size: 24px !important;
        margin-bottom: 10px !important;
    }
    .project-back p {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    .project-back ul {
        margin-bottom: 15px !important;
    }
    .project-back li {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }
}

@media (max-width: 375px) {
    .filter-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
}

/* Typing Caret / Cursor Animation */
.hero-cursor {
    display: inline-block;
    margin-left: 4px;
    animation: blink-caret 0.75s step-end infinite;
    font-weight: 300;
}

@keyframes blink-caret {
    from, to { color: transparent }
    50% { color: #14B8A6; }
}

@media (max-width: 767px) {
    .bento-card {
        padding: 16px !important;
        min-height: 90px !important;
        border-radius: 16px !important;
    }
    .bento-card h3 {
        font-size: 15px !important;
        margin-top: 10px !important;
    }
    .bento-card .arrow {
        display: none !important;
    }
    .terminal-card {
        height: 250px !important;
        border-radius: 16px !important;
    }
    .terminal-header {
        padding: 10px 16px !important;
    }
    .terminal-body {
        padding: 16px !important;
        height: calc(100% - 41px) !important;
    }
    
    /* Scale down galaxy planets on mobile */
    .planet.large {
        width: 68px !important;
        height: 68px !important;
        font-size: 11px !important;
    }
    .planet.medium {
        width: 52px !important;
        height: 52px !important;
        font-size: 9px !important;
    }
    .planet.small {
        width: 40px !important;
        height: 40px !important;
        font-size: 7.5px !important;
    }
    .galaxy-container {
        height: 500px !important;
    }
    .achievement-card {
        min-height: auto !important;
        padding: 24px !important;
    }
}