@import url("reset.css");

@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

.logo img {
  width: 50%;
  height: auto;
  max-width: 100px;
}

body {
  font-family: "Press Start 2P", "Courier New", "Courier", monospace;
  font-size: 0.9rem;
  color: #303a4d;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* ************HEADER************ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

/* Top Right Faucet Button */
.faucet-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #303a4d;
  border-radius: 30px;
  transition: all 0.3s;
  background-color: #303a4d;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faucet-button:hover {
  background-color: #fff;
  color: #303a4d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
}

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

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-toggle::after {
  content: '▼';
  margin-left: 0.5rem;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: #303a4d;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #303a4d;
}

/* Mobile responsive dropdown styles */
@media (max-width: 47.999rem) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    margin-top: 0.5rem;
    padding-left: 1rem;
  }
  
  .dropdown-toggle::after {
    display: none;
  }
  
  .dropdown-item {
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 0.9rem;
  }
  
  .dropdown-item:hover {
    background-color: transparent;
  }
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #303a4d;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  background-color: #303a4d;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.actions-header__button:hover {
  background-color: #fff;
  color: #303a4d;
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 160px;
}

/* *****************HOME**************** */

.main {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.main__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.main__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 19.188rem;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main__title {
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main__text {
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.outro_home {
  background: url("../images/Home/CTA.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  background: url("../images/About/About-Hero.jpg") center / cover no-repeat;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 700px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../images/About/CTA.jpg") center / cover no-repeat;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../images/Services/Services-Hero.jpg") center / cover no-repeat;
}

.services {
  background-color: #e1e4eb;
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
}

.item-services__image {
  margin-bottom: 2rem;
  max-width: 360px;
  height: 421px;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.outro_services {
  background: url("../images/Services/CTA.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.testiomonial__caption {
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

.testimonial__feedback-image {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.testimonial__feedback-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial__feedback-text {
  margin-top: 1rem;
  text-align: center;
  font-family: "Press Start 2P", "Courier New", "Courier", monospace;
  font-size: 0.9rem;
  color: #303a4d;
  line-height: 150%;
  letter-spacing: 0.02em;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  padding: 1.25rem 3rem;
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
}

.footer__container {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer__logo {
  /* Logo is centered by default in flex layout */
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 400px;
}

.main_pages {
  min-height: 1000px !important;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

.services-page__item {
  margin-bottom: 132px;
}

.services-page__item:not(:last-child) {
  padding-bottom: 132px;
  margin-bottom: 132px;
  border-bottom: 1px solid rgba(48, 58, 77, 0.4);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  margin-bottom: 24px;
}

.services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: 614px;
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  /* Background image removed - using video instead */
}

/* ****************GAMES PAGE**************** */
.main_games {
  background: url("../images/Games/hero header.jpg") center / cover no-repeat;
}

/* ****************TEAM PAGE - FIT IN ONE VIEWPORT**************** */
.main_team {
  min-height: 100vh !important; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Background image removed - using video instead */
}

/* Contributor page video - reduced size by 10% */
.main_team .main__video {
  width: 90%;
  height: 90%;
  top: calc(5% + 50px);
  left: 5%;
}

.main_team .main__container_pages {
  padding-top: 0; /* Reset padding */
  margin-top: -50px; /* Move content down by 150px from -200px */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align to top instead of center */
  text-align: center;
  background: transparent;
}

.team-page .contact__container {
  padding-top: 40px; /* Reduced from 140px */
  padding-bottom: 20px; /* Reduced from 140px */
  gap: 40px; /* Reduced from 109px */
}

.team-page .contact__title {
  margin-bottom: 20px; /* Reduced from 48px */
  font-size: 24px; /* Reduced from 40px */
}

.team-page .connect-contact {
  row-gap: 16px; /* Reduced from 32px */
  margin-bottom: 20px; /* Reduced from 40px */
  padding-bottom: 20px; /* Reduced from 40px */
}

.team-page .connect-contant__type {
  font-size: 14px; /* Reduced from 18px */
}

.team-page .connect-contact__label {
  font-size: 16px; /* Reduced from 22px */
}

.team-page .contact__text {
  font-size: 14px; /* Reduced from 18px */
}

.team-page .contact__text p:not(:last-child) {
  margin-bottom: 8px; /* Reduced from 15px */
}

.team-page iframe {
  height: 200px; /* Much smaller map, reduced from 482px */
}

.team-page .footer__container {
  padding-top: 1rem; /* Reduced footer padding */
  padding-bottom: 1rem;
}

/* Team Members Grid Styles */
.team-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.team-member-box {
  background: transparent;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member-photo {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-info {
  flex: 1;
}

.team-member-info h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.team-member-info .role {
  margin: 0 0 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: #4CAF50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member-info .description {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

/* Placeholder styles for "Who's Next" box */
.placeholder-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px dashed rgba(255, 255, 255, 0.3);
}

.placeholder-text {
  font-size: 36px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.placeholder-description {
  font-style: italic;
  color: #888;
  font-size: 13px;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
  }
}

@media (max-width: 768px) {
  .team-members-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
  }
  
  .team-member-box {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .team-member-photo {
    width: 80px;
    height: 80px;
  }
  
  .team-member-info h3 {
    font-size: 18px;
  }
}

.games-menu {
  background-color: #e1e4eb;
}

.games-menu__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.games-menu__title {
  text-align: center;
  margin-bottom: 5rem;
}

.games-menu__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-game {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.item-game:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.item-game__image {
  margin-bottom: 1.5rem;
  max-width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.item-game__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.item-game__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #303a4d;
}

.item-game__text {
  max-width: 100%;
  line-height: 150%;
  margin-bottom: 1rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
  color: #666;
}

.item-game__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #888;
}

.item-game__genre {
  background: #f0f0f0;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.item-game__platform {
  font-weight: 500;
}

.item-game__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
  align-self: flex-start;
}

.item-game__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.item-game__buttons .item-game__button {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0.75rem 1.5rem;
}

.item-game__buttons .p2e-button {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: #fff;
}

.item-game__buttons .p2e-button:hover {
  background-color: #e55a2b;
  border-color: #e55a2b;
}

.outro_games {
  background: url("../images/Home/CTA.jpg") center / cover no-repeat;
}

/* ****************CONTRIBUTORS PAGE**************** */
.main_team {
  background: url("../images/team/8671ccfc-de82-4663-bfbd-7af5c5e17103.jpg") center / cover no-repeat;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-figures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.5rem;
  background-color: #ffffff;
  background-image: 
    linear-gradient(to bottom, transparent 0%, #8B4513 0%, #8B4513 8px, transparent 8px),
    linear-gradient(to bottom, transparent 25%, #8B4513 25%, #8B4513 calc(25% + 8px), transparent calc(25% + 8px)),
    linear-gradient(to bottom, transparent 50%, #8B4513 50%, #8B4513 calc(50% + 8px), transparent calc(50% + 8px)),
    linear-gradient(to bottom, transparent 75%, #8B4513 75%, #8B4513 calc(75% + 8px), transparent calc(75% + 8px)),
    linear-gradient(to right, transparent 0%, #8B4513 0%, #8B4513 8px, transparent 8px),
    linear-gradient(to right, transparent calc(100% - 8px), #8B4513 calc(100% - 8px), #8B4513 100%, transparent 100%),
    linear-gradient(to bottom, transparent calc(100% - 8px), #8B4513 calc(100% - 8px), #8B4513 100%, transparent 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.figure-item {
  width: 100%;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.figure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.figure-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.figure-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.figure-item a:hover img {
  transform: scale(1.05);
}

.figure-item.empty-space {
  background: transparent;
  box-shadow: none;
}

.figure-item.empty-space:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .action-figures-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 0.4rem;
    max-width: 450px;
  }
  
  .figure-item {
    height: 100px;
  }
}

@media (max-width: 768px) {
  .action-figures-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 0.3rem;
    padding: 0.3rem;
    max-width: 300px;
  }
  
  .figure-item {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .action-figures-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(16, 1fr);
    gap: 0.2rem;
    max-width: 150px;
  }
  
  .figure-item {
    height: 60px;
  }
}

/* ****************WALLET PAGE**************** */
.main_wallet {
  background: url("../images/Home/Home-Hero.jpg") center / cover no-repeat;
}

.wallet-section {
  background-color: #e1e4eb;
}

.wallet-section__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  max-width: 800px;
}

.wallet-status {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wallet-status__title {
  margin-bottom: 1.5rem;
  text-align: center;
}

.wallet-status__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wallet-status__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.wallet-status__label {
  font-weight: 600;
  color: #303a4d;
}

.wallet-status__value {
  font-weight: 500;
  color: #666;
}

.wallet-status__value--connected {
  color: #10b981;
}

.wallet-status__value--error {
  color: #ef4444;
}

.wallet-actions {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wallet-actions__title {
  margin-bottom: 1.5rem;
  text-align: center;
}

.wallet-actions__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.wallet-button {
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  min-width: 200px;
}

.wallet-button--primary {
  background-color: #303a4d;
  color: #fff;
}

.wallet-button--primary:hover {
  background-color: #1f2937;
  transform: translateY(-2px);
}

.wallet-button--secondary {
  background-color: transparent;
  color: #303a4d;
  border: 2px solid #303a4d;
}

.wallet-button--secondary:hover {
  background-color: #303a4d;
  color: #fff;
}

.wallet-info {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wallet-info__title {
  margin-bottom: 1.5rem;
  text-align: center;
}

.wallet-info__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wallet-info__item {
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 8px;
  font-size: 0.72rem;
}

/* Add Network Button */
.add-network-button {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  background-color: rgba(16, 185, 129, 0.9);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  border: none;
}

.add-network-button:hover {
  background-color: rgba(5, 150, 105, 0.9);
  transform: scale(1.1);
}

/* Instructions Button */
.instructions-button {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: rgba(59, 130, 246, 0.9);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  border: none;
}

.instructions-button:hover {
  background-color: rgba(37, 99, 235, 0.9);
  transform: scale(1.1);
}

/* Leaderboard Button */
.leaderboard-button {
  position: fixed;
  top: 70px;
  right: 20px;
  z-index: 1001;
  background-color: rgba(245, 158, 11, 0.9);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
  border: none;
}

.leaderboard-button:hover {
  background-color: rgba(217, 119, 6, 0.9);
  transform: scale(1.1);
}

/* Wallet Footer */
.wallet-footer-connect {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}

.wallet-footer__content {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}

.wallet-footer__button {
  background-color: #10b981;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.wallet-footer__button:hover {
  background-color: #059669;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal__content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}

.modal__close:hover {
  color: #000;
}

.modal h2 {
  margin-bottom: 1rem;
  color: #303a4d;
}

.modal ol {
  padding-left: 1.5rem;
}

.modal li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 3000;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease-out;
}

.notification--success {
  background-color: #10b981;
}

.notification--error {
  background-color: #ef4444;
}

.notification--info {
  background-color: #3b82f6;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100vw;
  height: 482px;
  filter: grayscale(100%);
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

.director__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

.resources__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .games-menu__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
    gap: 4rem;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

/* Quest icon styles */
.quest-link {
  position: relative;
  display: inline-block;
}

.quest-icon {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 1;
}

/* Sprite icon styles for dropdown menu */
.sprite-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.sprite-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sprite-link:hover .sprite-icon {
  border-color: rgba(48, 58, 77, 0.5);
  transform: scale(1.1);
}

.quest-link:hover .quest-icon {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateX(-50%) scale(1.1);
}

/* Quest tooltip */
.quest-link {
  position: relative;
  display: inline-block;
}

.quest-link::after {
  content: "You will be redirected to https://www.irysdune.xyz/";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.quest-link::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}

.quest-link:hover::after,
.quest-link:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Floating Button Container */
.floating-buttons {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  display: flex;
  gap: 10px;
}

/* Floating Follow Button */
.follow-button {
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Floating Irys Button */
.irys-button {
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.follow-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.follow-button:active {
  transform: translateY(0);
}

.irys-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.irys-button:active {
  transform: translateY(0);
}

.follow-button .follow-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.irys-button .irys-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ****************NEWS UPDATES**************** */
.news-updates {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-updates:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.news-updates__header {
  background: linear-gradient(135deg, #303a4d 0%, #1f2937 100%);
  color: white;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-updates__title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-updates__icon {
  font-size: 1.1rem;
}

.news-updates__close {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.news-updates__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.news-updates__list {
  max-height: 300px;
  overflow-y: auto;
}

.news-updates__item {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.news-updates__item:last-child {
  border-bottom: none;
}

.news-updates__item:hover {
  background-color: rgba(48, 58, 77, 0.05);
}

.news-updates__link {
  text-decoration: none;
  color: #303a4d;
  display: block;
  font-size: 0.85rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-updates__link:hover {
  color: #1f2937;
}

.news-updates__time {
  font-size: 0.75rem;
  color: #666;
  margin-top: 4px;
  display: block;
}

/* Mobile responsiveness for news updates */
@media (max-width: 768px) {
  .news-updates {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}