body {
    font-family: 'Frutiger', sans-serif !important;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(20,30,50,1) 0%, rgba(10,20,30,1) 100%);
/*    overflow: hidden; */
}
a {
    text-decoration: none;  /* Removes the underline */
    color: rgba(60, 90, 140, 0.8), 0px 0px 15px rgba(60, 90, 140, 0.6);            /* Optional: Change link color to gray to indicate it's disabled */
    cursor: default;        /* Changes the cursor to default to indicate it's not clickable */
}

/* Background with floating elements and lens flare */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Bubbles for depth */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.5);
    animation: float 15s ease-in-out infinite;
}

.bubble-1 { width: 100px; height: 100px; top: 10%; left: 15%; }
.bubble-2 { width: 140px; height: 140px; top: 30%; left: 65%; }
.bubble-3 { width: 200px; height: 200px; top: 70%; left: 20%; }
.bubble-4 { width: 60px; height: 60px; top: 50%; left: 50%; }

/* Glowing lines */
.glowing-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    animation: move-line 10s ease-in-out infinite;
}

.line-1 { top: 0; left: 30%; }
.line-2 { top: 0; left: 70%; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@keyframes move-line {
    0% { transform: translateY(0); }
    50% { transform: translateY(-100%); }
    100% { transform: translateY(0); }
}

/* Abstract shapes for visual interest */
.abstract-shape {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
    position: absolute;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 25%;
    border-radius: 50%;
}

.shape-2 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 80%;
    border-radius: 25%;
}

/* Lens flare effect */
.lens-flare {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 80%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: rotateFlare 30s linear infinite;
}

@keyframes rotateFlare {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Frosted glassmorphism container */
.container {
    text-align: center;
    z-index: 1;
}

.header h1 {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
    background: -webkit-linear-gradient(#00ffcc, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism for input fields */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    margin: 0 auto;
}

/* Glassmorphism input field */
.glass-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    outline: none;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Glossy button with subtle glowing effect */
.glossy-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(145deg, #5f77a1, #738fb9);
    color: #131312;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.4), 0 0 8px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glossy-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(255, 255, 255, 0.7), 0 0 15px rgba(255, 255, 255, 0.5);
}

.glossy-button:active {
    transform: scale(0.98);
}
/* Abstract shapes floating in the background */
.ps2-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
    animation: float 20s ease-in-out infinite;
    border-radius: 25%;
    filter: blur(3px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 25%;
}

.shape-2 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 80%;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 45%;
}

/* Frosted glass-like effect for the form container */
.ps2-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    max-width: 400px;
    margin: 0 auto;
}

/* PS2-styled input fields */
.ps2-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: #a7a9b2;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
    outline: none;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6);
}

.ps2-input::placeholder {
    color: rgba(200, 200, 255, 0.7);
}

/* PS2-styled button with glow */
.ps2-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(145deg, #3c4a7d, #576fa6);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4), 0px 0px 8px rgba(60, 90, 140, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ps2-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(60, 90, 140, 0.8), 0px 0px 15px rgba(60, 90, 140, 0.6);
}

.ps2-button:active {
    transform: scale(0.98);
}

.ps2-song-details {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    color: #a7a9b2;
}

.ps2-song-title {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
}

.ps2-song-info {
    font-size: 1.2rem;
    color: #a7a9b2;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}
/* SVG container for the curves */
.curve-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Styling for the vertical Vista-inspired curves */
.vista-curve {
    fill: none;
    background: rgba(0, 174, 255, 0.675); /* Blue glow similar to Vista */
    stroke-width: 4;
    stroke-linecap: round; /* Smooth the ends */
    stroke-linejoin: round; /* Smooth the corners */
    opacity: 0.6;
    animation: draw-curve 10s infinite ease-in-out;
    background: rgba(0, 174, 255, 0.365); /* Soft glowing effect */
}

/* Animation for drawing and fading the curves */
@keyframes draw-curve {
    0% {
        stroke-dasharray: 0, 1000;
        opacity: 0.3;
    }
    50% {
        stroke-dasharray: 1000, 0;
        opacity: 1;
    }
    100% {
        stroke-dasharray: 0, 1000;
        opacity: 0.3;
    }
}

/* Cube container */
.cube {
    width: 100px;
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(0deg) rotateY(0deg);
    animation: rotateCube 10s infinite linear;
}

/* Cube faces */
.face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 174, 255, 0.365); /* Blue color for Vista look */
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: white;
}

/* Position each face */
.front  { transform: translateZ(50px); }
.back   { transform: rotateY(180deg) translateZ(50px); }
.left   { transform: rotateY(-90deg) translateZ(50px); }
.right  { transform: rotateY(90deg) translateZ(50px); }
.top    { transform: rotateX(90deg) translateZ(50px); }
.bottom { transform: rotateX(-90deg) translateZ(50px); }

/* Cube rotation animation */
@keyframes rotateCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}
