body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0f0f0f;
    color: #eaeaea;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Title */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #932699;
}

.title a:hover {
    color: #A52BAB;
}

/* Buttons */
.button-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.button-row a {
    padding: 10px 18px;
    border-radius: 6px;
    background: #1f1f1f;
    border: 1px solid #333;
    font-size: 0.95rem;
}

.button-row a:hover {
    background: #2a2a2a;
}

/* Search */
.search-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.search-row input {
    width: 280px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #121212;
    color: #eaeaea;
}

.search-row a {
    padding: 10px 16px;
    border-radius: 6px;
    background: #1f1f1f;
    border: 1px solid #333;
}

/* Image grid */
.image-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.image-row img {
    object-fit: cover;
    border-radius: 6px;
}

/* Stats */
.stats {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    font-size: 0.85rem;
    color: #888;
}

.footer a:hover {
    text-decoration: underline;
}


body {
    margin: 0;
    font-family: sans-serif;
}

.row {
    padding: 12px 16px;
}

/* ---------- Header ---------- */

.header-row {
    border-bottom: 1px solid #ccc;
}

.header-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    align-items: center;
}

.header-content {
    gap: 12px;
}

.logo {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.site-title {
    font-size: 30px;
    font-weight: bold;
    color: #932699;
}

.site-title a:hover {
    color: #A52BAB;
}

/* ---------- Navigation ---------- */

.nav-row {
    border-bottom: 1px solid #eee;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
}

.nav-list a {
    text-decoration: none;
}

.nav-list a:hover {
    text-decoration: underline;
}

/* ---------- Content ---------- */

.content-row {
    padding-top: 24px;
}

.account-nav ul {
  list-style: none;
  padding: 0;
}

.account-nav li {
  margin: 6px 0;
}
