/* GLOBAL RESET */
* {
    color: white;
    text-decoration: none;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    
}

/* 🟣⚫🔵 MAIN DARK ANIMATED BACKGROUND */
body {
    margin: 0;
    padding: 0;
    /* REMOVE every old radial/overlay/bg image */
    background: linear-gradient(-45deg, #0a0016, #030018, #0d001f, #01031a, #000000);
    background-size: 2000% 2000%;
    animation: darkGradient 18s ease infinite;

    overflow-x: hidden;

}

/* Gradient Animation */
@keyframes darkGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 🟣 Floating particles */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(180, 120, 255, 0.8);
    border-radius: 50%;
    animation: floatUp 22s linear infinite;
    filter: blur(1px);
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    100% {
        transform: translateY(-10vh) translateX(40vw);
        opacity: 0;
    }
}

/* Glass Effect Panels */
.background {
    display: block;
    background: rgba(255, 255, 255, 0.048);
    border: 1px solid rgba(149, 120, 255, 0.108);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 12px;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(90deg, #7a2bff, #4a10cb, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button style */
.gradient-button {
    padding: 24px 32px;
    border-radius: 32px;
    border: none;
    background: linear-gradient(90deg, #1f0055, #4a10cb, #007bff);
    backdrop-filter: blur(20px);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.5s;
}

.gradient-button:hover {
    background: linear-gradient(90deg, #30006b, #6a11cb, #0044ff);
    transform: translateY(-2px);
}

/* Card style */
.card-custom {
    background: rgba(255,255,255,0.04);
    padding: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: 0.5s;
    box-shadow: rgba(25, 14, 37, 0.453) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.card-custom:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(100, 50, 255, 0.4);
    transition: 0.2s;
}

/* Radial text gradient */
.radial-text-gradient {
    background: linear-gradient(to top, #35008b, #6a11cb, #009dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* NAV BAR fix */
nav #nav-list a:hover {
    color: #b57bff;
}

/* Responsive adjustments */
@media only screen and (max-width: 745px) {
    .hero-content, #hero-img, .hero-btn {
        text-align: center;
    }
}

@media only screen and (max-width: 1025px) {
    .background {
        display: none;
    }
}

.title-top {
    font-weight: 700;
    letter-spacing: 2px;
}

.title-mid {
    color: #9b1c1c;
    font-weight: 700;
    margin-top: 10px;
}

.title-year {
    font-size: 1.1rem;
    color: #444;
}

.profile {
    text-align: center;
}

.profile-img {

    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #9900ff20;
}

.role {
    margin-top: 15px;
    font-weight: 700;
    color: #7a0000;
    font-size: 0.95rem;
}

.name {
    margin-top: -5px;
    font-size: 0.9rem;
    font-weight: 500;
}
