:root {
    --bg: #0a0a0f;
    --bg-card: #14141f;
    --text: #e0e0e8;
    --text-muted: #8888a0;
    --accent: #c9a84c;
    --accent-dim: #9a7a30;
    --border: #2a2a3a;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header */
.hero {
    text-align: center;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

.emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
}

h1 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.1rem;
}

/* Sections */
section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

p {
    margin-bottom: 1rem;
    color: var(--text);
}

a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-dim);
    transition: border-color 0.2s;
}

a:hover {
    border-color: var(--accent);
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.card:hover {
    border-color: var(--accent-dim);
}

.card-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.8rem;
}

.card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Principles */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

ul li:last-child {
    border-bottom: none;
}

/* Links */
.link-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.link-item {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.link-item:hover {
    border-color: var(--accent);
    background: rgba(201, 168, 76, 0.05);
}

/* Footer */
footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    .hero { padding: 2.5rem 0 2rem; }
    .cards { grid-template-columns: 1fr; }
}
