body, h1, button, div {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

body {
    background-color: #f7f9fc; 
    color: #2d3436; 
    text-align: center;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #74b9ff;
    text-shadow: 1px 1px 3px rgba(116, 185, 255, 0.4); 
}

/* Style for hidden elements */
.hidden {
    display: none;
}

/* Enraged Greek button styling */
#EnragedGreek {
    background: linear-gradient(to right, #0d5eaf, #ffffff, #0d5eaf);
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #0d5eaf;
    border-radius: 8px;
    padding: 12px 25px;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 20px; /* Ensure space between other buttons */
}

/* Hover effect for Enraged Greek button */
#EnragedGreek:hover:not(:disabled) {
    background: linear-gradient(to right, #ffffff, #0d5eaf, #ffffff);
    color: #0d5eaf;
    transform: scale(1.2);
}

/* When the button is disabled */
#EnragedGreek:disabled {
    background: #d3d3d3;
    color: #666;
    cursor: not-allowed;
}

/* Positioning of the button in the middle */
#EnragedGreek.unlocked {
    display: block;
    margin: 20px auto;
    text-align: center;
}
.choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 20px auto;
    max-width: 700px;
}

.choices button {
    background: linear-gradient(145deg, #a29bfe, #dfe6e9);
    color: #2d3436;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.choices button:hover {
    background: linear-gradient(145deg, #81ecec, #dfe6e9); 
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.choices button:active {
    background: #ffeaa7; 
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#playerDisplay, #computerDisplay, #resultDisplay {
    font-size: 24px;
    margin: 20px 0;
    font-weight: 500;
}

#resultDisplay {
    font-size: 30px;
    font-weight: bold;
    color: #fab1a0; 
    text-shadow: 1px 1px 3px rgba(250, 177, 160, 0.4);
}

.scoreDisplay {
    font-size: 22px;
    margin: 15px 0;
    font-weight: 600;
}

#playerScoreDisplay, #computerScoreDisplay {
    font-weight: bold;
    font-size: 28px;
    color: #55efc4;
}

img {
    max-width: 50%; 
    height: auto; 
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    background-color: #dfe6e9;
    padding: 10px;
}

img:hover {
    transform: scale(1.03); 
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
