body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #05060a;
    color: #f5f5f5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #222;
    background: #05060a;
    position: sticky;
    top: 0;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 14px;
    text-transform: uppercase;
}

nav a {
    margin-left: 16px;
    text-decoration: none;
    color: #ddd;
    font-size: 14px;
}

nav a:hover {
    color: #ffffff;
}

main {
    max-width: 900px;
    margin: 24px auto 64px;
    padding: 0 16px;
}

h1 {
    font-size: 24px;
    margin-bottom: 16px;
}

.candles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.candle-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: #101118;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #1b1c25;
}

.candle-card:hover {
    border-color: #f5e0a3;
    background: #141520;
}

.candle-icon {
    font-size: 28px;
    margin-top: 2px;
}

.candle-text {
    flex: 1;
}

.candle-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.candle-message {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 4px;
}

.candle-dt {
    font-size: 12px;
    color: #777;
}

.candle-page {
    text-align: center;
}

.candle-big-icon {
    font-size: 64px;
    margin-bottom: 12px;
}

.candle-message-full {
    margin-top: 8px;
    white-space: pre-wrap;
}

.candle-dt-full {
    margin-top: 8px;
    font-size: 13px;
    color: #888;
}

.candle-links {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid #f5e0a3;
    background: #101118;
    color: #f5e0a3;
    text-decoration: none;
    font-size: 14px;
}

.btn:hover {
    background: #f5e0a3;
    color: #101118;
}

footer {
    border-top: 1px solid #222;
    padding: 12px 24px;
    font-size: 12px;
    color: #777;
    text-align: center;
}
