@import url(https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&family=Inter:wght@100;300;400;500;600;700;800;900&display=swap);

:root {
  --bg-color: #121212;
  --text-color: #ffffff;
  --accent-blue: #007bff;
  --accent-yellow: #eaff00;
  --dark-gray: #1e1e1e;
  --secondary-bg: #2a2a2a;
  --font-main: "Inter", sans-serif;
  --font-headings: "Chakra Petch", sans-serif;
}
body {
  font-family: var(--font-main);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
    background-image: url("/img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/**
.wave-overlay{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wave{
  position: absolute;
  left: -15%;
  width: 130%;
  height: 180px;
  opacity: .28;
}

.wave svg{
  width: 100%;
  height: 100%;
  display: block;
}

.wave path{
  fill: none;
  stroke: white;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 10 14;
  animation: flow 18s linear infinite;
}

.w1{ top: 10%; }
.w2{ top: 34%; opacity: .18; }
.w3{ top: 58%; }
.w4{ top: 78%; opacity: .15; }
**/

@keyframes flow{
  from{ stroke-dashoffset: 0; transform: translateX(-2%); }
  to{ stroke-dashoffset: -120; transform: translateX(2%); }
}

@keyframes driftLine{
  from{ transform: translateX(-8%) rotate(-6deg); }
  to{ transform: translateX(8%) rotate(-6deg); }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 50px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
  position: relative;
}

.logo-img {
  height: 70px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
nav a {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background 0.3s ease;
  font-weight: 500;
}
nav a:hover {
  background: var(--accent-blue);
  color: white;
}

h2 {
  color: #ffffff;
  margin: 0 0 5px 0;
}

p {
  margin: 0 0 20px 0;
  font-size: 0.95em;
  color: #ffffff;
  line-height: 1.6;
}
.main-content {
  flex: 1;
  padding: 60px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  z-index: 1;
}

.coming-soon-container { 
background-color: var(--accent-blue); 
color: white; 
padding: 8px 20px;
border-radius: 20px; 
font-family: var(--font-headings);
margin-top: 14px;
font-weight: 700; 
display: flex; 
align-items: center; 
gap: 10px;
}

.card-mu {
  background: var(--dark-gray);
  padding: 20px;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.badge-mmorpg {
  position: absolute;
  top: 0;
  right: 30px;
  width: 70px;
  height: 90px;
  background-color: var(--accent-blue);
  color: #000;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
  z-index: 2;
}

.game-art {
  width: 410px;
  height: 495px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 486px;
}

.game-tags {
  color: var(--accent-blue);
  font-size: 0.9em;
  margin: 10px 0 15px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.stats-box {
  background: var(--secondary-bg);
  padding: 10px;
  border-radius: 8px;
  margin: 20px 0;
  display: flex;
  justify-content: space-around;
}
.stat-item {
  text-align: center;
  font-size: 0.85em;
}

.dot {
  color: var(--accent-yellow);
  margin-right: 8px;
  animation: blink 1.5s infinite;
}

.dot-yellow {
  color: var(--accent-yellow);
  margin-right: 8px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.action-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.action-buttons img {
  height: 45px;
  cursor: pointer;
  transition: transform 0.2s;
}
.action-buttons img:hover {
  transform: scale(1.05);
}
.site-button {
  display: block;
  text-align: center;
  margin-top: 30px;
  padding: 15px;
  background: var(--accent-blue);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s;
  font-family: var(--font-headings);
}
.site-button:hover {
  background: #0056b3;
}
/**
.contact-section{
  position: relative;
  display:grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  align-items:center;
  padding: 110px 8vw;
  background: #121225;
  overflow:hidden;
}
**/
footer {
  padding: 15px;
  text-align: center;
  background: var(--dark-gray);
  color: #888;
  font-size: 0.85em;
  z-index: 1;
}
