/* --- Basic Reset & Body Styling --- */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', 'Helvetica', 'Arial', sans-serif;
    background-color: #0D1C17; /* Dark green-black background */
    color: #EAEAEA;           /* Soft white for text */
}

/* --- Main Container for Centering Content --- */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
}

/* --- Logo --- */
.logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

/* --- "ORPHEUS NETWORK" Text --- */
.network-name {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em; /* Creates the wide letter spacing */
    text-transform: uppercase;
    margin: 0 0 3.5rem 0;   /* 56px bottom margin for spacing */
    color: #d1d1d1;
}

/* --- Poem Container --- */
.poem {
    font-weight: 300;
    line-height: 1.7;
    font-size: 1rem; /* 16px */
    max-width: 500px;
}

.poem p {
    margin: 0;
}

/* Space between the two stanzas */
.poem p:first-of-type {
    margin-bottom: 1.7em; /* Creates a space equal to one line-height */
}

/* --- "Enter" Link --- */
.enter-link {
    color: #3ddc84; /* A vibrant but stylish green */
    text-decoration: none;
    margin-top: 3.5rem; /* 56px top margin for spacing */
    font-size: 1rem;
    transition: color 0.2s ease-in-out;
}

.enter-link:hover {
    color: #ffffff; /* Changes to white on hover for a nice effect */
}
