/* This sets the cute font we imported from Google for the whole page */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    
    /* This is our dark theme background color. Easy on the eyes! */
    background-color: #1E1E1E; 

    /* A soft white for the text color */
    color: #E0E0E0;

    /* These next lines center the content perfectly in the middle of the screen */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Make the body take up the full screen height */
}

/* --- Scrolling Text Bar --- */

.marquee-container {
    position: fixed; /* Fixes the bar to the top of the screen */
    top: 0;
    width: 100%;
    background-color: #FF8DC7; /* Our cute pink color! */
    color: #1E1E1E; /* Dark text for contrast */
    padding: 10px 0;
    overflow: hidden; /* Hides the text when it's off-screen */
    white-space: nowrap; /* Prevents the text from wrapping to a new line */
}

.marquee-text {
    display: inline-block;
    padding-left: 100%; /* Starts the text off-screen to the right */
    animation: scroll-left 25s linear infinite; /* This applies our animation */
}

/* This is the animation code! It moves the text from right to left */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* --- Main Content Styling --- */

.content {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 4rem; /* Makes the title big and bold */
    margin-bottom: 0;
    /* This adds a subtle pink glow to the main title */
    text-shadow: 0 0 8px rgba(255, 141, 199, 0.7); 
}

p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #B0B0B0; /* A slightly dimmer color for the subtitle */
}

/* --- Button Styling --- */

.pleb-button {
    display: inline-block;
    margin-top: 40px; /* Pushes the button down a bit */
    padding: 15px 30px;
    background-color: #FF8DC7; /* Same pink as the top bar */
    color: #1E1E1E; /* Dark text */
    text-decoration: none; /* Removes the default blue underline from the link */
    font-weight: bold;
    border-radius: 50px; /* Makes the button a cute pill shape */
    transition: transform 0.2s ease-out; /* Adds a smooth animation for the hover effect */
}

/* This makes the button pop out a little when you hover over it */
.pleb-button:hover {
    transform: scale(1.1);
}
