@font-face {
    font-family: 'Gotham';
    src: url('font/GothamMedium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('font/GothamBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body, html {
  height: 100%;
  margin: 0;
  font-family: 'Gotham', Arial, sans-serif;
  background: #191a1d url('../img/background.png') center center / cover no-repeat fixed;
  color: white;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.blur-background {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 16px;
  padding-bottom: 120px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
}

.container {
  text-align: center;
}

.logo img {
  width: min(90vw, 400px);
  height: auto;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

.hytale-title{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0em; /* espace entre l’icône et le texte */
}

.hytale-icon{
  height: 1.5em;     /* même taille que le texte */
  width: auto;
  display: inline-block;
  margin-right: 0.05em;
}

a,
button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}

.brand {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.brand img {
  width: clamp(120px, 25vw, 220px);
  height: auto;
}

.brand-note {
  margin: 0;
  font-size: 0.85em;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Lexend', 'Gotham', Arial, sans-serif;
  font-weight: 500;
}

.announcement {
  margin: 8px 0;
  font-size: 1.5em;
  font-family: 'Gotham', Arial, sans-serif;
}

.play-status {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lexend', 'Gotham', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: status-pulse 0.9s ease-out infinite;
}

.status-text {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}

.social-media {
  margin-top: 30px;
}

.social-link {
  text-decoration: none;
  color: white;
  margin: 0 10px;
  font-size: 1.7em;
  font-family: 'Gotham', Arial, sans-serif;
}

.social-link:hover {
  color: #ccc;
}
