/* Base Styles & Dark Theme */
:root {
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --text-main: #f2f2f2;
    --text-muted: #a0a0a0;
    --accent: #4ade80;
    --border-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    padding: 40px 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

@media (max-width: 900px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Cards (The Settings Panes) */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.card h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Settings Lists */
.settings-list {
    list-style: none;
}

.settings-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
    font-size: 0.95rem;
    text-align: right;
}

.settings-list li:last-child {
    border-bottom: none;
}

.settings-list span {
    color: var(--text-muted);
    font-weight: 600;
    flex-shrink: 0;
    text-align: left;
}

/* Copy Box for Crosshair */
.copy-box {
    display: flex;
    align-items: center;
    background-color: #000;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 10px 15px;
    justify-content: space-between;
}

.copy-box code {
    font-family: monospace;
    color: var(--accent);
    font-size: 0.9rem;
}

/* Buttons */
.btn-copy,
.btn-download {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-copy:hover,
.btn-download:hover {
    background-color: #444;
}

.btn-copy.copied {
    background-color: var(--accent);
    color: #000;
}

.config-section {
    text-align: center;
}

.btn-download {
    margin-top: 10px;
    background-color: var(--text-main);
    color: var(--bg-color);
    padding: 10px 20px;
}

.btn-download:hover {
    background-color: var(--text-muted);
}