:root {
  --color-pink: #FFB6C1;
  --color-white: #FFFFFF;
  --color-blue-deep: #0A192F;
  --font-main: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: white;
  /* Ensure text is white */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  /* Enhance visibility on light backgrounds */
  font-family: var(--font-main);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  /* font-family: var(--font-main); - Removed as font-family is now in :root */
  background-color: var(--color-blue-deep);
  /* Kept for background */
  /* color: var(--color-white); - Removed as color is now in :root */
  /* Custom cursor removed */
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Glassmorphism Utility */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

/* Utility */
.full-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Glassmorphism Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}


/* Mobile Adjustments */
@media (max-width: 768px) {
    :root {
        font-size: 14px; /* Slightly smaller base font */
    }

    .full-screen {
        padding: 10px; /* Prevent edge-to-edge content sticking */
        overflow-y: auto; /* Allow scrolling if content overflows vertically */
        align-items: center; /* Center vertically usually */
        display: flex;
    }

    h1 {
        font-size: 2rem !important; /* Force smaller titles */
    }

    h2 {
        font-size: 1.5rem !important;
    }
    
    p {
         font-size: 1rem !important;
    }
}