body {
	background-color: #14110f;
	color: #f2f2f2;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

a {
	color: #00ff94;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #1affb2;
}

#zone-header {
	background-color: #0e0e0e;
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid #222;
}

#zone-header img {
	max-height: 60px;
	max-width: 130px;
}

#zone-navigation {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
#zone-promo-text .promo-hint-line {
  margin-top: 12px;
  font-size: 16px;
  color: #f8d98b;
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}

#zone-promo-text .promo-hint-code a {
  text-decoration: none;
  font-weight: 700;
  color: #ffb400;
  border-bottom: 1px dashed #ffb400;
  background: transparent;
  padding: 0 4px;
  transition: all 0.25s ease;
  display: inline-block;
  box-shadow: none;
  margin-top: 0;
  font-size: 20px;
  border-radius: 0;
}

#zone-promo-text .promo-hint-code a:hover {
  color: #fff;
  text-shadow: 0;
  border-bottom-color: transparent;
  	transform: none;
	box-shadow:none;
}
#zone-navigation ul {
	list-style: none;
	display: flex;
	gap: 14px;
	padding: 0;
	margin: 0;
}

#zone-navigation li {
	display: inline-block;
}

#nav-login a {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 6px;
	background: linear-gradient(90deg, #ffc926, #ffb300);
	color: #131313;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 0 10px rgba(255, 201, 38, 0.4);
	transition: all 0.3s ease;
}

#nav-login a:hover {
	transform: scale(1.05);
	box-shadow: 0 0 18px rgba(255, 201, 38, 0.7);
}

#nav-register a {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 6px;
	background: #ffffff;
	color: #131313;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

#nav-register a:hover {
	transform: scale(1.05);
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
}

#zone-navigation img {
	width: 28px;
	height: 20px;
}

#zone-promo {
	background: url('main-bg.jpg') center/cover no-repeat;
	color: #f2f2f2;
	text-align: center;
	padding: 60px 20px;
	position: relative;
}

#zone-promo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55); 
	z-index: 0;
}

#zone-promo-text {
	position: relative;
	z-index: 1;
}

#zone-promo-text span {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
	margin: 8px 0;
	text-shadow: 0 0 10px #000;
}

#zone-promo-text a {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 30px;
	background: #ffc926;
	color: #000;
	font-weight: bold;
	border-radius: 6px;
	text-decoration: none;
	box-shadow: 0 0 14px rgba(255, 201, 38, 0.65); 
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#zone-promo-text a:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(255, 201, 38, 0.9);
}

#zone-article {
	padding: 40px 20px;
	max-width: 960px;
	margin: auto;
}

#zone-article h1,
#zone-article h2,
#zone-article h3 {
	color: #ffd700;
}

#zone-article p {
	margin-bottom: 20px;
}

#zone-article ul {
	padding-left: 20px;
}

#zone-article ul li {
	margin-bottom: 10px;
}

#zone-article dl {
	margin: 30px 0;
}

#zone-article dt {
	color: #a8d2f0;
	font-weight: 800;
	font-size: 1.15rem;
	text-shadow: 0 0 2px rgba(50, 199, 165, 0.3);
	margin-top: 20px;
}

#zone-article dd {
	margin-left: 0;
	margin-bottom: 10px;
}

#zone-footer {
	background: #181818;
	color: #bbbbbb;
	padding: 30px 20px;
	text-align: center;
	border-top: 1px solid #222;
}

#zone-footer-nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 14px;
	padding: 0;
	margin: 20px 0 10px;
}

p{
	margin: 10px 0;
}
#zone-footer-nav li {
	display: inline-block;
}

#foot-login a {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 6px;
	background: linear-gradient(90deg, #ffc926, #ffb300);
	color: #131313;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 0 8px rgba(255, 201, 38, 0.2);
	transition: all 0.3s ease;
}

#foot-login a:hover {
	transform: scale(1.05);
	box-shadow: 0 0 16px rgba(255, 201, 38, 0.5);
}

#foot-register a {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 6px;
	background: #ffffff;
	color: #131313;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

#foot-register a:hover {
	transform: scale(1.05);
	box-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

#zone-footer img {
	max-height: 50px;
	margin: 10px 0 0 0;
	max-width: 130px;
}

#zone-footer-wrapper {
	max-width: 960px;
	margin: auto;
}

#zone-copyright {
	font-size: 0.9rem;
	color: #777;
}
