:root {
    --bg-color: #0a0a0c;
    --card-bg: #141417;
    --primary: #38bdf8;
    --primary-glow: rgba(56, 189, 248, 0.4);
    --text: #e2e8f0;
    --accent: #f43f5e;
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    font-family: 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.app-wrapper {
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo span { color: var(--primary); }

.status-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #64748b;
    margin-top: 5px;
}

/* KARTY */
.game-card, .report-card {
    background: var(--card-bg);
    border: 1px solid #27272a;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.stats-container .label { color: #94a3b8; font-size: 0.9rem; }
#pointsDisplay { font-size: 4rem; margin: 10px 0; color: var(--primary); text-shadow: 0 0 20px var(--primary-glow); }

/* PRZYCISKI */
.glow-button {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

.glow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--primary-glow);
}

/* FORMULARZ */
.report-card { text-align: left; }
.report-card h3 { margin-top: 0; font-size: 1.1rem; color: var(--primary); }
select, textarea {
    width: 100%;
    background: #0a0a0c;
    border: 1px solid #27272a;
    color: white;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    box-sizing: border-box;
}
textarea { height: 100px; resize: none; }

#sendReportBtn {
    margin-top: 15px;
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

#sendReportBtn:hover { background: var(--accent); color: white; }

.feedback { height: 20px; margin-top: 10px; font-size: 0.8rem; text-align: center; }

footer { text-align: center; font-size: 0.7rem; color: #475569; margin-top: 40px; }
