body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    text-align: center;
}

.container { max-width: 600px; margin: 40px auto; padding: 20px; }
.hidden { display: none !important; }

.card {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #d4af37;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 2px solid #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.report-container {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    border: 1px dashed #00d4ff;
    text-align: left;
}

.report-container label { display: block; font-size: 0.85em; margin-top: 15px; color: #00d4ff; }

input {
    padding: 12px;
    margin: 10px 0;
    width: 90%;
    border-radius: 5px;
    border: none;
    background: #2a2a2a;
    color: white;
}

input[type="file"] { background: #121212; padding: 10px; font-size: 0.8em; }

button {
    background-color: #d4af37;
    color: black;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.btn-buy { background-color: #0070ba; color: white; width: 100%; margin-top: 15px; }
#sendReportBtn { background-color: #28a745; color: white; width: 100%; margin-top: 20px; }

.rules-container {
    background: #1a1a1a;
    border-left: 4px solid #d4af37;
    margin-top: 25px;
    padding: 20px;
    text-align: left;
}

.rules-list { list-style: none; padding: 0; font-size: 0.85em; color: #ccc; }
.instructions { margin-top: 20px; background: #333; padding: 10px; border-radius: 5px; }