/* MrBeast Meme Website Main Styles */

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  background-color: #f9f9f9;
  -webkit-font-smoothing: antialiased;
}

.body {
  background-color: #111;
  color: white;
  overflow-x: hidden;
}

.page-wrapper {
  position: relative;
}

.navbar-on-page {
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
}

.navbar-component {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 100;
  width: 100%;
  background-color: transparent;
  color: white;
}

.navbar-container {
  display: flex;
  padding: 20px 5%;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo {
  width: 200px;
  height: auto;
}

.navbar-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.navbar-logo-text:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0078ff, #00a1ff);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-logo-text:hover {
  color: #0078ff;
}

.navbar-logo-text:hover:before {
  transform-origin: left;
  transform: scaleX(1);
}

.navbar-logo-link {
  display: block;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-menu-link-wrapper {
  display: flex;
  margin-right: 10px;
  align-items: center;
}

.navbar-link {
  margin-right: 5px;
  margin-left: 5px;
  padding: 10px 15px;
  border-radius: 4px;
  transition: background-color 0.3s, opacity 0.3s;
}

.navbar-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown menu styles */
.navbar-menu-dropdown {
  display: inline-block;
  position: relative;
}

.navbar-dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

.navbar-dropdown-toggle .text-block {
  margin-right: 5px;
}

.navbar-dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-chevron {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

.navbar-dropdown-list {
  min-width: 200px;
  background-color: #151515;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 5px 0;
}

.navbar-dropdown-link {
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s;
}

.navbar-dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-button-wrapper {
  display: flex;
  align-items: center;
}

.navbar-menu-button {
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
}

.menu-icon-line-top,
.menu-icon-line-middle,
.menu-icon-line-bottom {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
}

.menu-icon-line-top {
  top: 0;
}

.menu-icon-line-middle {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon-line-bottom {
  bottom: 0;
}

.section-header {
  position: relative;
  padding-top: 80px;
  background-color: #001933;
  color: white;
  overflow: hidden;
}

.bkg {
  background-color: #001933;
  background-image: radial-gradient(circle at 50% 50%, #0055c4 0%, #001933 70%);
}

.header-component {
  position: relative;
  overflow: hidden;
  color: white;
}

.header-component.round {
  border-radius: 0 0 20px 20px;
}

.header-content {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

.header-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.herotext {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

.header-image-wrapper {
  position: relative;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.threed-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.threed-image:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.filter {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.silhouette {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 100px;
  background-image: url('../images/silhouette.svg');
  background-position: 0% 100%;
  background-size: 100% 100px;
  background-repeat: no-repeat;
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  background-color: #0078ff;
  color: white;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}

.beast-icon {
  display: flex;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  justify-content: center;
  align-items: center;
}

.marquee-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0078ff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.text-block-marquee {
  margin-right: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-block-marquee.space {
  margin-right: 40px;
}

.text-block-marquee.beast {
  color: #fff;
  font-size: 28px;
}

.section-layout-about {
  background-color: #121212;
  color: white;
}

.layout-component {
  position: relative;
  z-index: 2;
}

.layout-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  align-items: start;
}

.layout-content-left {
  padding: 30px;
}

.text-span-highlight {
  color: #0078ff;
}

.div-block-image {
  margin-top: 30px;
}

.image-card {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.layout-content-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-block-headline {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0078ff;
}

.text-block-content {
  font-size: 16px;
  line-height: 1.6;
}

.section-layout-tokenomics {
  position: relative;
  overflow: hidden;
  background-color: #121212;
  padding: 60px 0;
}

.section-layout-tokenomics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 120, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.layout-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
}

.layout-image {
  max-width: 100%;
  height: auto;
}

.layout-image.fit {
  width: 100%;
  object-fit: contain;
}

.section-layout-howto {
  position: relative;
  background-color: #1a1a1a;
  color: white;
}

.layout-howto-component {
  position: relative;
  z-index: 2;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.pay-div {
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #252525;
}

.pay-div.white {
  background-color: white;
}

.coin-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coin-div.black {
  background-color: black;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.div-block-moonshot {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-moonshot {
  width: 150px;
  height: auto;
}

.section-cta-block {
  position: relative;
  background-color: #0d0d0d;
  color: white;
}

.cta {
  position: relative;
  z-index: 2;
}

.cta-component {
  position: relative;
}

.cta-background-video-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.section-cta-about {
  position: relative;
  background-color: #141414;
  color: white;
  overflow: hidden;
}

.section-cta-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 0;
}

.cta-about-component {
  position: relative;
  z-index: 2;
}

.cta-about-content {
  grid-template-columns: 1.2fr 0.8fr;
  grid-gap: 40px;
  align-items: center;
}

.cta-about-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.heading-style-h2-4.bigger {
  font-size: 42px;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.heading-style-h2-4.bigger::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0063d4, #0078ff);
  margin: 20px 0 0;
  border-radius: 3px;
}

.div-block-mission {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 120, 255, 0.1);
  transition: all 0.3s ease;
  border-left: 3px solid #0078ff;
}

.div-block-mission:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 120, 255, 0.2);
}

.text-block-mission {
  font-size: 16px;
  line-height: 1.6;
  color: #eaeaea;
}

.bold-text-mission {
  color: #0078ff;
  font-size: 22px;
  display: inline-block;
  margin-bottom: 10px;
}

.cta-about-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 20px;
}

.family-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
  transition: all 0.3s ease;
  border: 12px solid white;
  background-color: white;
  position: relative;
}

.family-card::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  border-radius: 12px;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.family-card::after {
  content: "MrBeast Family";
  position: absolute;
  bottom: -5px;
  right: 15px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0078ff;
  transform: rotate(-2deg);
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
}

.family-card:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.family-card:hover::before {
  opacity: 0.5;
}

.cta-about-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.cta-about-image:hover {
  transform: scale(1.01);
}

.section-community-hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #050505;
  color: white;
  text-align: center;
}

.div-block-community {
  position: relative;
  max-width: 800px;
  margin: 0 auto 60px;
}

.image-community {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.div-block-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.heading-style-h1-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 54px;
  line-height: 1.2;
  font-weight: 700;
}

.blue-text {
  color: #0078ff;
}

.section-faq {
  background-color: #101010;
  color: white;
}

.faq-component {
  position: relative;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}

.faq-accordion {
  overflow: hidden;
  border-radius: 8px;
  background-color: #1a1a1a;
  width: 100%;
  box-sizing: border-box;
}

.faq-question {
  display: flex;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.faq-question:hover {
  background-color: #222;
}

.faq-icon-wrappper {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon-wrappper {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 0;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.bold-text-faq {
  font-weight: 600;
}

.paragraph-faq {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  width: 100%;
  box-sizing: border-box;
}

.paragraph-faq.break {
  word-break: break-all;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
}

.footer-component {
  background-color: #000;
  color: white;
}

.footer {
  position: relative;
}

.footer-top-wrapper {
  display: flex;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  grid-column-gap: 40px;
  grid-row-gap: 20px;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-logo-text:hover {
  color: #0078ff;
}

.grid-social {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: auto;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: start;
}

.footer-link-list {
  display: flex;
  margin-left: auto;
  flex-wrap: wrap;
  align-items: center;
  grid-column-gap: 30px;
  grid-row-gap: 10px;
}

.footer-link {
  padding: 5px 0;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #0078ff;
}

.disclaimer {
  padding: 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.disclaimer.extra-top {
  margin-top: 40px;
}

.disclaimer.spacer-medium {
  margin-top: 30px;
}

.disclaimer-text {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.7;
}

.line-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  grid-row-gap: 10px;
  margin-top: 15px;
}

.footer-credit-text {
  font-size: 12px;
  opacity: 0.7;
}

.footer-legal-list {
  display: flex;
  align-items: center;
  grid-column-gap: 20px;
}

.footer-legal-link {
  font-size: 12px;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer-legal-link:hover {
  opacity: 1;
}

.backtotop-component {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #0078ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.backtotop-component:hover {
  transform: translateY(-5px);
}

.backtotop-button {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.icon-small {
  width: 20px;
  height: 20px;
}

.fs-copyclip_wrapper {
  display: flex;
  padding: 15px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  align-items: center;
  flex-wrap: wrap;
  transition: background-color 0.3s ease;
  position: relative;
}

.fs-copyclip_wrapper:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.fs-copyclip_wrapper.full-width {
  width: 100%;
}

.fs-copyclip_wrapper.smaller {
  padding: 12px;
}

.div-block.contract-label {
  display: flex;
  align-items: center;
  margin-right: 5px;
  font-weight: 600;
}

.ca-label {
  background-color: #0078ff;
  color: white;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.ca-label:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.fs-copyclip_text {
  margin-bottom: 0;
  margin-left: 0;
  flex: 1;
  font-family: monospace;
  word-break: break-all;
  padding: 0 10px;
  margin-top: 0;
  letter-spacing: 0.5px;
  color: #eee;
  font-size: 15px;
}

.fs-copyclip_text.center {
  text-align: center;
}

.fs-copyclip_button {
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #0078ff;
  transition: all 0.3s;
  white-space: nowrap;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-left: auto;
}

.fs-copyclip_button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.success-div {
  position: absolute;
  top: -30px;
  right: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  background-color: #28a745;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.success-div.show {
  opacity: 1;
}

.text-block-copied {
  font-size: 12px;
  color: white;
  font-weight: 600;
}

.button-primary-cta {
  display: inline-block;
  padding: 12px 25px;
  background-color: #0078ff;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button-primary-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.button-primary-cta:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 120, 255, 0.2);
}

.button-primary-cta:hover:before {
  left: 100%;
}

.button-primary-cta.max-width-medium {
  max-width: 300px;
}

.button-primary-cta.smaller {
  padding: 10px 20px;
  font-size: 16px;
}

.button-primary-cta.wider {
  min-width: 180px;
}

.manifesto-wrapper {
  margin-top: 15px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.manifesto {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #0078ff;
}

.signature-wrapper {
  margin-top: 5px;
  max-width: 200px;
}

.beast-signature {
  width: 100%;
  height: auto;
  filter: invert(29%) sepia(93%) saturate(2421%) hue-rotate(201deg) brightness(96%) contrast(101%);
}

.layout-content-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.chart-container-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.chart-container {
  width: 100%;
  height: 450px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 120, 255, 0.1);
  transition: all 0.3s ease;
}

.chart-container:hover {
  box-shadow: 0 8px 30px rgba(0, 120, 255, 0.2);
}

/* Chart legend styles */

.allocation-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 20px;
  padding: 20px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 120, 255, 0.1);
}

.legend-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: rgba(21, 21, 21, 0.7);
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  min-width: 120px;
  cursor: pointer;
  flex: 0 1 auto;
  margin: 0;
}

.legend-item:hover {
  background-color: rgba(21, 21, 21, 0.9);
  transform: translateX(5px);
  border-left-width: 5px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-right: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.legend-text {
  font-size: 16px;
  color: white;
  font-weight: 500;
  white-space: nowrap;
}

.legend-percent {
  font-weight: bold;
  margin-left: 10px;
  color: #0078ff;
  font-size: 18px;
}

.legend-item.active {
  background-color: rgba(0, 120, 255, 0.2);
  border-left-color: #0078ff;
  border-left-width: 5px;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 120, 255, 0.25);
}

.legend-item.active .legend-percent {
  color: #ffcc00;
  font-size: 120%;
}

.text-size-medium-7 {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  letter-spacing: 0.3px;
}

.text-size-medium-7.center.bigger {
  max-width: 800px;
  margin: 20px auto 40px;
  text-align: center;
}

.heading-style-h2-2.no-shadow {
  font-size: 42px;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.heading-style-h2-2.no-shadow::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0063d4, #0078ff);
  margin: 20px auto 0;
  border-radius: 3px;
  animation: expandWidth 1s ease-out forwards;
}

@keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

.allocation-description {
  margin-top: 20px;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

.allocation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.allocation-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(18, 18, 18, 0.6);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.allocation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 120, 255, 0.15);
  border-color: rgba(0, 120, 255, 0.3);
}

.allocation-color {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.highlight-text {
  color: #0078ff;
  font-weight: 700;
}

/* Media Queries */

@media screen and (max-width: 991px) {
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #151515;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    transform: translateY(-10px);
    z-index: 999;
  }
  
  .navbar-menu.w--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .navbar-menu-link-wrapper {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }
  
  .navbar-link {
    width: 100%;
    padding: 15px;
    margin: 0 0 5px;
  }
  
  .navbar-menu-dropdown {
    width: 100%;
  }
  
  .navbar-dropdown-toggle {
    width: 100%;
    padding: 15px;
    margin-bottom: 5px;
    padding-left: 0;
  }
  
  .navbar-dropdown-list {
    position: static;
    width: 100%;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
  }
  
  .navbar-dropdown-link {
    padding: 12px 20px;
  }
  
  .navbar-menu-button {
    display: block;
  }
  
  .layout-content {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  
  .layout-content-left {
    padding: 20px 15px;
  }
  
  .layout-image-wrapper {
    padding: 20px;
  }
  
  .heading-style-h2-2.no-shadow {
    font-size: 36px;
  }
  
  .text-size-medium-7 {
    font-size: 16px;
  }
  
  .chart-container {
    height: 400px;
    padding: 20px;
    width: 100%;
  }
  
  .allocation-legend {
    margin-top: 20px;
    gap: 15px;
    padding: 20px;
    width: 100%;
  }
  
  .allocation-description {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
  }
  
  .chart-container-wrapper {
    margin: 30px auto;
    width: 100%;
    max-width: 800px;
  }
  
  .allocation-item {
    padding: 12px;
  }
  
  .cta-about-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
  }
  
  .image-wrapper-glow {
    max-width: 400px;
  }
  
  .image-glow-effect {
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    filter: blur(35px);
    opacity: 0.9;
  }
  
  .cta-about-content {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  
  .cta-about-content-left {
    order: 2;
    text-align: center;
    padding: 10px 20px 30px;
  }
  
  .heading-style-h2-4.bigger {
    font-size: 36px;
    text-align: center;
  }
  
  .heading-style-h2-4.bigger::after {
    margin: 20px auto 0;
  }
  
  .div-block-mission {
    max-width: 90%;
    margin: 0 auto;
  }
  
  .family-card {
    max-width: 400px;
    transform: rotate(1deg);
  }
}

@media screen and (max-width: 767px) {
  /* Hide desktop button in header on mobile */
  .top-buy-button {
    display: none;
  }
  
  /* Show mobile button in the hero section */
  .button-primary-cta-mobile {
    display: block;
  }
  
  /* Layout changes for About section */
  .w-layout-grid.layout-component {
    display: flex;
    flex-direction: column;
  }
  
  .layout-content-left {
    order: 2; /* Move text below image on mobile */
    padding: 15px 10px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
  }
  
  .layout-content-right {
    order: 1; /* Move content to top on mobile */
    margin-bottom: 20px;
    width: 100%;
  }
  
  .div-block-image {
    margin: 0 auto 20px;
    max-width: 90%;
  }
  
  .image-card {
    margin: 0 auto;
    display: block;
  }
  
  .text-block-headline {
    text-align: center;
  }
  
  .text-block-content {
    text-align: center;
  }
  
  /* Other mobile adjustments */
  .section-layout-tokenomics {
    padding: 40px 0;
  }
  
  .header-content {
    grid-template-columns: 1fr;
  }
  
  .header-image-wrapper {
    margin-top: 30px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .herotext {
    font-size: 42px;
    text-align: center;
  }
  
  .manifesto-wrapper {
    align-items: center;
  }
  
  .header-content-left {
    align-items: center;
    text-align: center;
  }
  
  .heading-style-h2-2.no-shadow {
    font-size: 32px;
  }
  
  .text-size-medium-7.center.bigger {
    font-size: 15px;
    margin: 15px auto 20px;
  }
  
  .chart-container-wrapper {
    margin: 25px auto;
    width: 100%;
    max-width: 95%;
  }
  
  .chart-container {
    height: 350px;
    padding: 15px;
    width: 100%;
  }
  
  .allocation-legend {
    padding: 15px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .allocation-description {
    margin-top: 15px;
    width: 100%;
    max-width: 95%;
  }
  
  .allocation-item {
    padding: 10px 12px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .highlight-text {
    font-size: 14px;
  }
  
  .faq-question {
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .faq-answer {
    padding: 0 15px 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .paragraph-faq {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
  }
  
  .footer-top-wrapper {
    justify-content: center;
    text-align: center;
  }
  
  .footer-link-list {
    margin-left: 0;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
  }
  
  .grid-social {
    margin: 20px 0;
  }
  
  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-list {
    margin-top: 15px;
    justify-content: center;
  }
  
  .marquee {
    padding: 15px 0;
  }
  
  .beast-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  
  .marquee-image {
    width: 40px;
    height: 40px;
  }
  
  .text-block-marquee {
    font-size: 20px;
    margin-right: 15px;
  }
  
  .text-block-marquee.space {
    margin-right: 30px;
  }
  
  .text-block-marquee.beast {
    font-size: 24px;
  }
  
  .cta-about-image-wrapper {
    max-width: 100%;
    padding: 0;
  }
  
  .image-wrapper-glow {
    max-width: 350px;
  }
  
  .image-glow-effect {
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    filter: blur(40px);
    opacity: 1;
  }
  
  .heading-style-h2-4.bigger {
    font-size: 32px;
  }
  
  .div-block-mission {
    padding: 20px;
  }
  
  .text-block-mission {
    font-size: 15px;
  }
  
  .bold-text-mission {
    font-size: 20px;
  }
  
  .image-glow-effect {
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    filter: blur(40px);
    opacity: 1;
  }
  
  .family-card {
    max-width: 350px;
    transform: rotate(1deg);
    border-width: 10px;
  }
  
  .family-card::after {
    font-size: 16px;
    right: 10px;
  }
}

@media screen and (max-width: 479px) {
  .section-layout-tokenomics {
    padding: 30px 0;
  }
  
  .herotext {
    font-size: 36px;
  }
  
  .threed-image {
    transform: none;
  }
  
  .threed-image:hover {
    transform: none;
  }
  
  .button-primary-cta.wider {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
  
  .button-primary-cta-mobile {
    padding: 10px 20px;
    font-size: 13px;
    margin: 10px auto;
  }
  
  .navbar-container {
    padding: 15px 5%;
  }
  
  .navbar-logo-text {
    font-size: 22px;
  }
  
  .heading-style-h2-2.no-shadow {
    font-size: 28px;
  }
  
  .layout-content-left, 
  .layout-content-right {
    padding: 10px 5px;
  }
  
  .div-block-image {
    max-width: 100%;
  }
  
  .text-block-headline {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .text-block-content {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .image-card {
    border-radius: 8px;
  }
  
  .text-size-medium-7.center.bigger {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
  }
  
  .chart-container-wrapper {
    margin: 20px auto;
    width: 100%;
    max-width: 100%;
  }
  
  .chart-container {
    height: 300px;
    padding: 10px;
    width: 100%;
  }
  
  .allocation-legend {
    padding: 10px;
    gap: 8px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .allocation-description {
    width: 100%;
    margin-top: 15px;
    max-width: 100%;
    padding: 0 5px;
  }
  
  .allocation-list {
    gap: 8px;
  }
  
  .allocation-item {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 13px;
  }
  
  .allocation-color {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  
  .highlight-text {
    font-size: 13px;
  }
  
  .fs-copyclip_wrapper {
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  
  .fs-copyclip_text {
    width: 100%;
    text-align: center;
  }
  
  .fs-copyclip_button {
    margin: 5px auto;
  }
  
  .cta-about-image-wrapper {
    padding: 0;
  }
  
  .image-wrapper-glow {
    max-width: 280px;
  }
  
  .image-glow-effect {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    filter: blur(45px);
    opacity: 1;
  }
  
  .heading-style-h2-4.bigger {
    font-size: 28px;
  }
  
  .div-block-mission {
    padding: 15px;
    max-width: 100%;
  }
  
  .text-block-mission {
    font-size: 14px;
  }
  
  .bold-text-mission {
    font-size: 18px;
  }
  
  .family-card {
    max-width: 280px;
    transform: rotate(0deg);
    border-width: 8px;
  }
  
  .family-card::after {
    font-size: 14px;
    right: 8px;
    bottom: -3px;
  }
}

/* Allocation Description List Styles */
.allocation-description {
  margin-top: 40px;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}

.allocation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.allocation-item {
  background-color: rgba(0, 120, 255, 0.05);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 3px solid #0078ff;
  display: flex;
  width: 100%;
  align-items: center;
}

.allocation-item:hover {
  background-color: rgba(0, 120, 255, 0.1);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 120, 255, 0.2);
}

.highlight-text {
  color: #0078ff;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Media Queries for Allocation List */
@media screen and (max-width: 767px) {
  .allocation-description {
    margin-top: 20px;
    padding: 0 10px;
  }
  
  .allocation-list {
    gap: 10px;
  }
  
  .allocation-item {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media screen and (max-width: 479px) {
  .allocation-description {
    margin-top: 15px;
    padding: 0 5px;
  }
  
  .allocation-list {
    gap: 8px;
  }
  
  .allocation-item {
    padding: 8px 10px;
    font-size: 13px;
  }
}

.button-primary-cta {
  transition: all 0.3s ease;
}

.button-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 120, 255, 0.2);
}

.hero-wrap {
  position: relative;
  overflow: hidden;
}

.hero-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 120, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.6;
  }
}

.navbar-logo-image {
  transition: transform 0.3s ease;
}

.navbar-logo-image:hover {
  transform: scale(1.05);
}

.section-layout-tokenomics .heading-style-h2-2.no-shadow::after {
  animation: expandWidth 1s ease-out forwards;
}

@keyframes expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

/* Mobile-specific button */
.button-primary-cta-mobile {
  display: none;
  background-color: #0078ff;
  color: white;
  text-align: center;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin: 15px auto;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
}

.button-primary-cta-mobile:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 120, 255, 0.2);
}

@media screen and (max-width: 767px) {
  /* Hide desktop button in header on mobile */
  .top-buy-button {
    display: none;
  }
  
  /* Show mobile button in the hero section */
  .button-primary-cta-mobile {
    display: block;
  }
  
  /* Layout changes for About section */
  .w-layout-grid.layout-component {
    display: flex;
    flex-direction: column;
  }
  
  .layout-content {
    display: flex;
    flex-direction: column;
  }
  
  .layout-content-left {
    order: 2; /* Move text below image */
    padding: 15px 10px;
    text-align: center;
  }
  
  .layout-content-right {
    order: 1; /* Move image to top */
    margin-bottom: 20px;
  }
  
  .div-block-image {
    margin: 0 auto 20px;
    max-width: 90%;
  }
  
  .image-card {
    margin: 0 auto;
    display: block;
  }
  
  .text-block-headline {
    text-align: center;
  }
  
  .text-block-content {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .legend-item {
    padding: 10px 12px;
    min-width: 100px;
    margin: 0;
    flex: 0 0 calc(50% - 10px);
  }
  
  .legend-text {
    font-size: 14px;
  }
  
  .legend-percent {
    font-size: 16px;
    margin-left: 6px;
  }
}

@media screen and (max-width: 479px) {
  .legend-item {
    width: calc(50% - 4px);
    padding: 8px 10px;
    min-width: 0;
    margin: 0;
    flex: 0 0 calc(50% - 4px);
  }
  
  .legend-text {
    font-size: 12px;
  }
  
  .legend-percent {
    font-size: 14px;
    margin-left: 4px;
  }
}

/* New Solana section styles */
.solana-info-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
  max-width: 600px;
  text-align: center;
}

.solana-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.solana-main-logo {
  width: 250px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0, 120, 255, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.solana-main-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(0, 120, 255, 0.6));
}

.solana-description {
  font-size: 18px;
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 500px;
  margin: 0 auto 20px;
}

/* Media queries for responsiveness */
@media screen and (max-width: 767px) {
  .solana-main-logo {
    width: 200px;
  }
  
  .solana-description {
    font-size: 16px;
    max-width: 90%;
  }
}

@media screen and (max-width: 479px) {
  .solana-main-logo {
    width: 180px;
  }
  
  .solana-description {
    font-size: 15px;
  }
} 