body{
    font-family:"Segoe UI", Arial, sans-serif;
    background:linear-gradient(135deg,#fff7ed,#f8fafc);
    margin:0;
    padding:30px;
    color:#1f2937;
}

.game{
    max-width:900px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.logo{
    width:100%;
    max-width:650px;
    display:block;
    margin:0 auto 20px auto;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,0.15);
}

h1{
    text-align:center;
    color:#7f0000;
    margin-bottom:10px;
}

.article-title{
    text-align:center;
    font-size:17px;
    line-height:1.5;
    color:#374151;
    margin-bottom:25px;
    font-weight:500;
}

.hangman{
    font-family:monospace;
    white-space:pre;
    font-size:20px;
    text-align:center;
    margin:20px 0;
    color:#111827;
}

.hint{
    text-align:center;
    font-size:18px;
    margin-bottom:15px;
    color:#374151;
}

.word{
    text-align:center;
    font-size:38px;
    letter-spacing:10px;
    font-weight:bold;
    margin:20px 0;
    color:#111827;
    word-break:break-word;
}

.stats{
    text-align:center;
    margin-top:15px;
    font-size:18px;
}

.wrong{
    color:#dc2626;
    font-weight:bold;
}

.keyboard{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:8px;
    margin-top:25px;
}

.keyboard button{
    padding:12px;
    border:none;
    border-radius:8px;
    background:#7f0000;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.2s;
}

.keyboard button:hover{
    background:#5f0000;
}

.keyboard button:disabled{
    background:#cbd5e1;
    cursor:not-allowed;
}

.message{
    text-align:center;
    font-size:24px;
    font-weight:bold;
    margin-top:20px;
}

.win{
    color:#16a34a;
}

.lose{
    color:#dc2626;
}

.reset{
    display:block;
    margin:25px auto 0 auto;
    padding:14px 30px;
    border:none;
    border-radius:10px;
    background:#16a34a;
    color:white;
    font-size:17px;
    cursor:pointer;
}

.reset:hover{
    background:#15803d;
}

.footer{
    text-align:center;
    margin-top:25px;
    color:#6b7280;
    font-size:14px;
    line-height:1.5;
}

@media(max-width:650px){
    body{
        padding:15px;
    }

    .game{
        padding:20px;
    }

    .word{
        font-size:28px;
        letter-spacing:6px;
    }

    .keyboard{
        grid-template-columns:repeat(5,1fr);
    }
}