:root {
    --bg-body: #30444a;
    --bg-header: #172125;
    --titleheader: #1e1f28d0;
    --title: #acc167;
    --text: #092c36;
    --accent: #8b9d8f;
    --border: #2a373b;
}

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

html,
body {
    width: 100%;
    background-color: var(--bg-body);
    font-family: 'Courier New', Courier, monospace;
    color: var(--text);
}

body {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 50px auto;
    background-color: #14280e;
    color: #333;
}

.header {
    background-color: #ebe8e8;
    color: #1d1c1cc2;
    font-family: 'Courier New', Courier, monospace;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    text-align: left;
    padding: 40px 0 40px 20px;
}

.header h2 {
    color: var(--titleheader);
    padding: 0 20px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: .02em;
}

.header h3 {
    color: var(--titleheader);
    padding: 0 20px 10px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .02em;
}

.header p {
    padding: 0 20px;
    color: var(--text);
    font-weight: 400;
    font-size: 1.2rem;
}

.container {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container h1 {
    color: var(--title);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: .05em;
    margin-bottom: 1rem;
}

.container h2 {
    color: var(--title);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.cards-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    padding: 20px;
    max-width: 300px;
    flex: 1;
}

.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card h3 {
    margin-top: 0;
    color: #2c3e50;
}

.card p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.card .meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    font-weight: bold;
}

button {
    margin: 10px 0;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    background-color: #0052ff;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background .3s;
    width: 100%;
}

button:hover {
    background-color: #0039b3;
}

button:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

button.reveal {
    background-color: #333;
    margin-top: 5px;
}

button.reveal:hover {
    background-color: #000;
}

#status {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
    min-height: 24px;
}

.error {
    color: #d32f2f;
}

.success {
    color: #2e7d32;
}

.info {
    color: #1976d2;
}

.hidden {
    display: none;
}

.badge-soon {
    background: #eee;
    color: #666;
    margin-top: 20px;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.own-ok {
    color: #2e7d32;
    font-weight: bold;
    margin: 8px 0;
    text-align: center;
}
