.main-title {
    margin-top: 90px;
    text-align: center;
    
    font-family: "Orbitron", sans-serif;
    color: #d4af37;
    font-size: 65px;
    font-weight: 900;
    letter-spacing: 2px;
    
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.sub-title {
    text-align: center;
    font-family: "Orbitron", sans-serif;
    color: #f8f7f7;
    font-size: 30px;
    font-weight: 700;
}
.about-box {
    width: min(85%, 650px);
    margin: 30px auto;
    padding: 25px;

    background-color: #b8b8b8;

    border-radius: 24px;
}

.about-box h2 {
    margin-top: 0;
    text-align: center;
    font-family: "Orbitron", sans-serif;
}

.about-content {
    width: min(85%, 650px);
    margin: 30px auto;
    padding: 25px;

    color: white;

    /* Transparent inner box */
    background: rgba(20, 20, 25, 0.12);

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

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

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

    font-family: "Orbitron", sans-serif;
    line-height: 1.6;

    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}
.about-box {
    width: min(85%, 650px);
    margin: 30px auto;
    padding: 25px;

    color: rgb(255, 255, 255);
    background: rgba(15, 15, 20, 0.18);
    border: 1px solid rgba(184, 184, 184, 0.08);
    border-radius: 24px;

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

    font-family: "Orbitron", sans-serif;
    line-height: 1.6;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #080810;
    position: relative;
    isolation: isolate;
}

/* Keeps normal page content above the liquid background */
.main-title,
.about-box {
    position: relative;
    z-index: 1;
}
.liquid-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* First shape */
.liquid-background::before {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    top: -250px;
    left: -150px;

    background: #d4af37;
    border-radius: 45% 55% 60% 40% / 40% 45% 55% 60%;

    filter: blur(100px);
    opacity: 0.9;

    animation: liquid-shape-1 10s ease-in-out infinite alternate;
}

/* Second shape */
.liquid-background::after {
    content: "";
    position: absolute;

    width: 650px;
    height: 650px;

    right: -200px;
    bottom: -250px;

    background: #d4af37;
    border-radius: 60% 40% 45% 55% / 55% 60% 40% 45%;

    filter: blur(100px);
    opacity: 0.8;

    animation: liquid-shape-2 13s ease-in-out infinite alternate;
}

@keyframes liquid-shape-1 {
    0% {
        transform: translate(0, 0) scale(1);
        border-radius: 45% 55% 60% 40% / 40% 45% 55% 60%;
    }

    50% {
        transform: translate(300px, 180px) scale(1.2);
        border-radius: 60% 40% 35% 65% / 55% 35% 65% 45%;
    }

    100% {
        transform: translate(600px, 60px) scale(0.9);
        border-radius: 35% 65% 55% 45% / 60% 40% 50% 50%;
    }
}

@keyframes liquid-shape-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-350px, -200px) scale(1.15);
        border-radius: 35% 65% 45% 55% / 60% 35% 65% 40%;
    }

    100% {
        transform: translate(-650px, -50px) scale(0.9);
        border-radius: 65% 35% 55% 45% / 40% 65% 35% 60%;
    }
}
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;

    margin: 30px auto;
}

.social-links a {
    width: 62px;
    height: 62px;

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

    color: #d4af37;
    font-size: 32px;
    text-decoration: none;

    background: rgba(20, 20, 28, 0.45);
    border: 2px solid #d4af37;
    border-radius: 50%;

    backdrop-filter: blur(12px);

    transition:
        transform 200ms ease,
        color 200ms ease,
        background-color 200ms ease,
        box-shadow 200ms ease;
}

.social-links a:hover {
    color: white;
    background-color: rgba(212, 175, 55, 0.3);

    transform: translateY(-7px) scale(1.1);

    box-shadow: 0 0 24px rgba(212, 175, 55, 0.6);
}
.setup-menu {
    position: fixed;
    top: 25px;
    right: 25px;

    width: auto;
    height: auto;

    z-index: 20;
}
.setup-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.55);
}

.setup-panel {
    position: absolute;
    top: 70px;
    right: 0;

    width: 340px;
    max-height: calc(100vw - 40px);
    overflow-y: auto;

    padding: 24px;

    color: white;
    background: rgba(20, 20, 28, 0.94);

    border: 1px solid rgba(212, 175, 55, 0.7);
    border-radius: 20px;

    backdrop-filter: blur(20px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);

    transition:
        opacity 200ms ease,
        visibility 200ms ease,
        transform 200ms ease;
}

.setup-menu:hover .setup-panel,
.setup-menu:focus-within .setup-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.setup-panel h2 {
    margin: 0 0 18px;

    color: #d4af37;
    font-family: "Orbitron", sans-serif;
    font-size: 21px;
    text-align: center;
}

.setup-item {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.setup-item:last-child {
    border-bottom: none;
}

.setup-item strong {
    margin-bottom: 3px;

    color: #d4af37;
    font-family: "Orbitron", sans-serif;
    font-size: 15px;
}

.setup-item span {
    color: #e2e2e2;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.setup-icon:hover {
    transform: scale(1.06);
    background-color: rgba(212, 175, 55, 0.22);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.55);
}
.setup-icon {
    width: 210px;
    height: 52px;

    display: flex;
    align-items: center;      /* Centers vertically */
    justify-content: center;  /* Centers horizontally */

    padding: 0;
    text-align: center;

    color: #d4af37;
    font-family: "Orbitron", sans-serif;
    font-size: 10px;
    font-weight: 700;

    background: rgba(20, 20, 28, 0.92);
    border: 2px solid #d4af37;
    border-radius: 999px;
}