body {
    background:
        radial-gradient(1200px 400px at 10% 10%, rgba(217, 160, 96, 0.06), transparent 8%),
        linear-gradient(180deg, #0b0704 0%, #151010 40%);
    text-align: center;
}

header {
    background: linear-gradient(90deg, #4b2e05, #6b3e0a, #8b5a2b);
    color: #f5deb3;
    padding: 20px 40px;
    text-align: center;
    font-family: 'Georgia', serif;
    margin-bottom: 10px;
}

p, span, label {
    color: #f7efe6;
    font-size: 1rem;
}

div {
    margin: auto;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #3c240c;
    border: 2px solid #7b5b35;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.hero .left {
    flex: 1 1 300px;
    margin-right: 20px;
}

.hero h2 {
    margin: 0 0 10px;
    color: #ffd27f;
}

.hero p {
    margin: 0 0 10px;
}

.meta {
    color: #c4a484;
    font-size: 0.9em;
    margin-top: 0.5rem;
}

.image {
    flex: 0 0 400px;
    max-width: 100%;
}

img {
    vertical-align: middle;
}

@keyframes smoke {
    0% {
        text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.1);
    }

    50% {
        text-shadow: 2px 4px 10px rgba(255, 255, 255, 0.4);
    }

    100% {
        text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.1);
    }
}

header span {
    animation: smoke 4s ease-in-out infinite;
}

.circle {
    background-color: #b8860b;
    color: #f7efe6;
    font-weight: bold;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-left: 0;
    margin-right: auto;
    flex-shrink: 0;
}

.circleParent {
    display: flex;
    align-items: center;
}

.tag {
    display: inline-block;
    border: 2px solid #b8860b;
    border-radius: 6px;
    padding: 2px 8px;
    background-color: #b8860b;
    color: #f7efe6;
    font-weight: bold;
    margin-left: 5px;
}

.tagDark {
    display: inline-block;
    border: 2px solid #3c240c;
    border-radius: 6px;
    padding: 2px 8px;
    background-color: #3c240c;
    color: #f7efe6;
    font-weight: bold;
    margin-left: 5px;
}

.border-box {
    background: #6b4015;
    border: 2px solid #7b5b35;
    border-radius: 10px;
    padding: 20px;
}

.review-row {
    display: grid;
    grid-template-columns: 5rem 125px;
    align-items: center;
}

.label {
    text-align: left;
}

.small-border-box {
    background: #3c240c;
    border: 2px solid #7b5b35;
    border-radius: 10px;
    padding: 5px;
}

button {
    background-color: #8b4513;
    color: #f7efe6;
    font-weight: bold;
    border: 2px solid #5c3317;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

button:hover {
    background-color: #a0522d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

button:active {
    background-color: #5c3317;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.upload-container {
    background-color: #f7efe6;
    border: 2px solid #b8860b;
    padding: 1rem;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-family: Georgia, serif;
}

#uploadBtn {
    background-color: #8b4513;
    color: #f7efe6;
    font-weight: bold;
    border: 2px solid #5c3317;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

#uploadBtn:hover {
    background-color: #a0522d;
}

#uploadStatus {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #333;
}

a {
    color: #f7efe6;
    text-decoration: none;
}