/* style.css */

/* Global reset for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

/* Body styles for dark theme */
body {
    background: #000;
    background: url('../assets/imgSquidGame/background.webp') no-repeat center center fixed; background-size: cover; 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

/* Game container to create a dramatic box */
#game-container {
    background: #111;
    border: 3px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    width: 600px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.7);
}

/* Title styling */
h1 {
    color: #ff0000;
    font-size: 2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Buttons with a dangerous appearance */
button {
    background-color: #b30000;
    color: white;
    border: none;
    padding: 15px 20px;
    margin: 10px 5px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #ff0000;
    transform: scale(1.05);
}

button:active {
    background-color: #800000;
    transform: scale(0.95);
}

/* Game log with blood red glow effect */
#game-log {
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    margin-top: 20px;
    text-align: left;
    box-shadow: inset 0 0 10px rgba(255, 0, 0, 0.7);
}

#clearBtn {
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
}

#game-log p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #ff3333;
}

#betChoice {
    background: #111;
    color: #ff0000;
    border: 1px solid #ff0000;
    padding: 10px;
    margin-top: 10px;
    font-size: 18px;
    text-align: center;
}

/* Scrollbar customization for a "blood-dripping" effect */
#game-log::-webkit-scrollbar {
    width: 10px;
}

#game-log::-webkit-scrollbar-thumb {
    background: #ff0000;
    border-radius: 5px;
}


