* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #222;
  display: flex;
  justify-content: center;
}

.mobile-container {
  width: 430px;
  background: #1c1c1c;
  min-height: 100vh;
  color: #fff;
padding: 6px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: #111;
}
.sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 273px;
  height: 100vh;
  background: #050505;
  z-index: 9999;
  transition: 0.3s;
  padding: 80px 10px 20px;
  border-right: 1px solid #333;
}

.sidebar.active {
  left: 0;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9998;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  position: relative;
  margin-bottom: 15px;
}

.search-box input {
  width: 100%;
  height: 45px;
  border-radius: 25px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  padding: 0 50px 0 20px;
}

.search-box i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffb300;
}

.menu-item {
  height: 50px;
  background: linear-gradient(#2b2b2b, #111);
  border: 1px solid #333;
  border-radius: 10px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #fff;
}

.menu-item span {
  flex: 1;
  margin-left: 12px;
}

.menu-item i:last-child {
  color: #888;
}
.menu-item {
  height: 50px;
  background: linear-gradient(#2b2b2b, #111);
  border: 1px solid #333;
  border-radius: 10px;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.menu-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  background: #050505;
}

.submenu.active {
  max-height: 800px;
}

.submenu a {
  display: block;
  padding: 14px 35px;
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
}

.submenu a:hover {
  color: #ffb300;
}
/* oofer center */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.submenu.active {
  max-height: 1000px;
}

/* .submenu{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    padding:0 10px;
} */

.submenu a {
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  position: relative;
  font-size: 14px;
}



.badge {
  position: absolute;
  top: 5px;
  right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: red;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* lang */
.language-menu {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.language-menu.active {
  max-height: 200px;
}

.language-menu a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.language-menu a:hover {
  color: #ffb300;
}

.arrow {
  transition: 0.3s;
}

.arrow.rotate {
  transform: rotate(180deg);
}

.logo img {
  height: 75px;
}

.wallet-box {
  display: flex;
  align-items: center;
  background: #000;
  border: 1px solid #f9b400;
  border-radius: 20px;
  overflow: hidden;
}

.wallet-box span {
  padding: 8px 12px;
  color: #ffd700;
}

.wallet-box button {
  background: #3bd63b;
  border: none;
  color: #fff;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.bonus-banner {
  margin-top: 140px;
  padding: 30px;
  border-radius: 15px;
  background: linear-gradient(135deg, #2a1e0d, #6e4b11);
  border: 2px solid gold;
}

.bonus-banner h2 {
  color: #ffd700;
  margin-bottom: 10px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 15px;
  margin-top: 10px;
}

.promo-card img {
  width: 100%;
  border-radius: 10px;
}

.announcement-bar {
  margin: 15px;
  height: 48px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.announce-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb300;
  font-size: 18px;
}

.announce-text {
  flex: 1;
  color: #fff;
  font-size: 14px;
}

.announce-text marquee {
  line-height: 48px;
}

.announce-action {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #ffd700;
  font-size: 18px;
}

.announce-action span {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff2d2d;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title {
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}

.featuredSwiper {
  width: 100%;
  padding: 13px;
}

.game-layout {
  display: flex;
  gap: 10px;
}

.big-game {
  width: 42%;
  background: #7d2cff;
  border-radius: 15px;
  overflow: hidden;
}

.big-game img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.big-game h3 {
  margin: 0;
  padding: 10px;
  color: #fff;
  text-align: center;
}

.small-games {
  width: 58%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.game-card {
  background: #333;
  border-radius: 12px;
  overflow: hidden;
}

.game-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.game-card span {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding: 5px;
}

.swiper-pagination {
  position: relative;
  margin-top: 15px;
}

.swiper-pagination-bullet {
  background: #999;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 20px;
  background: #fff;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #666;
}

.dot.active {
  width: 24px;
  border-radius: 10px;
  background: #ddd;
}

/* category tab */

.category-tabs {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}

.tab-btn {
  flex: 1;
  height: 45px;
  border: none;
  border-radius: 10px;
  background: #3a342f;
  color: #fff;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(#ffde78, #d9a02f);
  color: #5c3000;
  font-weight: 600;
}

.tab-content {
  display: none;
  padding-top: 15px;
}

.tab-content.active {
  display: block;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.game-card {
  background: #444;
  border-radius: 12px;
  height: 140px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 15px;
}

.game-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #d6a33b;
  background: #222;
}

.game-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.game-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-align: center;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}
/* grand prize */
.grand-prize-wrap {
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
}

.grand-prize-title {
  width: 90%;
  margin: 0 auto 15px;
  text-align: center;
  background: #e8e8e8;
  color: #333;
  padding: 8px;
  border-radius: 30px;
  font-weight: 600;
}

.grand-prize-track {
  display: flex;
  gap: 15px;
  animation: scrollPrize 15s linear infinite;
}

.winner-card {
  min-width: 90px;
  text-align: center;
  flex-shrink: 0;
}

.winner-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: auto;
}

.winner-card p {
  margin: 5px 0 2px;
  color: #fff;
  font-size: 12px;
}

.winner-card span {
  color: #ffb300;
  font-weight: 700;
}

@keyframes scrollPrize {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* contact section */
.contact-section {
  text-align: center;
  padding: 25px 15px;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.social-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #c68d07;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  text-decoration: none;
}

.about-text {
  color: #bbb;
  line-height: 1.4;
}
/* bottom section */
.bottom-nav {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  background: #111;
  padding: 12px 0;
}

.bottom-nav a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}
/* event promo */
.promo-wrapper {
  background: #000;
  min-height: 100vh;
}

.top-tabs {
  display: flex;
  height: 50px;
  border-bottom: 1px solid #333;
}

.top-tabs a {
  flex: 1;
  color: #fff;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  position: relative;
}

.top-tabs a.active {
  color: #ffd54f;
}

.top-tabs a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 3px;
  background: #ffd54f;
}

.promo-body {
  display: flex;
}

.left-menu {
  width: 95px;
  padding: 10px 5px;
}

.side-tab {
  width: 100%;
  height: 42px;
  margin-bottom: 10px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(#3b3b3b, #1b1b1b);
  color: #fff;
  font-size: 12px;
}

.side-tab.active {
  background: linear-gradient(#ffdd66, #c89218);
  color: #000;
}

.small-btn {
  width: 100%;
  height: 32px;
  margin-bottom: 10px;
  border: 1px solid #e0b84f;
  background: #000;
  color: #e0b84f;
  border-radius: 6px;
  font-size: 11px;
}

.blue {
  background: #1e88e5;
  color: #fff;
  border: none;
}

.right-content {
  flex: 1;
  padding: 10px;
}

.promo-card {
  margin-bottom: 12px;
  width: 100%;
}

.promo-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
/* mission section of event page */
.mission-section {
  background: #000;
  padding: 10px;
  color: #fff;
}

.mission-top-card {
  background: #111;
  border-radius: 10px;
  padding: 12px;
}

.mission-header {
  display: flex;
  justify-content: space-between;
  color: #ffd54f;
  margin-bottom: 15px;
}

.mission-levels {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.level-item img {
  width: 55px;
}

.level-item span {
  display: block;
  color: #888;
  font-size: 12px;
  margin-top: 5px;
}

.mission-tabs-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0;
}

.mission-btn {
  background: #1b1b1b;
  border: 1px solid #444;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  position: relative;
}

.mission-btn.active {
  background: #f5c84c;
  color: #000;
}

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: red;
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.refresh-btn {
  margin-left: auto;
  color: #f5c84c;
  text-decoration: none;
}

.mission-card {
  background: #171717;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.mission-card h4 {
  margin: 0;
  padding: 12px;
  background: linear-gradient(to right, #3d2d0d, #151515);
  font-size: 16px;
}

.mission-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}

.coin {
  display: inline-block;
  background: #f5a300;
  color: #000;
  padding: 4px 8px;
  border-radius: 50%;
  font-size: 12px;
}

.energy {
  color: #00ff33;
  font-weight: 700;
}

.claim-btn {
  background: #00d600;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
}

.go-btn {
  background: #d7b04c;
  color: #000;
  border: none;
  padding: 10px 30px;
  border-radius: 6px;
}

.mission-rules {
  background: #111;
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
  line-height: 1.8;
  color: #ddd;
}
.mission-rules-list {
  margin: 0;
  padding-left: 20px;
  color: #ddd;
  line-height: 1.8;
  font-size: 14px;
}

.mission-rules-list li {
  margin-bottom: 8px;
  padding: 10px;
}
/* vip tab */
.member-panel {
  padding: 15px;
  background: #000;
  min-height: 100vh;
}

.member-banner {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.member-level h1 {
  margin: 0;
  color: #405a9c;
  font-size: 48px;
  font-style: italic;
}

.member-level span {
  background: #3bd63b !important;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.member-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #3bd63b !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

.reward-title {
  color: #fff;
  text-align: center;
  margin: 25px 0;
}

.reward-switch {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.reward-btn {
  background: none;
  border: none;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
}

.reward-btn.active {
  color: #ffcc33;
  border-bottom: 3px solid #ffcc33;
}

.reward-table {
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
}

.reward-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
  background: #111;
}

.reward-row:last-child {
  border-bottom: none;
}

.tier-col {
  width: 80px;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid #333;
}

.reward-col {
  flex: 1;
  color: #fff;
  padding: 15px;
}

.reward-col strong {
  color: #ffb400;
}

.action-col {
  width: 120px;
  text-align: center;
  color: #ffb400;
}

.deposit-btn {
  background: #ffb400;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}
.reward-content {
  display: none;
}

.reward-content.active {
  display: block;
}

.reward-tab {
  background: none;
  border: none;
  color: #fff;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
}

.reward-tab.active {
  color: #ffcc33;
  border-bottom: 3px solid #ffcc33;
}

.rules-box {
  background: #111;
  border-radius: 10px;
  padding: 15px;
  color: #fff;
  line-height: 1.8;
}
/* unclaimed  */
#unclaimed {
  background: #000;
  min-height: 100vh;
  padding: 12px;
}

.wallet-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 6px 12px;
  border: 2px solid #caa44d;
  border-radius: 20px;
  color: #ffb400;
  margin-bottom: 18px;
}

.wallet-amount {
  font-size: 19px;
  font-weight: 700;
}

.unclaim-card {
  background: #111;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 14px;
}

.unclaim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.unclaim-header h3 {
  color: #fff;
  margin: 0;
  font-size: 20px;
}

.reward {
  font-weight: 700;
  font-size: 22px;
}

.reward.green {
  color: #00ff4c;
}

.reward.gold {
  color: #ffb400;
}

.unclaim-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-size: 13px;
}

.source {
  color: #d4a537;
  flex: 1;
}

.go-btn {
  width: 90px;
  height: 38px;
  border: none;
  border-radius: 6px;
  background: #d4b04c;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}
/* history section */
#history {
  background: #000;
  min-height: 100vh;
  position: relative;
}

.history-empty {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.history-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 12px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.history-icon i {
  font-size: 50px;
  color: #333;
}

.history-empty p {
  color: #8f8f8f;
  font-size: 18px;
}

.history-empty a {
  color: #d4a537;
  text-decoration: none;
  font-weight: 600;
}

.history-empty a:hover {
  color: #ffcc33;
}

/* support page */
.support-navbar {
  display: flex;
  overflow-x: auto;
  background: #111;
  border-bottom: 1px solid #333;
}

.support-navbar::-webkit-scrollbar {
  display: none;
}

.support-nav-btn {
  position: relative;
  padding: 14px 18px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  font-size: 15px;
}

.support-nav-btn.active {
  color: #d8b24a;
}

.support-nav-btn.active::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 3px;
  background: #d8b24a;
}

.support-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: red;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-panel {
  display: none;
  padding: 12px;
  background: #000;
  min-height: calc(100vh - 120px);
}

.support-panel.active {
  display: block;
}

.service-box {
  background: #111;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
}

.service-box h2 {
  color: #fff;
  margin-bottom: 10px;
}

.service-box p {
  color: #999;
}

.service-btn {
  margin-top: 12px;
  background: #d8b24a;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  color: #000;
  font-weight: 600;
}

.social-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #2a2a2a;
}

.social-info {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-info img {
  width: 48px;
  height: 48px;
}

.social-info h4 {
  color: #fff;
  margin: 0;
}

.social-info small {
  color: #888;
}

.contact-btn {
  background: #d8b24a;
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  color: #000;
  font-weight: 600;
}
/* news */
.news-empty-box {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
}

.news-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.news-empty-box p {
  font-size: 18px;
  color: #8d8d8d;
}

.news-empty-box a {
  color: #d6ad4b;
  text-decoration: none;
  font-weight: 600;
}
/* notice */
.notice-panel {
  padding: 12px;
  background: #000;
  min-height: 100vh;
}

.notice-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.notice-select {
  height: 38px;
  background: #161616;
  border: 1px solid #333;
  color: #fff;
  border-radius: 20px;
  padding: 0 15px;
}

.notice-search {
  flex: 1;
  position: relative;
}

.notice-search input {
  width: 100%;
  height: 38px;
  border-radius: 20px;
  border: 1px solid #444;
  background: #161616;
  color: #fff;
  padding: 0 40px 0 15px;
}

.notice-search i {
  position: absolute;
  right: 14px;
  top: 11px;
  color: #d9b44a;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice-item {
  background: #111;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4b400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-left h4 {
  margin: 0;
  color: #fff;
  font-size: 15px;
}

.notice-left span {
  color: #888;
  font-size: 12px;
}

.notice-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
}

.notice-item.unread .notice-right strong {
  color: #fff;
}

.notice-right i {
  color: #777;
}
/* marquee section */
.marq-page {
  background: #000;
  min-height: 100vh;
  padding: 12px;
}

.marq-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.marq-filter {
  width: 90px;
  height: 34px;
  background: #141414;
  border: 1px solid #333;
  color: #fff;
  border-radius: 20px;
  padding: 0 12px;
}

.marq-search {
  flex: 1;
  position: relative;
}

.marq-search input {
  width: 100%;
  height: 34px;
  background: #141414;
  border: 1px solid #444;
  border-radius: 20px;
  color: #fff;
  padding: 0 40px 0 15px;
}

.marq-search i {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #d7b24b;
}

.marq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marq-card {
  background: linear-gradient(to right, #111, #1a1a1a);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.marq-left {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 90%;
}

.marq-icon {
  font-size: 20px;
  color: #ffb400;
}

.marq-info {
  width: 100%;
}

.marq-info h4 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marq-info span {
  color: #7f8ca3;
  font-size: 12px;
}

.marq-card .fa-chevron-right {
  color: #777;
}
/* reward section */
.rwd-feedback-page {
  background: #000;
  min-height: 100vh;
  padding: 12px;
}

.rwd-tab-area {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.rwd-tab-btn {
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  background: #161616;
  color: #fff;
  cursor: pointer;
}

.rwd-tab-btn.active {
  background: #d8b24c;
  color: #000;
  font-weight: 600;
}

.rwd-card {
  background: #111;
  border-radius: 12px;
  padding: 14px;
}

.rwd-card label {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  margin-top: 15px;
  font-size: 14px;
}

.rwd-card label span {
  color: #ff3d3d;
}

.rwd-note {
  color: #888 !important;
}

.rwd-select {
  width: 100%;
  height: 42px;
  background: #161616;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  padding: 0 12px;
}

.rwd-textarea {
  width: 100%;
  height: 130px;
  background: #161616;
  border: 1px solid #444;
  border-radius: 6px;
  color: #fff;
  padding: 12px;
  resize: none;
}

.rwd-counter {
  text-align: right;
  color: #888;
  font-size: 12px;
  margin-top: 5px;
}

.rwd-upload-box {
  width: 70px;
  height: 70px;
  border: 1px solid #333;
  background: #161616;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-top: 10px;
}

.rwd-upload-text {
  color: #888;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 10px;
}

.rwd-rules {
  margin-top: 20px;
}

.rwd-rules h4 {
  color: #fff;
  margin-bottom: 10px;
}

.rwd-rules p {
  color: #888;
  line-height: 1.8;
  font-size: 14px;
}

.rwd-submit-btn {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 8px;
  background: #d8b24c;
  color: #000;
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
}
/* profile page */
.pf-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding: 12px;
}

.pf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pf-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pf-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.pf-user-info h4 {
  margin: 0;
  font-size: 18px;
}

.pf-user-info p {
  margin: 5px 0 0;
  color: #ccc;
}

.pf-icons {
  display: flex;
  gap: 15px;
  font-size: 22px;
}

.pf-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.pf-balance {
  font-size: 28px;
  color: #fff;
}

.pf-action {
  text-align: center;
}

.pf-action img {
  width: 42px;
  display: block;
  margin: auto;
}

.pf-card {
  background: #121212;
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
}

.pf-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf-card-header a {
  color: #d8b24c;
  text-decoration: none;
}

.pf-checkin {
  display: flex;
  gap: 8px;
  overflow: auto;
  margin-top: 15px;
}

.pf-day {
  min-width: 70px;
  background: #1b1b1b;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.pf-day h5 {
  margin: 0;
  color: #ffb700;
}

.pf-day span {
  display: block;
  margin-top: 8px;
}

.pf-day button {
  margin-top: 8px;
  background: #00d300;
  border: none;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
}

.pf-task {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #222;
}

.pf-task:last-child {
  border: none;
}

.pf-task p {
  color: #ffb700;
  margin: 5px 0 0;
}

.pf-green-btn {
  background: #00d300;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

.pf-gold-btn {
  background: #d8b24c;
  border: none;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
}

.pf-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.pf-quick-item {
  text-align: center;
}

.pf-quick-item i {
  font-size: 26px;
  color: #d8b24c;
  display: block;
  margin-bottom: 8px;
}

.pf-quick-item span {
  font-size: 13px;
}
/* top header */
/* DOWNLOAD BAR */

.pkr-download-bar {
  height: 60px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid #222;
}

.close-download {
  background: none;
  border: none;
  color: #ffc107;
  font-size: 18px;
  cursor: pointer;
}

.download-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-content img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.download-text h4 {
  color: #fff;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}

.download-btn {
  background: #e2c15a;
  color: #fff;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

/* HEADER */
.header {
  position: fixed;
  z-index: 9999;
  width: 430px;
}
/* responsive */
/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 9999;
}

/* Mobile */
@media (max-width: 480px) {
  .header {
    width: 100%;
    max-width: 100%;
  }

  .pkr-download-bar {
    height: 55px;
    padding: 0 8px;
  }

  .download-content img {
    width: 30px;
    height: 30px;
  }

  .download-text h4 {
    font-size: 13px;
  }

  .download-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .close-download {
    font-size: 16px;
  }
}
/* 320px Devices */
@media (max-width: 320px) {
  .header {
    width: 100%;
    max-width: 100%;
  }

  .pkr-download-bar {
    height: 50px;
    padding: 0 5px;
  }

  .close-download {
    font-size: 14px;
  }

  .download-content {
    gap: 5px;
  }

  .download-content img {
    width: 24px;
    height: 24px;
  }

  .download-text h4 {
    font-size: 11px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .download-btn {
    padding: 5px 8px;
    font-size: 10px;
    border-radius: 5px;
  }

  /* Header Logo */
  .logo img {
    max-width: 120px;
    height: auto;
  }

  /* Top Tabs */
  .top-tab {
    min-width: auto;
    font-size: 11px;
    padding: 0 3px;
  }

  /* Left Menu */
  .left-menu {
    width: 60px;
  }

  .side-tab {
    font-size: 9px;
    padding: 6px 2px;
  }

  .small-btn {
    font-size: 8px;
    padding: 5px 2px;
  }

  /* Promo Cards */
  .promo-card img {
    border-radius: 8px;
  }

  /* Mission Buttons */
  .claim-btn,
  .go-btn {
    width: 100%;
    min-width: unset;
    height: 34px;
    font-size: 12px;
  }
}
/* container */
@media (max-width:430px){

    .mobile-container{
        max-width:100%;
        width:100%;
        margin:0;
    }

}
/* 320px Mobile Devices */
@media (max-width:320px){

    .mobile-container{
        width:100%;
        max-width:320px;
        margin:0 auto;
        padding:6px;
        overflow-x:hidden;
    }

}
/* preloader */
#preloader{
    position:fixed;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    max-width:430px;
    height:100vh;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    transition:opacity .5s ease;
}

#preloader img{
    width:120px;
    max-width:40%;
    animation:logoPulse 1.5s infinite ease-in-out;
    border-radius: 20px;
    padding: 20px;
    border: 2px solid rgb(165, 152, 35);
}
@media (max-width:320px){
    #preloader img{
        width:90px;
    }
}

@keyframes logoPulse{
    0%{
        transform:scale(1);
        opacity:0.8;
    }
    50%{
        transform:scale(1.1);
        opacity:1;
    }
    100%{
        transform:scale(1);
        opacity:0.8;
    }
}