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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    font-family: 'Inter', sans-serif;
    background: #000926; /* Directly set background color */
    color: var(--text-color);
    overflow: hidden;
    transition: background 0.5s ease;
    perspective: 1000px;
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Remove blur background */
    backdrop-filter: none; /* Remove backdrop filter */
    z-index: -1;
}