:root {
    --primary-text-color: #f5f5f5;
    --background-color: #101010;
    --font-family: 'Poppins', sans-serif;
    --link-color: #83a4ff;
    --button-bg: #1d1d1d;
}

body {
    background-color: var(--background-color);
    color: var(--primary-text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    user-select: none;
    overflow: hidden;
}

body::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 9999;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.5);
    left: var(--mouse-x);
    top: var(--mouse-y);
    transform: translate(-50%, -50%);
}
body.hide-custom-cursor::before {
    display: none;
}

header {
    text-align: center;
    position: absolute;
    top: 25px;
    width: 100%;
}

#logo {
    max-width: 185px;
    height: auto;
    display: block;
    margin: 0 auto;
}

#earth {
    width: 200px;
    height: auto;
}

h1 {
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
}

h2 {
    margin-top: 10px;
    text-align: center;
}

#link {
    color: var(--link-color);
}

#privacy-btn, #terms-btn, #help-btn {
    position: absolute;
    bottom: 15px;
    background-color: var(--button-bg);
    border: none;
    padding: 14px;
    border-radius: 100px;
    align-items: center;
    justify-content: center;
    display: flex;
    cursor: none;
}

#terms-btn {
    left: 50%;
    transform: translateX(-50%);
}

#privacy-btn {
    right: calc(50% + 10px + 20px);
}

#help-btn {
    left: calc(50% + 10px + 20px);
}

#privacy-btn img, #terms-btn img, #help-btn img {
    width: 18px;
    height: 18px;
}

.custom-button-cursor {
    position: absolute;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.9);
    pointer-events: none;
    display: none;
    z-index: 10000;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

#pill-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
}

#pill {
    background-color: var(--button-bg);
    color: var(--primary-text-color);
    text-align: center;
    padding: 7.5px 20px;
    border-radius: 20px;
    font-weight: bold;
    animation: popIn 0.3s forwards;
    white-space: nowrap;
    display: inline-block;
    min-width: 120px;
    line-height: 1.5;
    height: auto;
    margin: 0;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
