@font-face {
  font-family: "CHIBOLD";
  src: url(../fonts/CHIBOLD.ttf);
}

@font-face {
  font-family: "bebas";
  src: url(../fonts/BebasNeue\ Bold.ttf);
}

@font-face {
  font-family: "iclend";
  src: url(../fonts/Iceland-Regular.ttf);
}

@import url("https://fonts.googleapis.com/css2?family=Iceland&display=swap");

/* Hide number input arrows */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg, #c9a887 0%, #8b6f47 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 1080px;
  width: 100%;
  box-sizing: border-box;
}

#content {
  width: 100%;
  max-width: 1920px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 100px;
}

.logo-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo-text {
  font-family: "CHIBOLD";
  color: #ffffff;
  font-size: 36px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation Styles */
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0 20px;
}

.nav-link {
  font-family: "CHIBOLD";
  font-size: 18px;
  color: #d4c4b0;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(212, 196, 176, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(212, 196, 176, 0.2);
  border-color: #8b6f47;
  transform: translateY(-2px);
}

.nav-link.active {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #2b1a12;
  border-color: #ffd700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.nav-text {
  display: inline-block;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.home {
  font-family: "CHIBOLD";
  color: #ffffff;
  font-size: 30px;
  text-decoration: none;
  margin-top: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.conect-walet {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #a0694f 0%, #6d4c3a 100%);
  border-radius: 10px;
  border: #fff 2px solid;
  padding: 12px 35px;
  user-select: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.conect-walet:hover {
  background: linear-gradient(135deg, #8b5a44 0%, #5a3d2e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.conect-walet:active {
  background: linear-gradient(135deg, #7a4e3b 0%, #4a2f22 100%);
  transform: translateY(0px);
}

.conect-walet__text {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  color: #ffffff;
  font-weight: 600;
}

.header__table {
  width: 100%;
}

.header__table-tbody {
  display: flex;
}

.header__item {
  width: 50%;
}

.conect-walet-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 0px 100px 0px 0px;
}

.information {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Icon (Big Mushroom) */
.hero-icon-container {
  margin-top: 20px;
  margin-bottom: 30px;
  animation: float 3s ease-in-out infinite;
}

.hero-icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.information__title {
  font-family: "CHIBOLD";
  color: #ffffff;
  font-size: 70px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.loader {
  border: 13px solid #e6d5c3;
  border-top: 13px solid #8b6f47;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 1s linear infinite;
  margin: auto;
  margin-top: 20vh;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.timer {
  font-family: "bebas";
  display: flex;
  color: #ffffff;
  gap: 8px;
  font-size: 42px;
  background: linear-gradient(135deg, #8b6f47 0%, #6d4c3a 100%);
  padding: 16px 28px;
  border-radius: 16px;
  border: #e6d5c3 2px solid;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.timer__item {
  display: flex;
  gap: 6px;
}

/* Round Info Section */
.round-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.round-info__card {
  background: linear-gradient(135deg, #a0694f 0%, #8b5a44 100%);
  border: 3px solid #e6d5c3;
  border-radius: 20px;
  padding: 25px 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.round-badge {
  font-family: "CHIBOLD";
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.round-price {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.price-label {
  font-family: "iclend";
  font-size: 24px;
  color: #e6d5c3;
}

.price-value {
  font-family: "bebas";
  font-size: 42px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.round-timeline {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.round-item {
  background: linear-gradient(135deg, #6d4c3a 0%, #5a3d2e 100%);
  border: 2px solid #d4c4b0;
  border-radius: 12px;
  padding: 15px 20px;
  min-width: 120px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.round-item.active {
  opacity: 1;
  border-color: #fff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.round-number {
  font-family: "CHIBOLD";
  font-size: 32px;
  color: #fff;
  margin-bottom: 8px;
}

.round-details {
  font-family: "iclend";
  color: #e6d5c3;
}

.round-time {
  font-size: 18px;
  margin-bottom: 5px;
}

.round-price-small {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.next-round-info {
  font-family: "iclend";
  font-size: 22px;
  color: #fff;
  background: rgba(107, 76, 58, 0.6);
  padding: 12px 30px;
  border-radius: 10px;
  border: 1px solid #d4c4b0;
}

.next-round-info strong {
  color: #ffd700;
  font-family: "bebas";
  font-size: 24px;
}

.presale {
  margin-top: 50px;
}

.presale__title {
  font-family: "CHIBOLD";
  font-size: 42px;
  color: #ffffff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.amount-blocks {
  display: flex;
  gap: 1%;
}

.amount-blocks__amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
  width: 750px;
  background: rgba(160, 105, 79, 0.3);
  color: #ffffff;
  border-radius: 18px;
  border: #e6d5c3 3px solid;
  backdrop-filter: blur(18px);
  font-family: "iclend";
  font-weight: 400;
  gap: 15px;
  justify-content: center;
  padding: 15px 0;
  font-size: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.rate {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: fit-content;
  padding: 15px 0;
  width: 750px;
  background: rgba(160, 105, 79, 0.3);
  color: #ffffff;
  border-radius: 18px;
  border: #e6d5c3 3px solid;
  backdrop-filter: blur(18px);
  font-family: "iclend";
  font-weight: 400;
  gap: 15px;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.amount-blocks__amount-item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  justify-content: space-between;
  background: linear-gradient(135deg, #a0694f 0%, #7a4e3b 100%);
  border-radius: 10px;
  border: #ffffff 2px solid;
  width: 710px;
  min-height: 45px;
  height: auto;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.referral-bonus-display {
  background: linear-gradient(135deg, #d4a574 0%, #a67c52 100%);
  border-color: #ffd700;
}

.bonus-text {
  color: #ffd700;
  font-weight: 700;
}

.button-contribute {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: linear-gradient(135deg, #6d4c3a 0%, #5a3d2e 100%);
  border: #fff 2px solid;
  width: 404px;
  height: 45px;
  border-radius: 22px;
  cursor: pointer;
  font-family: "iclend";
  font-size: 28px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.button-contribute span {
  user-select: none;
}

.button-contribute:hover {
  background: linear-gradient(135deg, #8b6f47 0%, #6d4c3a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.button-contribute:active {
  background: linear-gradient(135deg, #5a3d2e 0%, #4a2f22 100%);
  transform: translateY(0px);
}

.approve-button {
  background: linear-gradient(135deg, #d4a574 0%, #a67c52 100%);
  margin-bottom: 10px;
}

.approve-button:hover {
  background: linear-gradient(135deg, #c49563 0%, #967048 100%);
}

.center-presale {
  display: flex;
  justify-content: center;
}

.phone {
  display: none;
}

.input-amount {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(109, 76, 58, 0.8);
  width: 120px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid #e6d5c3;
}

.input-amount__input {
  width: 90px;
  height: 30px;
  background: none;
  text-align: center;
  border: 0;
  outline: none;
  color: #ffffff;
  font-size: 22px;
  font-family: "iclend";
}

/* Referral Section Styles */
.referral-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.referral-input-container {
  position: relative;
  width: 710px;
}

.referral-input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 2px solid #d4c4b0;
  background: rgba(109, 76, 58, 0.3);
  color: #fff;
  font-family: "iclend";
  font-size: 20px;
  outline: none;
  transition: all 0.3s ease;
}

.referral-input:focus {
  border-color: #ffd700;
  background: rgba(109, 76, 58, 0.5);
}

.referral-input::placeholder {
  color: #d4c4b0;
}

.referral-clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.referral-clear-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.referral-info {
  font-family: "iclend";
  color: #e6d5c3;
  font-size: 16px;
}

/* Your Referral Code Section */
.your-referral-section {
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #6d4c3a 0%, #5a3d2e 100%);
  border-radius: 15px;
  border: 2px solid #ffd700;
}

.your-referral-title {
  font-family: "CHIBOLD";
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 12px;
  text-align: center;
}

.your-referral-code-container {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.your-referral-code {
  flex: 1;
  padding: 10px 15px;
  border-radius: 8px;
  border: 2px solid #d4c4b0;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: "iclend";
  font-size: 18px;
  text-align: center;
  outline: none;
}

.copy-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, #d4a574 0%, #a67c52 100%);
  color: #fff;
  font-family: "iclend";
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.copy-btn:hover {
  background: linear-gradient(135deg, #c49563 0%, #967048 100%);
  transform: translateY(-2px);
}

.referral-earnings {
  font-family: "iclend";
  font-size: 20px;
  color: #e6d5c3;
  text-align: center;
}

.referral-earnings-value {
  color: #ffd700;
  font-weight: 700;
  font-size: 22px;
}

/* Number with subtitle (for MASH value) */
.number-with-sub {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.number-sub {
  font-size: 18px;
  color: #d4c4b0;
  font-family: "iclend";
  font-weight: 300;
}

/* Wallet modal */
.wallet-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 2000;
}

.wallet-modal__content {
  background: linear-gradient(135deg, #2b1a12 0%, #4a2f22 100%);
  border: 2px solid #d4c4b0;
  border-radius: 14px;
  padding: 18px 20px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  color: #fff;
}

.wallet-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.wallet-modal__header h3 {
  margin: 0;
  font-family: "CHIBOLD";
  letter-spacing: 0.5px;
}

.wallet-modal__close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

.wallet-modal__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wallet-option {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid #8b6f47;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wallet-option:hover {
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.wallet-option__title {
  font-family: "iclend";
  font-size: 20px;
}

.wallet-option__desc {
  font-size: 14px;
  color: #d4c4b0;
}

.wallet-modal__hint {
  margin-top: 10px;
  font-size: 13px;
  color: #d4c4b0;
  text-align: center;
}

:root {
  --wcm-z-index: 9999;
}

.wc-fallback {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9998;
}

.wc-fallback__content {
  background: linear-gradient(135deg, #2b1a12 0%, #4a2f22 100%);
  border: 2px solid #d4c4b0;
  border-radius: 14px;
  padding: 18px 20px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  color: #fff;
}

.wc-fallback__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.wc-fallback__header h3 {
  margin: 0;
  font-family: "CHIBOLD";
}

.wc-fallback__close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

.wc-fallback__text {
  margin: 0 0 10px 0;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  line-height: 1.5;
}

.wc-fallback__link {
  display: inline-block;
  word-break: break-all;
  color: #ffd700;
  margin-bottom: 12px;
  text-decoration: underline;
  font-family: "iclend";
}

.wc-fallback__copy {
  background: linear-gradient(135deg, #a0694f 0%, #6d4c3a 100%);
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 10px 18px;
  color: #fff;
  font-family: "iclend";
  cursor: pointer;
  transition: all 0.25s ease;
}

.wc-fallback__copy:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #8b5a44 0%, #5a3d2e 100%);
}

/* Transaction Loader */
.tx-loader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.tx-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #2b1a12 0%, #4a2f22 100%);
  padding: 40px 60px;
  border-radius: 20px;
  border: 3px solid #d4c4b0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.tx-loader__spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #8b6f47;
  border-top: 5px solid #ffd700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.tx-loader__text {
  font-family: "CHIBOLD";
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Custom Modal */
.custom-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalFadeIn 0.3s ease-out;
}

.custom-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.custom-modal__content {
  position: relative;
  background: linear-gradient(135deg, #2b1a12 0%, #4a2f22 100%);
  border: 3px solid #d4c4b0;
  border-radius: 24px;
  padding: 40px 50px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: modalSlideIn 0.3s ease-out;
}

.custom-modal__icon {
  font-size: 64px;
  margin-bottom: 10px;
  animation: modalIconBounce 0.5s ease-out;
}

.custom-modal__title {
  font-family: "CHIBOLD";
  font-size: 32px;
  color: #ffd700;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.custom-modal__message {
  font-family: "Arial", sans-serif;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  margin: 10px 0;
}

.custom-modal__button {
  font-family: "CHIBOLD";
  font-size: 20px;
  color: #2b1a12;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: none;
  border-radius: 50px;
  padding: 15px 60px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.custom-modal__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.custom-modal__button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* Modal Error Style */
.custom-modal--error .custom-modal__content {
  border-color: #ff6b6b;
}

.custom-modal--error .custom-modal__title {
  color: #ff6b6b;
}

.custom-modal--error .custom-modal__button {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.custom-modal--error .custom-modal__button:hover {
  background: linear-gradient(135deg, #ff8e8e 0%, #ff6b6b 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

/* Modal Success Style */
.custom-modal--success .custom-modal__content {
  border-color: #51cf66;
}

.custom-modal--success .custom-modal__title {
  color: #51cf66;
}

/* Modal Animations */
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalIconBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablet & Mobile */
@media (max-width: 1200px) {
  .logo-container {
    padding-left: 40px;
  }

  .conect-walet-item {
    padding: 0px 40px 0px 0px;
  }

  .amount-blocks__amount,
  .rate {
    width: 600px;
  }

  .amount-blocks__amount-item {
    width: 560px;
  }

  .referral-input-container {
    width: 560px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    min-height: 100vh;
    background-attachment: scroll;
    padding: 10px;
    padding-bottom: 50px;
  }

  #content {
    width: 100%;
    padding: 0;
    gap: 20px;
  }

  /* Hide desktop error message */
  .phone {
    display: none !important;
  }

  /* Header Mobile */
  .header {
    flex-direction: column;
    padding: 10px;
    width: 100%;
  }

  .header__table-tbody {
    flex-direction: column;
    gap: 15px;
  }

  .header__item {
    width: 100%;
  }

  .logo-container {
    padding-left: 0;
    justify-content: center;
    gap: 10px;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
  }

  .logo-text {
    font-size: 28px;
  }

  /* Navigation Mobile */
  .main-nav {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    gap: 10px;
    align-items: center;
  }

  .nav-link {
    width: 90%;
    max-width: 350px;
    text-align: center;
    font-size: 16px;
    padding: 10px 15px;
  }

  .conect-walet-item {
    padding: 0;
    justify-content: center;
  }

  .conect-walet {
    width: 100%;
    max-width: 300px;
    padding: 10px 25px;
  }

  .conect-walet__text {
    font-size: 16px;
  }

  /* Hero Section Mobile */
  .information {
    padding: 0 15px;
  }

  .hero-icon-container {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .hero-icon {
    width: 150px;
    height: 150px;
    border: 3px solid #fff;
  }

  .information__title {
    font-size: 32px;
    text-align: center;
  }

  /* Timer Mobile */
  .timer {
    font-size: 24px;
    padding: 12px 20px;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .timer__item {
    gap: 4px;
  }

  /* Round Info Mobile */
  .round-info {
    margin-top: 20px;
    padding: 0 15px;
  }

  .round-info__card {
    padding: 20px 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .round-badge {
    font-size: 28px;
  }

  .price-label {
    font-size: 18px;
  }

  .price-value {
    font-size: 32px;
  }

  /* Presale Section Mobile */
  .center-presale {
    width: 100%;
    padding: 0;
  }

  .presale {
    margin-top: 30px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .presale__title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
  }

  .amount-blocks {
    flex-direction: column;
    gap: 20px;
  }

  .amount-blocks__amount,
  .rate {
    width: 100%;
    font-size: 20px;
    padding: 15px 10px;
  }

  .amount-blocks__amount-item {
    width: calc(100% - 20px);
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .amount-info {
    font-size: 16px;
  }

  .number,
  .number-with-sub .number {
    font-size: 22px;
  }

  .number-sub {
    font-size: 14px;
  }

  /* Input Mobile */
  .input-amount {
    width: 100px;
  }

  .input-amount__input {
    width: 80px;
    font-size: 18px;
  }

  /* Referral Section Mobile */
  .referral-section {
    margin: 15px 0;
  }

  .referral-input-container {
    width: 100%;
  }

  .referral-input {
    font-size: 16px;
    padding: 10px 35px 10px 12px;
  }

  .referral-info {
    font-size: 14px;
  }

  /* Your Referral Code Mobile */
  .your-referral-section {
    padding: 15px;
  }

  .your-referral-title {
    font-size: 20px;
  }

  .your-referral-code-container {
    flex-direction: column;
    gap: 10px;
  }

  .your-referral-code {
    font-size: 14px;
    padding: 8px 10px;
  }

  .copy-btn {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
  }

  .referral-earnings {
    font-size: 16px;
  }

  .referral-earnings-value {
    font-size: 18px;
  }

  /* Buttons Mobile */
  .button-contribute {
    width: 100%;
    max-width: 300px;
    height: 50px;
    font-size: 22px;
    margin: 0 auto;
  }

  /* Wallet Modal Mobile */
  .wallet-modal__content {
    max-width: 90%;
    padding: 15px;
  }

  .wallet-modal__header h3 {
    font-size: 20px;
  }

  .wallet-option {
    padding: 12px 14px;
  }

  .wallet-option__title {
    font-size: 18px;
  }

  .wallet-option__desc {
    font-size: 13px;
  }

  .wallet-modal__hint {
    font-size: 12px;
  }

  /* WalletConnect Fallback Mobile */
  .wc-fallback__content {
    max-width: 90%;
    padding: 15px;
  }

  .wc-fallback__header h3 {
    font-size: 20px;
  }

  .wc-fallback__text {
    font-size: 14px;
  }

  .wc-fallback__link {
    font-size: 14px;
  }

  /* Transaction Loader Mobile */
  .tx-loader__content {
    padding: 30px 40px;
  }

  .tx-loader__spinner {
    width: 50px;
    height: 50px;
  }

  .tx-loader__text {
    font-size: 20px;
  }

  /* Custom Modal Mobile */
  .custom-modal__content {
    padding: 30px 25px;
    max-width: 90%;
  }

  .custom-modal__icon {
    font-size: 48px;
  }

  .custom-modal__title {
    font-size: 24px;
  }

  .custom-modal__message {
    font-size: 16px;
  }

  .custom-modal__button {
    font-size: 18px;
    padding: 12px 40px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .logo-text {
    font-size: 24px;
  }

  .information__title {
    font-size: 28px;
  }

  .timer {
    font-size: 20px;
    padding: 10px 15px;
  }

  .presale__title {
    font-size: 24px;
  }

  .amount-blocks__amount,
  .rate {
    font-size: 18px;
  }

  .amount-blocks__amount-item {
    padding: 12px;
  }

  .hero-icon {
    width: 120px;
    height: 120px;
  }

  .round-badge {
    font-size: 24px;
  }

  .price-value {
    font-size: 28px;
  }

  .button-contribute {
    font-size: 20px;
    height: 45px;
  }
}
