:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --spotlight-size: 250px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    height: 100vh;
    overflow: hidden;
    font-family: sans-serif;
    /* Fallback */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    /* Hide default cursor */
}

.content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.logo {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 200px;
    /* Adjust size as needed */
    height: auto;
    display: block;
}

.coming-soon {
    font-family: "Playwrite AU TAS", cursive;
    font-size: 5rem;
    font-weight: 400;
    text-align: center;
    z-index: 2;
}

/* The flashlight overlay */
.flashlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    /* Allow clicks to pass through if needed */
    /* Init off-screen or center */
    background: radial-gradient(circle var(--spotlight-size) at var(--x, 50%) var(--y, 50%),
            transparent 0%,
            rgba(0, 0, 0, 0.98) 100%);
}

/* Add a glowing orb at the cursor position for extra effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 200, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    /* Center on tracking coords */
    left: var(--x, 50%);
    top: var(--y, 50%);
    box-shadow: 0 0 20px 5px rgba(255, 255, 200, 0.4);
    pointer-events: none;
    z-index: 11;
}

@media (max-width: 768px) {
    .coming-soon {
        font-size: 3rem;
        padding: 0 20px;
    }

    .logo {
        font-size: 1rem;
        top: 20px;
    }
}