* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: white;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 64px;
  max-height: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.wide-logo {
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s, letter-spacing 0.2s;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.nav-links a:hover {
  color: #14f1c6;
  letter-spacing: 0.13em;
}

.wallet-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wallet-dropdown {
  position: relative;
}

.connect-wallet-btn {
  background: linear-gradient(135deg, #14f195, #00d4aa);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
  font-size: 1rem;
}

.connect-wallet-btn:hover {
  transform: translateY(-2px);
}

.logout-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1001;
  margin-top: 0.5rem;
}

.wallet-dropdown.connected .logout-dropdown {
  opacity: 1;
  visibility: visible;
}

.logout-btn {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-weight: 500;
}

.logout-btn:hover {
  background-color: #f5f5f5;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #14f195;
  transition: all 0.3s;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 1050;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  color: #333;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: #f5f5f5;
  color: #14f1c6;
}

/* MAIN CONTENT */
main {
  margin-top: 80px;
}

.hero {
  background-image: url('hbg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding: 2rem;
}

.hero-content {
  flex: 1;
  padding-left: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #333;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: #333;
  margin-top: 1.2rem;
  margin-bottom: 2.2rem;
  max-width: 500px;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #14f1c6 0%, #00d4aa 100%);
  border: none;
  border-radius: 2rem;
  box-shadow: 0 4px 16px rgba(20,241,198,0.15);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.hero-btn:hover {
  background: linear-gradient(90deg, #00d4aa 0%, #14f1c6 100%);
  transform: translateY(-2px) scale(1.04);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.phantom-badge {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.phantom-badge:hover {
  transform: scale(1.1);
}

.phantom-badge svg {
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(171, 159, 242, 0.3);
  transition: box-shadow 0.3s;
}

.phantom-badge:hover svg {
  box-shadow: 0 6px 24px rgba(171, 159, 242, 0.5);
}

.phantom-tooltip {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #AB9FF2;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(-20px);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(171, 159, 242, 0.3);
}

.phantom-tooltip::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-right-color: #AB9FF2;
}

.phantom-badge:hover .phantom-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.hero-white {
  color: #fff !important;
}

.promo-section {
  background-image: url('promo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.promo-content {
  max-width: 800px;
  padding-left: 2rem;
}

.promo-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
}

.create-section {
  background-color: #14f195;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.create-arrow {
  padding-left: 4rem;
}

.arrow-link {
  display: inline-block;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.arrow-link:hover {
  transform: translateY(-5px);
}

.create-content {
  flex: 1;
}

.create-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

/* NEW SOLANA SECTION */
.solana-section {
  background-image: url('sol.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 2rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.solana-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.solana-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.solana-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.solana-subtitle {
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.why-section {
  background-color: #333;
  padding: 4rem 2rem;
  text-align: center;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 3rem;
}

.features-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feature-block {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  position: relative;
  text-align: left;
}

.block-number {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(20, 241, 149, 0.3);
}

.feature-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.feature-block p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.liquidity-block {
  background-image: url('promo.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 2rem;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.liquidity-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.liquidity-text {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* FAQ SECTION */
.faq-section {
  background-color: white;
  padding: 4rem 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.faq-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  text-align: left;
}

.faq-main-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #183656;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.faq-contact {
  margin-top: 2rem;
}

.faq-contact p {
  color: #3a4a5e;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.faq-email {
  color: #14f1c6;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
}

.faq-email:hover {
  color: #14f1c6;
  text-decoration: underline;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 500;
  color: #183656;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #2566d6;
}

.faq-plus {
  color: #14f1c6;
  font-size: 2rem;
  font-weight: 400;
  margin-left: 1.5rem;
  line-height: 1;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding: 1rem 0 0 0.5rem;
  color: #444;
  font-size: 1.05rem;
  border-left: 3px solid #14f1c6;
  margin-top: 0.5rem;
  transition: all 0.3s;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
}

.footer {
  background-color: #f8f9fa;
  padding: 2rem;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.footer p {
  color: #666;
  font-weight: 500;
}

/* MEDIA QUERIES */

/* Tablet */
@media (max-width: 1024px) {
  .navbar {
      padding: 0.5rem 1rem;
  }
  
  .hero-title {
      font-size: 2.8rem;
  }
  
  .hero-subtitle {
      font-size: 1.2rem;
  }
  
  .promo-title {
      font-size: 2.2rem;
  }
  
  .create-content h2 {
      font-size: 2rem;
  }
  
  .solana-title {
      font-size: 2.8rem;
  }
  
  .solana-subtitle {
      font-size: 1.2rem;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  
  .hamburger {
      display: flex;
  }
  
  .mobile-menu {
      display: flex;
  }
  
  .wide-logo {
      max-width: 320px;
      max-height: 40px;
  }
  
  .hero {
      padding: 2rem 1rem;
      min-height: 70vh;
  }
  
  .hero-content {
      padding-left: 1rem;
  }
  
  .hero-title {
      font-size: 2.5rem;
  }
  
  .hero-subtitle {
      font-size: 1.1rem;
  }
  
  .hero-btn {
      padding: 0.8rem 2rem;
      font-size: 1.1rem;
  }
  
  .hero-actions {
      display: flex;
      align-items: center;
      gap: 1.5rem;
  }
  
  .phantom-badge svg {
      width: 50px;
      height: 50px;
  }
  
  .phantom-tooltip {
      font-size: 0.9rem;
      padding: 0.6rem 1.2rem;
  }
  
  .promo-section {
      padding: 3rem 1rem;
  }
  
  .promo-content {
      padding-left: 1rem;
  }
  
  .promo-title {
      font-size: 1.8rem;
  }
  
  .create-section {
      flex-direction: column;
      gap: 2rem;
      padding: 3rem 1rem;
  }
  
  .create-arrow {
      padding-left: 0;
  }
  
  .arrow-link {
      padding: 1.5rem;
  }
  
  .arrow-link svg {
      width: 60px;
      height: 60px;
  }
  
  .create-content h2 {
      font-size: 1.8rem;
      text-align: center;
  }
  
  .solana-section {
      padding: 4rem 1rem;
      min-height: 50vh;
  }
  
  .solana-title {
      font-size: 2.2rem;
  }
  
  .solana-subtitle {
      font-size: 1.1rem;
  }
  
  .why-section {
      padding: 3rem 1rem;
  }
  
  .why-title {
      font-size: 2rem;
  }
  
  .feature-block {
      padding: 2rem;
  }
  
  .block-number {
      font-size: 2.5rem;
      top: 0.5rem;
      right: 1.5rem;
  }
  
  .feature-block h3 {
      font-size: 1.3rem;
  }
  
  .liquidity-block {
      padding: 2rem 1rem;
  }
  
  .liquidity-title {
      font-size: 1.6rem;
  }
  
  .faq-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 2rem 1rem;
  }
  
  .faq-main-title {
      font-size: 2.5rem;
  }
  
  .faq-question {
      font-size: 1.2rem;
  }
  
  .faq-answer {
      font-size: 1rem;
  }
}

/* Mobile Small */
@media (max-width: 600px) {
  .navbar {
      padding: 0.5rem 1rem;
      max-height: 64px;
  }
  
  .connect-wallet-btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
  }
  
  .wide-logo {
      max-width: 200px;
      max-height: 32px;
  }
  
  .hero {
      background-image: none;
      padding: 2rem 1rem;
      min-height: 60vh;
  }
  
  .hero-white {
      color: #333 !important;
  }
  
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-subtitle {
      font-size: 1rem;
  }
  
  .hero-btn {
      padding: 0.7rem 1.5rem;
      font-size: 1rem;
  }
  
  .hero-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
  }
  
  .phantom-badge svg {
      width: 45px;
      height: 45px;
  }
  
  .phantom-tooltip {
      font-size: 0.8rem;
      padding: 0.5rem 1rem;
  }
  
  .promo-section {
      padding: 2rem 1rem;
      min-height: 50vh;
  }
  
  .promo-title {
      font-size: 1.5rem;
  }
  
  .create-section {
      padding: 2rem 1rem;
  }
  
  .create-content h2 {
      font-size: 1.5rem;
  }
  
  .solana-section {
      padding: 3rem 1rem;
      min-height: 40vh;
  }
  
  .solana-title {
      font-size: 1.8rem;
  }
  
  .solana-subtitle {
      font-size: 1rem;
  }
  
  .why-section {
      padding: 2rem 1rem;
  }
  
  .why-title {
      font-size: 1.8rem;
  }
  
  .feature-block {
      padding: 1.5rem;
  }
  
  .block-number {
      font-size: 2rem;
      top: 0.5rem;
      right: 1rem;
  }
  
  .feature-block h3 {
      font-size: 1.2rem;
  }
  
  .feature-block p {
      font-size: 0.9rem;
  }
  
  .liquidity-block {
      padding: 1.5rem;
  }
  
  .liquidity-title {
      font-size: 1.4rem;
  }
  
  .liquidity-text {
      font-size: 1rem;
  }
  
  .faq-section {
      padding: 2rem 1rem;
  }
  
  .faq-grid {
      padding: 2rem 1rem;
  }
  
  .faq-main-title {
      font-size: 2rem;
  }
  
  .faq-question {
      font-size: 1.1rem;
  }
  
  .faq-plus {
      font-size: 1.5rem;
  }
  
  .faq-answer {
      font-size: 0.9rem;
      padding: 0.8rem 0 0 0.5rem;
  }
  
  .footer {
      padding: 1.5rem;
  }
  
  .footer p {
      font-size: 0.9rem;
  }
}

/* Mobile Extra Small */
@media (max-width: 480px) {
  .navbar {
      padding: 0.3rem 0.5rem;
      max-height: 56px;
  }
  
  .wide-logo {
      max-width: 160px;
      max-height: 28px;
  }
  
  .connect-wallet-btn {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
  }
  
  .hero-title {
      font-size: 1.8rem;
  }
  
  .hero-subtitle {
      font-size: 0.9rem;
  }
  
  .promo-title {
      font-size: 1.3rem;
  }
  
  .create-content h2 {
      font-size: 1.3rem;
  }
  
  .solana-title {
      font-size: 1.6rem;
  }
  
  .solana-subtitle {
      font-size: 0.9rem;
  }
  
  .why-title {
      font-size: 1.6rem;
  }
  
  .phantom-badge svg {
      width: 40px;
      height: 40px;
  }
  
  .phantom-tooltip {
      font-size: 0.75rem;
      padding: 0.4rem 0.8rem;
  }
  
  .faq-main-title {
      font-size: 1.8rem;
  }
}

/* Стили для модального окна ограничений */
.restriction-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.restriction-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: restrictionModalSlideIn 0.5s ease-out;
}

@keyframes restrictionModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.restriction-modal-header {
    background: linear-gradient(135deg, var(--primary-color, #14f1c6), var(--secondary-color, #764ba2));
    color: white;
    padding: 2rem;
    text-align: center;
}

.restriction-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.restriction-modal-content {
    padding: 2rem;
}

.restriction-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.restriction-payment-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.restriction-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #14f1c6);
    margin-bottom: 1rem;
}

.restriction-qr-code {
    margin: 2rem 0;
}

.restriction-qr-code img {
    width: 200px;
    height: 200px;
    border: 4px solid white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.restriction-sol-address {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin: 1rem 0;
    color: #333;
}

.restriction-pay-btn {
    background: linear-gradient(135deg, var(--primary-color, #14f1c6), var(--secondary-color, #764ba2));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0.5rem;
}

.restriction-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.restriction-check-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    margin: 0.5rem;
    transition: all 0.3s;
}

.restriction-check-btn:hover {
    background: #218838;
}

.restriction-check-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.restriction-spinner {
    display: inline-block;
    width: 1em;
    height: 1em;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: restrictionSpin 1s linear infinite;
    margin-left: 0.5em;
}

@keyframes restrictionSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.restriction-result-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.restriction-result-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.restriction-result-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.restriction-domain-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    color: #666;
    font-size: 0.9rem;
}

/* Блюр основного контента когда открыто модальное окно */
body.restriction-modal-open > *:not(.restriction-modal-overlay) {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

/* Убираем возможность взаимодействия с фоновым контентом */
body.restriction-modal-open {
    overflow: hidden;
}

/* Респонсивность для модального окна */
@media (max-width: 768px) {
    .restriction-modal {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .restriction-modal-header,
    .restriction-modal-content {
        padding: 1.5rem;
    }
    
    .restriction-title {
        font-size: 1.5rem;
    }
    
    .restriction-amount {
        font-size: 2rem;
    }
    
    .restriction-qr-code img {
        width: 150px;
        height: 150px;
    }
    
    .restriction-pay-btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}