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

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    cursor: none;
    position: relative;
    perspective: 1000px;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
        #1a1a2e 0%,
        #0f0f1e 25%,
        #000000 50%);
    transition: background 0.1s ease, transform 0.3s ease-out;
    transform-style: preserve-3d;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    text-align: center;
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
}

h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

p {
    font-size: 1.5rem;
    color: #c0c0c0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Custom Radio Cursor */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1.2rem;
    }
}
