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


html, body {
    background-color: #0e0e0e;
    color: #f0f0f0;
    font-family: 'Playfair Display', serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    cursor: none;
    background: url('../assets/XO.jpg');
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    white-space: nowrap;
    max-width: 110%;
    display: block;
    overflow-x: visible;
}

.tagline {
    text-align: center;
}

section {
    min-height: 100vh;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
}

a {
    color: inherit;
    text-decoration: none;
}

.trail {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.9), rgba(145, 44, 44, 0.6));
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.4);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: lighten;
}

