body {
    font-family: "Inter", sans-serif;
    background-color: #100505;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(150, 0, 0, 0.05) 0%, transparent 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0px, transparent 1px, transparent 100px);
}

.western-title {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8), 4px 4px 0px rgba(192, 57, 43, 0.2);
}

.western-text {
    font-family: "Special Elite", cursive;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #100505;
}

::-webkit-scrollbar-thumb {
    background: #5c1818;
}

::-webkit-scrollbar-thumb:hover {
    background: #C0392B;
}

/* Choice Button Transitions */
.choice-btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.choice-btn:hover {
    transform: translateY(-2px);
    background-color: #2c0b0e !important;
    border-color: #C0392B !important;
}

/* StoryEngine Integration */
.choice-wrapper::after {
    content: attr(data-info);
    display: block;
    font-size: 0.7rem;
    color: #C0392B;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-family: "Special Elite", cursive;
    opacity: 0.6;
}