:root {
    --bg: #0a0a0a;
    --card-bg: #111111;
    --text-main: #e0e0e0;
    --text-muted: #666666;
    --accent: #9f7aea;
    --border: #333333;
    --gold: #d69e2e;
    --highlight: #ffffff;
}

body {
    font-family: "Courier New", Courier, monospace;
    background-color: var(--bg);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    text-align: left;
}

.header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.flower {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.project-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--highlight);
}

.grid-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
}

.spec-key { color: var(--text-muted); }
.spec-val { color: var(--text-main); }

.status-dot {
    height: 8px;
    width: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.1s, color 0.1s;
    cursor: pointer;
}

.btn:hover {
    background: var(--text-main);
    color: var(--bg);
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg);
    border: 1px solid var(--text-main);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-main);
}

.footer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    gap: 1rem;
}

a.link { color: var(--text-muted); text-decoration: none; }
a.link:hover { text-decoration: underline; }

/* Product Page Specifics */
.section-title {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

ul.feature-list {
    list-style-type: square;
    padding-left: 1.2rem;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.img-placeholder {
    width: 100%;
    height: 300px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
