@charset "UTF-8";

main {
  background-image: url('img/bg-black-premium.png');
  background-repeat: repeat;
  background-size: 100px auto; /* --- Shrunk for Mobile --- */
  background-color: #0d0d0d !important;
}

.section--feature .section__title .heading {
  color: #D4AF37 !important;
	font-weight: 600;
}

/* --- Floating Menu Container --- */
.floating-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0d0d0d;
  border-top: 1px solid rgba(230, 195, 92, 0.4); /* --- Thin Gold Top Line (with opacity) --- */
  z-index: 9999;
}

/* --- Inner Layout for PC (Max Width 1152px) --- */
.floating-menu__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 6px 10px; /* --- Narrowed for Mobile --- */
  box-sizing: border-box;
}

/* --- List Style --- */
.floating-menu__list {
  display: table;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* --- Item Style --- */
.floating-menu__item {
  display: block;
  float: left;
  width: 33.333%;
  padding: 4px; /* --- Narrowed for Mobile --- */
  box-sizing: border-box;
}

/* --- Link Anchor --- */
.floating-menu__item a {
  display: block;
  text-decoration: none;
}

/* --- Gold Rounded Box --- */
.floating-menu__item .btn-box {
  display: block;
  border: 1px solid #e6c35c; /* --- Updated Gold Color --- */
  border-radius: 6px;
  background-color: rgba(230, 195, 92, 0.05); /* --- Tiny Gold Tint --- */
  padding: 8px 4px; /* --- Narrowed height for Mobile --- */
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.floating-menu__item a:active .btn-box {
  background-color: rgba(230, 195, 92, 0.2);
}

/* --- Emoji Icon Style --- */
.floating-menu__item .icon {
  font-size: 14px;
  margin-left: 4px;
  vertical-align: middle;
}

/* --- Text Style --- */
.floating-menu__item .text {
  font-size: 11px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}

/* --- Responsive Layout for PC (Min Width 750px) --- */
@media (min-width: 750px) {
  main {
    background-size: 200px auto; /* --- Original size for PC --- */
    padding-bottom: 76px !important; /* --- Adjust this number if you see gaps on PC --- */
  }
  .floating-menu__inner {
    padding: 12px 10px;
  }
  .floating-menu__item {
    width: 16.666%;
    padding: 6px;
  }
  .floating-menu__item .btn-box {
    padding: 22px 8px;
  }
  
  /* --- Hover Action for PC --- */
  .floating-menu__item a:hover .btn-box {
    transform: translateY(-4px);
    background-color: rgba(230, 195, 92, 0.15);
    box-shadow: 0 4px 12px rgba(230, 195, 92, 0.2); /* --- Gold glow --- */
  }
  
  .floating-menu__item .text {
    font-size: 14px;
  }
}

/* --- Content Bottom Padding for Mobile --- */
main {
  padding-bottom: 110px !important;
}