body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    /* background: linear-gradient(135deg, #1e3c72, #2a5298); */
    background-image: url('/img/bg.jpeg');
    background-attachment: fixed;
    background-size: 100% 100%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
    height: 100vh;
    text-align: center;
}


.container {
    text-align: center;
    max-width: 600px;
    margin: 20px 20px;
    /* background: rgba(255, 255, 255, 0.1); */
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.heading-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading-box img {
    padding: 10px;
    width: 50px;
    border-radius: 50%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

button {
    background: #ff9800;
    border: none;
    padding: 12px 25px;
    font-size: 1.2rem;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;

    &:hover {
        background: #e68a00;
    }
}

input {
    padding: 12px;
    font-size: 1.2rem;
    margin: 12px 0;
    border: 2px solid #ffffff;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    background-color: transparent;
    outline: none;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.hidden {
    display: none;
}

#turn {
    font-size: 1.5rem;
    margin: 20px 0;
}

#scoreBoard {
    font-size: 1.8rem;
    margin: 20px 0;
}

#batsmanDice,
#bowlerDice {
    font-size: 3.5rem;
    margin: 15px;
}

a {
    text-decoration: none;
    color: #ff9800;
    font-weight: bold;
    display: block;
    margin-top: 20px;

    &:hover {
        text-decoration: underline;
    }
}

.rules-link {
    margin-top: 20px;
}

.replay-button {
    background: #4CAF50;
    padding: 12px 25px;
    font-size: 1.2rem;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    margin-top: 20px;

    &:hover {
        background: #45a049;
    }
}

