body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
.container {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fefefe;
}
.intro {
    display: block;
}
.game {
    display: none;
    margin-top: 200px;
}
.word-panel {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: bold;
    color: red;
}
.word-panel-animation {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: bold;
    color: red;
}
.player-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.player-section {
    flex: 1;
    min-width: 150px;
    padding: 5px;
    border: 1px solid #007BFF;
    border-radius: 8px;
    box-sizing: border-box;
}
#player1Section {
    background-color: #f9f9f9;
}
#player2Section {
    background-color: #e0f7fa;
}
.erkanozcelik {
    display: flex;
    justify-content: space-between; /* Aralarındaki boşluğu ayarlamak için */
    gap: 10px; /* Elemanlar arasındaki boşluk */
}
.ozcelikerkan {
    display: none;
    text-align: center;

}
.kalp {
    padding: 10px;
    text-align: center;
    flex: 1; /* Elemanların eşit genişlikte olması için */
}
#kalp1{
    display: none;
}
#kalp2{
    display: none;
}
.player-header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #007BFF;
}
.options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.option {
    padding: 10px 20px;
    border: 1px solid #007BFF;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f0f0f0;
    width: calc(100% - 20px);
    max-width: 250px;
    text-align: center;
    box-sizing: border-box;
}
.option:hover {
    background-color: #007BFF;
    color: white;
}
.score {
    font-size: 18px;
    margin-top: 20px;
}
.penalty {
    color: red;
    font-size: 16px;
}
.message {
    display: none;
    font-size: 18px;
    color: red;
    margin: 20px 0;
}

.whatsapp-share-button {
    display: inline-block;
    background-color: #25d366;
    color: white;
    font-size: 16px;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.whatsapp-share-button:hover {
    background-color: #20b358;
}

