

body {
    background-color:rgb(0, 0, 0);
}

h1 {
    color: rgb(255, 255, 255);
    text-align: left;
    font-family: monospace;
    font-size: 50px;
}

h2 {
    color:#FF3B30;
}

p {
    color:rgb(255, 255, 255);
    font-family: Helvetica;
}

a {
    color:aquamarine;
    font-family:Helvetica;
}


h6 {
    color:#37ff00
}

ol {
    text-align:left;
}




.white-box {
  background-color: #FFFFFF; /* Sets the background to white */
  color: #000000;            /* Sets the text to black for contrast */
  border: 1px solid #CCCCCC; /* Adds a light grey outline */
  padding: 20px;             /* Creates spacing inside the box */
  border-radius: 5px;        /* Smooths the corners */
  max-width: 400px;          /* Prevents it from filling the whole screen */
}








/* 1. Reset & Base */
* {
    box-sizing: border-box; /* Crucial: includes padding in width calculations */
}

body {
    background-color: #0B0D10;
    color: #F7F7F7;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Stops horizontal scrolling/shaking */
}

/* 2. Headline Section (Full Screen) */
.headline {
    height: 80vh; /* Exactly the height of the screen */
    width: 100%;
    display: flex;
    flex-direction: column; /* Stack vertically if you add sub-text */
    justify-content: center; /* Vertical center */
    align-items: center;     /* Horizontal center */
    text-align: center;
    padding: 10px;
}

.headline h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.1;
    max-width: 900px; /* Keeps text from getting too wide on monitors */
    margin: 0;
}

/* 3. The Censored Word */
.secret {
    background-color: #F7F7F7;
    color: #F7F7F7;
    padding: 0 10px;
    display: inline-block;
    animation: revealBox 1s forwards;
    animation-delay: 2s;
}

@keyframes revealBox {
    100% {
        background-color: transparent;
        color: #FF3B30;
        text-decoration: line-through;
    }
}

/* 4. Scrolling Content */
.message {
    min-height: 50vh; /* Each section takes up half a screen */
    width: 100%;
    max-width: 700px; /* Keeps reading lines comfortable */
    margin: 0 auto 30vh auto; /* Centers the div and adds bottom gap */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centers the H2 and P inside the div */
    text-align: center;
}

/* 5. Scroll Reveal States */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

h2 { color: #FF3B30; font-size: 2rem; margin-bottom: 1rem; }
p { font-size: 1.2rem; opacity: 0.8; }






/* Hide the text by default (for mobile and tablet) */
.pc-only {
  display: none;
}

/* Show the text only on screens wider than 1024px (PCs) */
@media (min-width: 1024px) {
  .pc-only {
    display: inline; /* Use 'block' if you used a div instead of a span */
  }
}
