
@media screen and (min-width: 1400px) {
	.container {
	  width: 1370px;
	}
  }
  @media screen and (min-width: 1600px) {
	.container {
	  width: 1570px;
	}
  }
  @media screen and (min-width: 1900px) {
	.container {
	  width: 1870px;
	}
  }
.responsive {
	width: 100%;
	height: auto;
  }
.intro {
	font-size: 150%;
	background-color: rgb(241, 0, 0);
  }

h1, h2{
    text-align: center;
}
#main-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.screen {
    display: none;
}

.screen.active {
    display: block;
}

#header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
}

/* Oyun Tahtası */
#game-board {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 50px auto;
}

/* Sayı Butonları */
.number-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

.number-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Boom Butonu */
#boom-button {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    font-size: 64px;
    padding: 20px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#boom-button.red {
    background-color: red;
    color: white;
}

#boom-button.blue {
    background-color: blue;
    color: white;
}

/* Ses Kontrolü */
#sound-control {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 14px;
}
