body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #0d0d0d;
    color: #fff;
  background-image: url('wallpaper_img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

/* Center card */
.container {
    max-width: 700px;
    margin: 10px auto;
    padding: 24px 30px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.10),
        rgba(255, 255, 255, 0.03)
    );

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

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 20, 147, 0.15);

    position: relative;
    overflow: hidden;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
    transform-style: preserve-3d;
    z-index: 1;
}
.container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    background: radial-gradient(
        circle at top left,
        rgba(255, 255, 255, 0.25),
        transparent 60%
    );

    transform: rotate(25deg);
    pointer-events: none;
}
.container::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;

    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15),
        transparent 60%
    );

    transform: translateX(-100%);
    animation: shine 4s infinite;
    pointer-events: none;
}
.container:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 46, 147, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes shine {
    0% {
        transform: translateX(-120%) skewX(-20deg);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translateX(120%) skewX(-20deg);
        opacity: 0;
    }
}
.section {
    margin-bottom: 18px;
}
.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}
.hero {
    text-align: center;
    /* margin-bottom: 25px; */
}
.glass {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 720px;
    margin: 0 auto 18px;

    padding: 30px 35px;

    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero-left {
    flex: 1;
}
.hero-right {
    flex: 1;
    text-align: right;
}
.hero-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    max-width: 720px;
}

.title-name {
    text-align: center;
    position: relative;
    font-size: 44px;
    /* base neon color */
    /* color: #ff2e93; */

    /* 3D layered depth */
    text-shadow:
        0 1px 0 #b3005c,
        0 2px 0 #7a003d,
        0 3px 0 #4d0026,
        0 4px 0 #2a0015,
        0 10px 20px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 46, 147, 0.8),
        0 0 40px rgba(255, 46, 147, 0.5);

    transform: perspective(600px) rotateX(10deg);
    letter-spacing: 2px;

    transition: all 0.4s ease;
}
.title-name:hover {
    transform: perspective(600px) rotateX(0deg) translateY(-5px) scale(1.08);

    text-shadow:
        0 2px 0 #b3005c,
        0 4px 0 #7a003d,
        0 6px 0 #4d0026,
        0 12px 25px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 46, 147, 1),
        0 0 60px rgba(255, 46, 147, 0.7);
}

.subtitle-name {
    text-align: center;
    font-size: 1.2em;
    letter-spacing: 2px;

    /* neon base */
    color: #00f7ff;

    /* hologram glow */
    text-shadow:
        0 0 5px rgba(0, 247, 255, 0.8),
        0 0 10px rgba(0, 247, 255, 0.6),
        0 0 20px rgba(0, 247, 255, 0.4);

    /* slight 3D depth */
    transform: perspective(500px) rotateX(8deg);

    transition: all 0.3s ease;
    animation: flicker 1.6s infinite;

}
.subtitle-name:hover {
    transform: perspective(500px) rotateX(0deg) scale(1.05);

    text-shadow:
        0 0 10px rgba(0, 247, 255, 1),
        0 0 25px rgba(0, 247, 255, 0.8),
        0 0 45px rgba(0, 247, 255, 0.6);
}
@keyframes flicker {
    0% {
        opacity: 1;
    }

    88% {
        opacity: 1;
    }

    89% {
        opacity: 0.2;
    }

    90% {
        opacity: 1;
    }

    92% {
        opacity: 0.4;
    }

    93% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}


/* Typewriter text */
#content {
    text-align: center;
    font-size: 1.3em;
    letter-spacing: 6px;
}

/* Paragraph */
p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;

    /* better readability */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}


/* Skills list */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: rgba(255, 46, 147, 0.08);
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 10px;
    border-left: 3px solid #ff2e93;
    transition: 0.3s;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

/* Hover effect */
ul li:hover {
    background: rgba(255, 46, 147, 0.2);
    transform: translateX(5px);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    color: #ff79c6;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* behind everything */
}
/* .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 20, 147, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
    animation: floatUp linear infinite;
} */
.particle {
    position: absolute;
    width: 5px;
    height: 5px;

    /* stronger color */
    background: rgba(255, 46, 147, 1);

    border-radius: 50%;

    /* sharper glow */
    box-shadow:
        0 0 6px rgba(255, 46, 147, 1),
        0 0 14px rgba(255, 46, 147, 0.9),
        0 0 22px rgba(255, 46, 147, 0.6);

    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0);
        opacity: 0.2;
    }

    15% {
        opacity: 1;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-120vh);
        opacity: 0;
    }
}



