@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&family=Cinzel:wght@400;700&display=swap');



body {
    background: radial-gradient(circle at top, #2b1b0f, #0f0a06);
    color: #e6d8b8;
    font-family: 'Cinzel', serif;
}


.navbar {
    background: linear-gradient(#2a1a0f, #120a05) !important;
    border-bottom: 2px solid #6b4b2a;
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #f3d38b !important;
    text-shadow: 2px 2px 6px black;
}

.navbar-nav .nav-link {
    color: #e6d8b8 !important;
}

.navbar-nav .nav-link:hover {
    color: #f5e6c8 !important;
}


.game-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 25px;
    background: rgba(20, 12, 6, 0.88);
    border: 3px solid #6b4b2a;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}


.game-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #f3d38b;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px black;
}

.story-text {
    text-align: center;
    font-size: 1.1rem;
    color: #e0cfaa;
    margin-bottom: 20px;
}


.game-image {
    display: block;
    max-width: 100%;
    margin: 20px auto;
    border-radius: 10px;
    border: 4px solid #5a3a1c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}


.choices {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    height: auto;
    width: 500px;
}

.play-btn {
    display: grid;
    justify-content: center !important;
    align-items: center !important;
}

.choice-btn {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    margin: 10px;
    padding: 12px 28px;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    text-decoration: none;
    color: #f5e6c8;
    background: linear-gradient(#7a4a24, #4a2a12);
    border: 2px solid #caa45d;
    border-radius: 8px;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.6), 0 5px 15px rgba(0,0,0,0.7);
    transition: all 0.2s ease;
}
    

.choice-btn:hover {
    background: linear-gradient(#9b5e2e, #5a3316);
    transform: translateY(-2px);
    color: #fff;
}


.hp {
    margin-top: 15px;
    text-align: center;
    font-size: 1.2rem;
    color: #ff5c5c;
    text-shadow: 1px 1px 4px black;
}

.bosshp-text {
    margin-top: 15px;
    text-align: center;
    font-size: 1.5rem;
    color: #ff5c5c;
    text-shadow: 1px 1px 4px black;
    border: 2px solid #caa45d;
    box-shadow: inset 0 0 8px rgba(0,0,0,0.6), 0 5px 15px rgba(0,0,0,0.7);
}
.flex{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    max-width: 1044.67px;
    height: 280px;
}

footer {
    background: #120a05;
    color: #9c8b6b !important;
    border-top: 2px solid #6b4b2a;
}

.stats-panel {
    width: 260px;
    padding: 20px;
    display:inline-block;
    align-items: center;
    justify-items: center;
    background: linear-gradient(#1b1208, #0f0804);
    border: 3px solid #6b4b2a;
    border-radius: 12px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.9);
    color: #e6d8b8;
    font-family: 'Cinzel', serif;
}

    .stats-panel h2 {
        font-family: 'Cinzel', serif;
        text-align: center;
        color: #f3d38b;
        margin-bottom: 15px;
        text-shadow: 2px 2px 6px black;
        border-bottom: 2px solid #6b4b2a;
        padding-bottom: 5px;
    }

.inventory-panel {
    width: 260px;
    padding: 20px;
    display: inline-block;
    align-items: center;
    justify-items: center;
    background: linear-gradient(#1b1208, #0f0804);
    border: 3px solid #6b4b2a;
    border-radius: 12px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.9);
    color: #e6d8b8;
    font-family: 'Cinzel', serif;
}

.item-btn {
  font-family: 'Cinzel', serif;
}

.inventory-panel h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    color: #f3d38b;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px black;
    border-bottom: 2px solid #6b4b2a;
    padding-bottom: 5px;
}


.item {
    margin: 12px 0;
    padding: 8px 10px;
    background: rgba(0,0,0,0.35);
    border-radius: 6px;
    border-left: 4px solid #caa45d;
    font-size: 1.05rem;
}

.stat {
    margin: 12px 0;
    padding: 8px 10px;
    background: rgba(0,0,0,0.35);
    border-radius: 6px;
    border-left: 4px solid #caa45d;
    font-size: 1.05rem;
}

.stat span {
    float: right;
    font-weight: bold;
    color: #f5e6c8;
}