* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


body {
  background: radial-gradient(circle at top, #E6F9FF, #FFFBE6);
  font-family: "Nunito", sans-serif;
  color: #333;
  overflow-x: hidden;
}




header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(255, 200, 100, 0.1);
  position: relative;
  z-index: 100;
}

#header-container {
  min-height: 120px;
  width: 100%;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  color: #FF7A45;
  text-shadow: 0 0 6px rgba(255, 122, 69, 0.3);
  white-space: nowrap;
  text-decoration: none;
}


.pc-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pc-nav a {
  text-decoration: none;
  color: #555;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 20px;
}

.pc-nav a.active {
  color: #FFF;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD966, #FF7A45);
  box-shadow: 0 4px 12px rgba(255, 122, 69, 0.4);
}

.pc-nav a:not(.active):hover {
  color: #FF7A45;
  background: rgba(255, 122, 69, 0.08);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFF;
  min-width: 200px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border: 1px solid #FFD966;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: fadeIn 0.2s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-content::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #FFF;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-item.active {
  color: #FF7A45;

  background: #FFFBE6;

  border: none;

  box-shadow: none;

  font-weight: 800;
  border-radius: 20px;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 20px;

  text-decoration: none;
  color: #444;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  border: none;

  background: #FFF;

}

.mega-item:hover {
  background: #FFFBE6;
  color: #FF7A45;
  transform: translateX(4px);
}

.mega-item .icon {
  font-size: 16px;
  width: 16px;
  text-align: center;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #FF7A45;
}


.mobile-pills {
  display: none;
  padding: 12px 16px;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.5);
  -webkit-overflow-scrolling: touch;
}

.mobile-pills::-webkit-scrollbar {
  display: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #FFF;
  border: 1px solid #FFD966;
  border-radius: 20px;
  text-decoration: none;
  color: #555;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pill.active {
  background: linear-gradient(135deg, #FFD966, #FF7A45);
  color: #FFF;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(255, 122, 69, 0.3);
}


.drawer {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: #FFF;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease-in-out;
  padding: 24px;
  overflow-y: auto;
}

.drawer.open {
  right: 0;
}

.drawer-close {
  font-size: 24px;
  float: right;
  cursor: pointer;
  color: #999;
}

.drawer-section {
  margin-top: 24px;
}

.drawer-link {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s;
}

.drawer-link.active {
  color: #FFF;
  background: linear-gradient(135deg, #FFD966, #FF7A45);
  box-shadow: 0 3px 8px rgba(255, 122, 69, 0.3);
}

.drawer-sub-list {
  padding-left: 16px;
  margin-top: 8px;
  display: none;
}

.drawer-section.expanded .drawer-sub-list {
  display: block;
}

.drawer-sub-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  border-radius: 10px;
}

.drawer-sub-list a.active {
  color: #FF7A45;
  background: #FFFBE6;
  font-weight: 800;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

/* ========== Cards Menu  ========== */
.cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.card {
  background: linear-gradient(135deg, #FFF, #FFFBE6);
  border-radius: 16px;
  padding: 24px;
  width: 200px;
  box-shadow: 0 4px 10px rgba(255, 180, 100, 0.15);
  color: #333;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(255, 180, 100, 0.25);
  border-color: rgba(255, 122, 69, 0.3);
}

.card:hover h3 {
  color: #FF7A45;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.card b {
  margin: 0 0 4px 0;
  color: #444;
  font-weight: 800;
  font-size: 18px;
  transition: color 0.3s ease;
}

.card p {
  font-size: 13px;
  color: #999;
  font-weight: 600;
}

/* ========== Footer  ========== */
footer {
  margin-top: 50px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #444;
}

.footer-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

.footer-links a {
  text-decoration: inherit;
  color: inherit;
}


.page-wheel .card-wheel {
  display: none;
}


.page-coin .card-coin {
  display: none;
}




@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}


.content-section {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.content-main {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.info-block {
  background: #FFF;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(255, 200, 100, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}



.info-block h1,
.info-block h2 {
  font-size: 18px;
  color: #1E293B;
  margin-bottom: 10px;
  font-weight: 800;
}

.info-block h3 {
  font-size: 16px;
  color: #666;
  margin: 16px 0 6px;
  font-weight: 800;
}

.info-block p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* FAQ  */
.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}


.faq-item a {
  color: #FF7A45;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}


.faq-item a:hover {
  color: #E0531F;
}


.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 5px 0;
  font-size: 15px;
  font-weight: 800;
  color: #444;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  color: #FF7A45;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.3s ease;

}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
  content: "+";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
  padding: 0 0 16px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  margin-bottom: 16px;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

th {
  background-color: #f5f5f5;
  color: #333;
}

.share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.share a,
.share button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #CBD5E1;
  color: #94A3B8;
  transition: all 0.3s ease;
  cursor: pointer;
}


.share a:hover,
.share button:hover {
  background: #FFF;
  border-color: #FFD966;
  color: #FF7A45;
  box-shadow: 0 2px 8px rgba(255, 122, 69, 0.2);
  transform: translateY(-2px);
}

.share a svg,
.share button svg {
  width: 18px;
  height: 18px;
}


.drawer-section .twitter-btn,
.drawer-section .facebook-btn,
.drawer-section .copy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #64748B;
  text-decoration: none;
  transition: all 0.2s ease;
  background: none;
  border: none;
}

.drawer-section .twitter-btn:hover,
.drawer-section .facebook-btn:hover,
.drawer-section .copy-btn:hover {
  background: #FFFBE6;
  color: #FF7A45;
}

.drawer-section .twitter-btn svg,
.drawer-section .facebook-btn svg,
.drawer-section .copy-btn svg {
  width: 16px;
  height: 16px;
}



@media (max-width: 768px) {
  header {
    padding: 12px 16px;
  }

  .pc-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-pills {
    display: flex;
  }

  .cards {
    gap: 12px;
    padding: 0 20px;
  }

  .card {
    width: calc(50% - 6px);
    padding: 16px;
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .card-icon {
    font-size: 32px;
    margin-bottom: 0;
    margin-right: 12px;
  }

  .card h3 {
    font-size: 15px;
  }

  .card p {
    font-size: 12px;
  }

  .content-section {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }



  .info-block {
    padding: 20px;
  }

  .info-block h1,
  .info-block h2 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .share {
    display: none;
  }

}
