body {
      margin: 0;
      background-color: #c1e5ff;
      font-family: "Inter", sans-serif;
      color: white;
}

.site-header {
  background-color: #d9ecfa;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-title {
  margin: 0;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: bolder;
  text-shadow:
    -1px -1px 0 #1A1C1E,
    1px -1px 0 #1A1C1E,
    -2px  2px 0 #1A1C1E,
    1px  1px 0 #1A1C1E;
}

.site-tagline {
  margin: 4px 0 0 0;
  font-size: 20px;
  color: #1A1C1E;
  font-weight: bold;
}

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  color: black;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 12px;
  transition: background-color 0.2s;
  text-decoration: none;
}

.nav-list a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1A1C1E;
}

.price-bar {
  background-color: #111;
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  padding: 10px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  border-bottom: 2px solid gold;
}

.price-main,
.price-change-wrapper {
  white-space: nowrap;
}

.price-value {
  color: #1E90FF;
}

.price-change-up {
  color: #00e676;
}

.price-change-down {
  color: #ff5252;
}

.hero-section {
  background-color: #c1e5ff;
  background-image: url('assets/landscape.webp');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 20px;
  min-height: 800px;
}

.quick-access-bar {
  background-color: #e8f5ff;
  max-width: 800px;
  margin: 20px auto;
  border-radius: 20px;
  padding: 10px;
  text-align: center;
}

.quick-access-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 16px;
}

.quick-access-item {
  width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-access-icon {
  width: 60px;
  height: 60px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.quick-access-icon:hover {
  transform: scale(1.1);
}

.quick-access-label {
  margin-top: 8px;
  font-weight: bold;  
  font-size: 12px;
  color: #333;
  line-height: 1.2;
}

.quick-access-link {
  text-decoration: none;
}

.hero-logo{
  width: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.hero-title {
  text-align: center;
  font-size: 4.5rem;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #111;
  text-shadow:
    2px 2px 0 #f60195,
    -2px -2px 0 #ffd700,
    0 0 8px rgba(0,0,0,0.2);
}

.hero-subtitle {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 20px;
}

.hero-subtitle::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f60195;
  margin: 12px auto 0;
  border-radius: 2px;
}

.hero-tagline {
  text-align: center;
  font-size: 1.25rem;
  color: #000;
  font-weight: 500;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.hero-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 300px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
}

.contract-info-card {
  border: 2px solid #e0c3fc;
}

.contract-info-card .card-icon {
  color: #8a2be2;
}

.contract-info-card .card-title {
  color: #8a2be2;
}

.contract-info-card .contract-address {
  font-size: 0.9em;
  color: #4682b4;
  word-break: break-all;
  margin-bottom: 20px;
  line-height: 1.4;
}

.contract-info-card .copy-address-button {
  background-color: #f0e6fa;
  color: #8a2be2;
  border: 1px solid #8a2be2;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s, color 0.2s;
}

.contract-info-card .copy-address-button:hover {
  background-color: #8a2be2;
  color: #fff;
}

.buy-info-card {
  border: 2px solid #a8dadc;
}

.buy-info-card .card-icon {
  color: #ffd700;
}

.buy-info-card .card-title {
  color: #4682b4;
}

.buy-info-card .buy-button-group a {
  width: 100%;
  padding: 12px 20px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}

.buy-info-card .buy-button-group a:last-child {
  margin-bottom: 0;
}

.buy-info-card .buy-button-group a:hover {
  transform: translateY(-2px);
}

.buy-info-card .buy-button-quickswap {
  background-color: #9370db;
  color: #fff;
}

.buy-info-card .buy-button-wenmarkets {
  background-color: #e0f2f7;
  color: #4682b4;
}

.warning-info-card {
  border: 2px solid #ff6347;
}

.warning-info-card .card-icon {
  color: #ffd700;
}

.warning-info-card .card-title {
  color: #ff6347;
}

.warning-info-card p {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.warning-info-card .whitepaper-download {
  background-color: #ff6347;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.warning-info-card .whitepaper-download:hover {
  transform: translateY(-2px);
}

.copy-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
}

.external-link-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 5px;
}

.download-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.underground-section {
  background-color: #c1e5ff;
  background-image: url('assets/underground.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 20px;
  min-height: 800px;
}

.section-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #fff0e1;
  text-shadow: 2px 2px 6px #8a4b22;
  letter-spacing: 1.5px;

}

.about-container {
  background-color: rgba(0, 0, 0, 0.7);;
  max-width: 800px;
  margin: 50px auto;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  border: 2px solid white;
  color: white;
}

.about-image img {
  width: 100px;
}

.about-content p {
  text-align: left;
}

.about-content span {
  color: #f60195;
}

.about-join-us {
  color: #ffe500;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 6px;
}

.about-discord-icon {
  width: 200px;
  transition: transform 0.3s ease;
}

.about-discord-icon:hover {
   transform: scale(1.1);
}

.tokenomics-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-family: Arial, sans-serif;
}

.tokenomics-donut-chart {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(
    #D4AF37 0% 50%,
    #4682B4 50% 90%,
    #E97451 90% 100%
  );
  border: 2px solid #444;
  box-shadow: none;
}

.tokenomics-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}


.tokenomics-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  background-color: #222;
  color: black;
}

.tokenomics-row-burn {
  background-color: #D4AF37;
  border: 2px solid #7a6f23;
}

.tokenomics-row-liquidity {
  background-color: #4682B4;
  border: 2px solid #444;
}

.tokenomics-row-marketing {
  background-color: #E97451;
  border: 2px solid #555;
}

.tokenomics-quote {
  color: black;
  font-weight: 600;
  font-style: italic;
  margin-top: 20px;
  text-align: center;
  font-size: 1.1rem;
}

.sea-section {
  background-color: #c1e5ff;
  background-image: url('assets/sea.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 20px;
  min-height: 800px;
}

.team-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.team-member {
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: 2px solid white;
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-member:hover {
  transform: scale(1.03);
}

.member-pfp {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid gold;
  margin-bottom: 15px;
}

.member-name {
  font-size: 1.5rem;
  color: #f60195;
  margin-bottom: 5px;
}

.member-role {
  font-style: italic;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 10px;
}

.member-bio {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 10px;
  text-align: center;
}

.ice-section {
  background-color: #c1e5ff;
  background-image: url('assets/ice.webp');
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 20px;
  min-height: 800px;
}

.chart-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
}

.chart-embed-card {
  width: 90%;
  max-width: 900px;
  background-color: #1e1e1e;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.dex-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  border-radius: 12px;
  overflow: hidden;
}

.dex-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.price-converter {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20vh;
  margin-top: 10px;
  margin-bottom: 20px;
}

.converter-card {
  color: #ffffff;
}

.converter-title {
  font-size: 16px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.converter-input-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.converter-input-field label {
  font-size: 14px;
  color: #8b949e;
}

.converter-input-field input {
  background: none;
  border: none;
  color: #ffffff;
  text-align: right;
  font-size: 16px;
  width: 160px;
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}

.converter-input-field input::-webkit-outer-spin-button,
.converter-input-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.converter-input-field input:focus {
  outline: none;
}

.hell-section {
  background-color: #c1e5ff;
  background-image: url('assets/hell.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 20px;
  min-height: 800px;
}

.games-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 40px 20px;
  background: none;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
}

.game-card {
  background-color: whitesmoke;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.game-banner {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.game-title {
  font-size: 18px;
  margin: 10px 0 6px;
  color: #222;
}

.game-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: justify;
}

.game-cta {
  font-weight: bold;
  font-size: 13px;
  color: #5865F2;
  margin-bottom: 8px;
}

.game-cta-discord {
  width: 100px;
  cursor: pointer;
  transition: transform 0.2s ease;
  display: block;
  margin: 0 auto;
}

.game-cta-discord:hover {
  transform: scale(1.05);
}

.shop {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
   text-shadow: 2px 2px 4px #000000;
}

.shop a {
  color: #fff;
  animation: glow 1s ease-in-out infinite alternate;
  text-shadow: 0 0 5px gold, 0 0 10px purple, 0 0 15px purple;
}

.universe-section {
  background-color: #c1e5ff;
  background-image: url('assets/universe.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 20px;
  min-height: 800px;
}

.socials-wrapper {
  max-width: 800px;
  margin: 50px auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  border: 2px solid white;
}

.socials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.socials-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  color: #fff;
  width: 120px;
}

.socials-item:hover {
  transform: scale(1.08);
  filter: brightness(1.2);
}

.socials-link {
  text-decoration: none;
}

.socials-img {
  width: 72px;
  height: 72px;
  margin-bottom: 0.5rem;
}

.socials-label {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: white;
}

.testimonials-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.testimonials-card {
  all: unset;
  background: #1e1e1e;
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  color: #eee;
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  font-style: normal;
}

.testimonials-card:hover {
  background: #292929;
}

.testimonials-stars {
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 15px;
}

.stars-filled {
  color: gold;
  margin-right: 2px;
}

.testimonials-text {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
  color: #ccc;
}

.testimonials-author {
  font-weight: 600;
  font-size: 0.7rem;
  color: #ffcc00;
  text-align: left;
  letter-spacing: 0.05em;
}

.ihearddev {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: white;
}

.ihearddev a {
  color: gold;
  animation: glow 1s ease-in-out infinite alternate;
  text-shadow: 0 0 5px gold, 0 0 10px magenta, 0 0 15px purple;
}

.site-footer {
  background-color: #0a0a0a;
  color: #ddd;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Courier New', monospace;
  border-top: 1px solid #222;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: #ff4c4c;
}

.footer-nav {
  display: flex;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  font-size: 0.8rem;
  margin-top: 2rem;
  color: #666;
}

.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #ddd;
}

.image-credits {
  text-align: center;
  color: #444;
}

.roadmap-link-button {
  background: none;
  border: none;
  color: #aaa;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
}

.roadmap-link-button:hover {
  color: #fff;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.popup-container {
  background-color: #111;
  color: #fff;
  border: 2px solid white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.popup-message {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.popup-close-btn {
  padding: 0.6rem 1.2rem;
  background-color: white;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.popup-close-btn:hover {
  background-color: #ddd;
}


@keyframes glow {
  from {
    text-shadow: 0 0 5px magenta;
  }
  to {
    text-shadow: 0 0 20px magenta, 0 0 30px purple;
  }
}

.easter-egg {
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  animation: wiggle 0.3s ease-in-out infinite;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

.nee-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.nee-popup {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.nee-popup p {
  color: black;
}

.nee-popup button {
  margin-top: 15px;
  padding: 8px 15px;
  border: none;
  background: #222;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.nee-popup button:hover {
  background: #444;
}

.kraw-101-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  justify-content: center;
  align-items: center;
}

.kraw-101-popup {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  color: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6), 0 0 15px rgba(255,255,255,0.05);
  max-width: 900px;
  width: 90%;
  animation: popupFade 0.3s ease-out;
}

.kraw-101-popup img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.kraw-101-popup button {
  margin-top: 15px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  background: #ffd700;
  color: #222;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px #e6c200;
  transition: all 0.2s ease;
}

.kraw-101-popup button:hover {
  background: #ffe066;
  transform: translateY(-2px);
  box-shadow: 0 6px #e6c200;
}

.kraw-101-popup button:active {
  transform: translateY(1px);
  box-shadow: 0 2px #e6c200;
}

@keyframes popupFade {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}


#kraw101 {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}


@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    border: none;
    background-color: transparent;
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #1A1C1E;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 25px;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav.show {
    display: flex;
  }

  .nav-list a {
    font-size: 16px;
    color: black;
    padding: 4px 0;
  }

  .price-bar {
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  .site-title {
    font-size: 32px;
  }

  .site-tagline {
    font-size: 16px;
  }

  .quick-access-bar {
    padding: 16px;
  }

  .tokenomics-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .tokenomics-donut-chart {
    width: 220px;
    height: 220px;
  }

  .team-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    width: 90%;
  }

  .ice-section {
    min-height: 600px;
  }

  .chart-layout {
    flex-direction: column;
    padding: 20px 10px;
  }

  .chart-embed-card {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    box-shadow: none;
  }

  .dex-iframe-wrapper {
    padding-bottom: 100%;
    border-radius: 8px;
  }

  .popup-container {
    max-width: 80%;
    padding: 1.5rem;
  }

  .popup-message {
    font-size: 1.1rem;
  }

  .popup-close-btn {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

}