body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 420px;
  min-height: 100vh;
  overflow-y: auto;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.background_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: auto;
  z-index: 0;
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

/* TOP BAR */
.top_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgb(233 208 208 / 50%) 0%, rgba(0, 0, 0, 0.3) 100%);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top_bar_left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top_bar_logo {
    width: 75px;
    height: auto;
    object-fit: contain;
    margin-left: -10px;
    margin-right: -20px;
}

.top_bar_info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand_name_top {
    font-size: 18px;
    font-weight: bold;
    color: #dddbcc;
}

.top_bar_stars {
  font-size: 14px;
  color: gold;
  letter-spacing: 2px;
}

/* CONTACT BUTTON */
.contact_button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
  flex-shrink: 0;
}

.contact_button img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.contact_button:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.contact_button:active {
  transform: scale(1.1);
}

/* TITLE BLOCK */
.title_block {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}

.top_title_img {
  width: 90%;
}

/* LOGO */
.logo_top {
    width: 60%;
    margin-top: -6%;
}

/* ACTION BUTTONS */
.action_container {
  display: flex;
  width: 90%;
  margin-top: -3%;
  gap: 12px;
  justify-content: center;
}

.action_button_img {
  width: 48%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}

.action_button_img:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.action_button_img:active {
  transform: scale(1.05);
}

/* CHARACTER IMAGE */
.character_img {
  width: 100%;
  margin-top: -5%;
  margin-bottom: 30px;
  animation: floatGlow 3s ease-in-out infinite;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.4));
  }
  50% {
    transform: translateY(15px);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
  }
}

/* IGAMING CONTENT */
.igaming_content {
  width: 90%;
  text-align: center;
}

.igaming_content p {
  font-size: 12px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  font-family: Arial, sans-serif;
}

.brand_name {
  color: #ffd700;
  font-weight: bold;
}

/* GAME LOGO */
.logo_game_img {
  width: 85%;
  margin-top: 15px;
}

/* FOOTER */
.footer_container {
  display: flex;
  gap: 20px;
  width: 90%;
  margin-top: 15px;
  margin-bottom: 30px;
  justify-content: center;
}

.footer_img {
  flex: 1;
  width: 45%;
}
