body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    background: linear-gradient(to bottom, #ff9a9e, #fad0c4);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #ffd700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    padding: 20px;
    max-width: 320px;
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

h1 {
    font-size: 40px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s;
}

.name-display {
    font-size: 60px;
    font-weight: bold;
    margin: 20px 0;
    animation: flash 0.5s infinite;
}

@keyframes flash {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.btn {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    font-size: 18px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    color: whitesmoke;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.settings-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffd700;
    padding: 10px 14px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, transform 0.2s ease;
}

.settings-btn:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

.footer {
    position: fixed;
    bottom: 14px;
    left: 50%;
    --base-transform: translateX(-50%);
    transform: var(--base-transform);
    width: min(70%, 480px);
    background: rgba(255, 255, 255, 0.12);
    color: #FFD700;
    text-align: center;
    padding: 0px 12px;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.footer a {
    color: #FFD700;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 2s ease-in-out;
}
