/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #181b1f;
    color: #785bad;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 1.5rem;
}

/* Layout Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    width: 100%;
    font-size: 1.4rem;
    
}

/* Typography & Elements */
.logo {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.tagline {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Navigation List */
.nav-container {
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;    /* Keeps the links stacked up and down */
    align-items: center;       /* Centers the list items horizontally */
    gap: 15px;                 /* Vertical spacing between the links */
    width: 100%;
}

.nav-links li {
    width: 100%;               /* Ensures the list item block spans the width */
    display: flex;
    justify-content: center;   /* Centers content inside the li */
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    text-align: center;        /* Centers the actual text link */
    transition: color 0.2s ease;
    display: inline-block;
}

.nav-links a:hover {
    color: #1ed30d;
}

/* Responsive Breakpoint for Tablet/Desktop */
@media (min-width: 480px) {
    .logo {
        font-size: 3rem;
    }
}