* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: Arial, sans-serif;
	background: linear-gradient(to bottom, #1a1a2e, #16213e, #0f3460);
	color: #fff;
	max-width:900px;
	margin: 0 auto;
}
header {
	background-color: #1e293b;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header img {
	max-height: 100px;
}
header .search-bar {
	flex: 1;
	margin: 0 30px;
	display: flex;
	align-items: center;
}
header .search-bar input {
	width: 100%;
	padding: 8px;
	border: none;
	border-radius: 5px;
	font-size: 14px;
}
header .support-icon {
	margin-left: 10px;
	width: 32px;
	height: 32px;
	cursor: pointer;
}
header .support-icon img {
	width: 100%;
	height: auto;
}
header .buttons {
	display: flex;
	gap: 5px;
}
header .buttons button {
	padding: 8px 12px;
	background-color: #2563eb;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}
header .buttons button:hover {
	background-color: #1d4ed8;
}
h1 {
	font-size: 36px;
	font-weight: 500;
	margin:10px
}
h2 {
	font-size: 28px;
	margin:10px
}
h3 {
	font-size: 24px;
	margin:10px
}
h4 {
	font-size: 20px;
	margin:10px
}
h5 {
	font-size: 18px;
	margin:10px
}
.carousel {
	background-color: #1e293b;
	padding: 10px;
	text-align: center;
}
.carousel img {
	max-width: 100%;
	height: auto;
}
p {
    font-size: 16px;
    line-height: 28px;
    margin: 10px;
}

.promo {
	background-color: #a72b77;
	padding: 15px;
	text-align: center;
	margin: 10px 0;
	border-radius: 5px;
}
.promo p {
	font-size: 14px;
	color: #fff;
}
.promo button {
	margin-top: 10px;
	padding: 10px 20px;
	background-color: #1e293b;
	border: none;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
}
.promo button:hover {
	background-color: #1d4ed8;
}

  .language-switcher {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      padding: 10px 20px;
    }

    .language-switcher a {
      text-decoration: none;
      font-weight: bold;
      padding: 8px 14px;
      border-radius: 5px;
      background-color: #444;
      color: #fff;
      transition: background 0.3s, transform 0.2s;
      font-family: sans-serif;
    }

    .language-switcher a:hover {
      background-color: #FF8C00;
      transform: scale(1.05);
    }

    .language-switcher a.active {
      background-color: #FFD700;
      color: #000;
    }
	
ul {
	list-style: disc inside;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

ul li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: #e5e5e5;
}
.menu {
	display: flex;
	justify-content: space-around;
	background-color: #1e293b;
	padding: 10px;
	border-bottom: 2px solid #2563eb;
	font-size: 18px;
}
.menu a {
	color: #fff;
	text-decoration: none;
	padding: 5px;
	transition: color 0.3s;
}
.menu a:hover {
	color: #2563eb;
}
.menu a.active {
	color: #ff0000;
}
.category-section {
	padding: 10px;
}
.category-title {
	font-size: 1.2em;
	margin-bottom: 10px;
	color: #ffd700;
	display: flex;
	align-items: center;
}
.category-title img {
	margin-right: 10px;
	height: 30px;
	width: 30px;
}
.games {
	display: grid;
	grid-template-columns: repeat(3, 2fr);
	gap: 10px;
}
.game-card {
	background-color: #1e293b;
	border-radius: 10px;
	text-align: center;
	padding: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}
.game-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
.game-card img {
	max-width: 100%;
	border-radius: 10px;
	margin-bottom: 5px;
}
.game-card p {
	font-size: 0.9em;
	margin-top: 5px;
}

.error-code {
	font-size: 6em;
	font-weight: bold;
	color: #ff4757;
	margin: 0;
}
.message {
	font-size: 1.5em;
	margin: 20px 0;
}
.back-home {
	text-decoration: none;
	font-size: 1.2em;
	color: #1e90ff;
	padding: 10px 20px;
	border: 2px solid #1e90ff;
	border-radius: 5px;
	transition: 0.3s;
}
.back-home:hover {
	background: #1e90ff;
	color: #fff;
}
.illustration {
	margin: 20px 0;
}
.illustration img {
	max-width: 100%;
	height: auto;
}
footer {
	background-color: #1e293b;
	text-align: center;
	padding: 10px;
	margin-top: 10px;
	border-top: 2px solid #2563eb;
	font-size: 12px;
}
footer p {
	color: #94a3b8;
}
footer a {
	color: #2563eb;
	text-decoration: none;
}
footer a:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.menu {
		flex-direction: column;
		align-items: center;
	}
	.games {
		grid-template-columns: repeat(3, 2fr);
	}
	header {
		flex-direction: column;
		align-items: center;
	}
	header .buttons {
		margin-top: 10px;
	}
}

@media (max-width: 480px) {
	.games {
		grid-template-columns: repeat(3, 2fr);
	}
	.menu {
		font-size: 16px;
	}
}
		