body {
  background-image: url("/images/event/loy_krathong.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.bg-fullbody {
  height: 95vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.left-element {
  text-align: center;
  color: white;
}

.server-box {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(20, 20, 30, 0.85);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(6px);
}

.server-address {
  font-size: 1rem;
  font-weight: 700;
}

.server-status {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.dot-status {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 1; }
  50%  { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(1);   opacity: 1; }
}

.right-element {
  text-align: center;
}

.iframe-custom {
  width: 380px;
  height: 580px;
  border: none;
}

@media (max-width: 992px) {
  .iframe-custom {
    width: 100%;
    height: 450px;
  }
}

/* ── Feature cards ── */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius);
  padding: 28px 24px;
  height: 100%;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--site-accent);
}
