:root {
    /* Theme: Black Background, White Text */
    --bg-color: #000000;
    --text-color: #ffffff;
    --link-color: #ffffff;
    --accent-color: #bbbbbb;
    --neon-blue: rgb(92, 175, 254);
}

body,
html {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Space Mono", monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- Global Link Styles --- */
a {
    color: var(--link-color);
    transition: color 0.3s ease;
}

main a {
    color: var(--link-color) !important;
}

/* --- Header --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.brand {
    text-decoration: none;
    color: var(--link-color);
    font-weight: 900;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--link-color);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover State */
nav a:hover {
    opacity: 1;
    color: #e0f0ff;
    text-shadow:
        0 0 10px rgba(92, 175, 254, 0.8),
        0 0 20px rgba(92, 175, 254, 0.4);
    text-decoration: none;
}

/* Active State */
nav a.active {
    opacity: 1;
    color: var(--neon-blue);
    text-shadow:
        0 0 15px rgba(92, 175, 254, 0.8),
        0 0 30px rgba(92, 175, 254, 0.4);
    text-decoration: none;
}

/* --- Main Layouts --- */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.centered-page {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-page {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 40px;
}

/* --- Typography --- */
h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text-color);
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-color);
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

.hero-text {
    font-size: clamp(3rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin: 0;
}

/* --- Lists (Arrow Styling) --- */
ul {
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
    margin-bottom: 20px;
}

li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    /* Space for the arrow */
    text-align: left;
}

/* The Arrow Element */
li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    /* UPDATED: Changed from neon-blue to White */
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* --- Footer --- */
footer {
    padding: 20px 40px;
    font-size: 12px;
    color: var(--accent-color);
    display: flex;
    justify-content: space-between;
    border-top: none;
    margin-top: auto;
}

footer a {
    color: var(--accent-color) !important;
    text-decoration: none;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    nav {
        gap: 20px;
        font-size: 12px;
    }
}

/* --- Product Page Specifics --- */
.app-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.download-badges img {
    height: 48px;
}

.screenshot-container {
    background: #ffecb3;
    border-radius: 30px;
    padding: 0;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.screenshot {
    width: 100%;
    max-width: 380px;
    border-radius: 28px;
    display: block;
}

/* --- Beta Page Specifics --- */
.container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.container ul {
    display: inline-block;
    text-align: left;
    width: auto;
}

.back-link {
    margin-top: 30px;
    font-weight: 700;
    text-decoration: none;
    color: var(--link-color);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.back-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(92, 175, 254, 0.4);
}