/* ThreadForge Outfitters — CTF Theme */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg: #0f1115;
    --panel: #181b22;
    --accent: #00ffd5;
    --accent-soft: #00ffd530;
    --text: #e6e6e6;
    --muted: #8b93a7;
    --danger: #ff4d6d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: radial-gradient(circle at top, #141821, var(--bg));
    color: var(--text);
    font-family: "Inter", sans-serif;
    min-height: 100vh;
}

/* Layout */
.container {
    width: 900px;
    margin: 60px auto;
    background: var(--panel);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 0 40px #00000060;
}

/* Header */
h1, h2 {
    font-family: "Orbitron", sans-serif;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--accent);
}

p {
    margin-bottom: 20px;
    color: var(--muted);
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    text-shadow: 0 0 6px var(--accent);
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #2b2f3a;
    background: #0d1016;
    color: var(--text);
    font-size: 15px;
}

input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-soft);
}

/* Buttons */
button {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 12px var(--accent);
}

/* Product list */
ul {
    list-style: none;
    margin-top: 20px;
}

li {
    background: #10131a;
    border: 1px solid #242a36;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s;
}

li:hover {
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-soft);
}

/* Nav bar */
.nav {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

/* Alert messages */
.alert {
    padding: 12px;
    border-radius: 8px;
    background: #1a1f2a;
    border-left: 4px solid var(--danger);
    color: #ff9aad;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: var(--muted);
}
