@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Inter', sans-serif; 
}

body {
  background: #000000;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; 
}

.navbar-container {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px 32px;
  width: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-container:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 12px;
  position: relative;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  transform: translateY(-1px);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 70%;
  height: 2px;
  background: #000000;
  transform: translateX(-50%);
}

@media (max-width:768px){ 
  .navbar-container { padding: 10px 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 14px; padding: 6px 12px; }
}

header { height: 120px; }

.section {
  text-align: center; 
  padding: 120px 20px 80px; 
  position: relative; 
  max-width: 1700px;
  margin: 0 auto;
  display: none;
}

.section.active {
  display: block;
}

.section h1 {
  font-size: 120px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  z-index: 0;
  letter-spacing: 10px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.cards-container { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 45px; 
  z-index: 1; 
  margin-top: 60px; 
  position: relative;
}

.row { 
  display: flex; 
  justify-content: center; 
  gap: 28px; 
  flex-wrap: wrap; 
  width: 100%;
}

.card {
  border-radius: 20px;
  padding: 45px 38px;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 350px;
  max-width: 90vw;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

#menu .card,
#extras .card {
  width: 370px;
  padding: 50px 40px;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-15px) scale(1.03);
  background: rgba(25, 25, 25, 0.95);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
}

#menu .card:hover,
#extras .card:hover {
  transform: translateY(-15px) scale(1.05);
}

.card h2 { 
  font-size: 2rem; 
  margin-bottom: 25px; 
  font-weight: 700; 
  color: #ffffff;
  text-align: center;
}

#menu .card h2,
#extras .card h2 {
  font-size: 2.2rem;
  margin-bottom: 28px;
}

.price { 
  font-size: 3.5rem; 
  font-weight: 700; 
  color: #ffffff;
  margin-bottom: 35px;
  text-align: center;
  position: relative;
}

#menu .price,
#extras .price {
  font-size: 3.8rem;
  margin-bottom: 40px;
}

.price .currency {
  font-size: 2rem;
  color: #ffffff;
  vertical-align: super;
}

#menu .price .currency,
#extras .price .currency {
  font-size: 2.2rem;
}

.card ul { 
  list-style: none; 
  margin-bottom: 40px; 
  text-align: left; 
  width: 100%; 
  flex-grow: 1;
}

#menu .card ul,
#extras .card ul {
  margin-bottom: 45px;
}

.card ul li { 
  margin: 16px 0; 
  display: flex; 
  align-items: center; 
  font-size: 16px; 
  color: #cccccc;
  transition: color 0.3s ease;
}

#menu .card ul li,
#extras .card ul li {
  font-size: 17px;
  margin: 18px 0;
}

.card:hover ul li {
  color: #ffffff;
}

.card ul li::before { 
  content: "✓"; 
  color: #ffffff; 
  margin-right: 14px; 
  font-weight: bold;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.card:hover ul li::before {
  transform: scale(1.2);
}

.card button {
  width: 100%;
  padding: 20px;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  margin-top: auto;
}

.via-direct {
  margin-top: 20px;
}

.via-direct a {
  text-decoration: none;
  color: #fff;
  transition: 0.5s;
}

.via-direct a:hover {
  text-decoration: none;
  color: #ffffffad;
  transition: 0.5s;
}

#menu .card button,
#extras .card button {
  padding: 22px;
  font-size: 18px;
}

.card button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  transition: left 0.6s ease;
}

.card button:hover::before {
  left: 100%;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.image-card {
  background: transparent;
  border-radius: 15px;
  padding: 0;
  border: none;
  box-shadow: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.image-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.image-preview {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.image-card:hover .image-preview {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.cashapp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.tutorial-card {
  background: rgba(20, 20, 20, 0.85);
  border-radius: 20px;
  padding: 35px 30px;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
  transition: all 0.4s ease;
  height: fit-content;
}

.tutorial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.tutorial-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.step {
  margin-bottom: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #00D632;
}

.step-number {
  display: inline-block;
  background: #00D632;
  color: #000000;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-weight: 700;
  margin-right: 12px;
  font-size: 0.9rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-description {
  color: #cccccc;
  line-height: 1.5;
  font-size: 0.9rem;
}

.important-note {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 18px;
  margin-top: 25px;
}

.note-title {
  color: #FFC107;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.video-section {
  background: rgba(20, 20, 20, 0.85);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
  transition: all 0.4s ease;
  height: fit-content;
}

.video-section:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.video-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-description {
  color: #cccccc;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

body:has(.modal[style*="display: block"]) {
    overflow:hidden;
    position:fixed;
    width:100%;
    height:100%;
}

.modal.active {
  display: flex;
}

.modal-image-content {
  max-width: 95%;
  max-height: 95%;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.background-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.circle-1 {
  width: 500px;
  height: 500px;
  background: #ffffff;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: #ffffff;
  bottom: 15%;
  right: 8%;
  animation-delay: 2s;
}

.circle-3 {
  width: 300px;
  height: 300px;
  background: #ffffff;
  top: 50%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@media (max-width:1024px){ 
  .section h1{ font-size: 90px; } 
  .card{ width: 320px; } 
  #menu .card,
  #extras .card {
    width: 340px;
    padding: 45px 35px;
  }
  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .tutorial-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .row {
    gap: 22px;
  }
}

@media (max-width:768px){ 
  .section h1{ font-size: 60px; top: 40px; letter-spacing: 5px; } 
  .card{ width: 100%; max-width: 420px; padding: 40px 30px; }
  #menu .card,
  #extras .card {
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
  }
  .row { gap: 28px; }
  .cards-container { margin-top: 50px; gap: 35px; }
  .section { padding: 100px 15px 60px; }
  
  .row {
    flex-direction: column;
    align-items: center;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 0 15px;
    gap: 20px;
  }

  .cashapp-container {
    padding: 0 15px;
  }

  .tutorial-grid {
    gap: 20px;
  }

  .tutorial-card, .video-section {
    padding: 25px 20px;
  }

  .tutorial-title {
    font-size: 1.5rem;
  }

  .step {
    padding: 15px;
    margin-bottom: 15px;
  }

  .modal-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 15px;
  }
}

@media (max-width:480px){ 
  .section h1{ font-size: 45px; top: 30px; letter-spacing: 3px; } 
  .card{ width: 100%; padding: 35px 25px; }
  #menu .card,
  #extras .card {
    width: 100%;
    padding: 35px 25px;
  }
  .row { gap: 22px; }
  .cards-container { margin-top: 40px; gap: 28px; }
  .card h2 { font-size: 1.8rem; }
  #menu .card h2,
  #extras .card h2 {
    font-size: 1.9rem;
  }
  .price { font-size: 3rem; }
  #menu .price,
  #extras .price {
    font-size: 3.2rem;
  }
  .section-subtitle { font-size: 15px; margin-bottom: 35px; padding: 0 10px; }
  
  .gallery-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  
  .image-preview {
    height: 200px;
  }

  .cashapp-container {
    padding: 0 10px;
  }

  .tutorial-card, .video-section {
    padding: 20px 15px;
  }

  .tutorial-title {
    font-size: 1.3rem;
  }

  .step {
    padding: 12px;
    margin-bottom: 12px;
  }

  .step-title {
    font-size: 0.95rem;
  }

  .video-title {
    font-size: 1.2rem;
  }
  
  .navbar-container {
    padding: 8px 16px;
    top: 15px;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .nav-links a {
    font-size: 13px;
    padding: 5px 10px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  overscroll-behavior: contain;
}

.modal-content {
  background-color: rgba(20, 20, 20, 0.95);
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  color: white;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.close {
  color: #cccccc;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover, .close:focus {
  color: white;
  text-decoration: none;
}

.paymentTitle {
  font-size: 1.5em;
  color: #ffffff;
}

.payment-amount {
  font-size: 32px;
  font-weight: 700;
  color: #00D632;
  text-align: center;
  margin-bottom: 24px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-method-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-method-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.payment-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.paypal-icon {
  background: linear-gradient(135deg, #0070ba, #003087);
  color: white;
}

.payment-method-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}

.other-methods-link {
  text-align: center;
  margin-top: 16px;
}

.other-methods-link a {
  color: #00D632;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.telegram-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.crypto-selector-container {
  margin-bottom: 20px;
}

.crypto-select {
 width: 100%;
 padding: 12px 16px;
 background: rgba(255, 255, 255, 0.05);
 border: 1px solid rgba(255, 255, 255, 0.12);
 border-radius: 12px;
 color: #ffffff;
 font-size: 16px;
 font-weight: 500;
 cursor: pointer;
 transition: all 0.3s ease;
 appearance: none;
 background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
 background-repeat: no-repeat;
 background-position: right 12px center;
 background-size: 20px;
 padding-right: 45px;
}

.crypto-select:focus {
  outline: none;
}

.crypto-select:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.crypto-select option {
  background: rgba(20, 20, 20, 0.95);
  color: #ffffff;
  padding: 10px;
}

.txid-container {
  margin-top: 20px;
}

.txid-container h4 {
  color: #ffffff;
  margin-bottom: 8px;
}

.txid-container input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 12px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  transition: left 0.6s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.circle {
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #00D632;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

#paymentInfoMessage {
    color: #9fffa1 !important;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.6;
    background-color: rgba(0, 255, 0, 0.07);
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 0, 0.1);
    margin-top: 10px;
    margin-bottom: 10px;
    max-height: 140px;
    overflow-y: auto;
}

#paymentResultMessage {
  color: #ffffff !important;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

#codeLinks a.code-link, #codeLinksEuro a.code-link, #voucherLinks a.voucher-link, #voucherLinksEuro a.voucher-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  margin-bottom: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#codeLinks a.code-link:hover, #codeLinksEuro a.code-link:hover, #voucherLinks a.voucher-link:hover, #voucherLinksEuro a.voucher-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: underline;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
 }
  100% {
      transform: rotate(360deg);
 }
}

@media (max-width: 768px) {
  .modal-content {
      padding: 16px;
      border-radius: 16px;
      max-height: 85vh;
 }
  
  .payment-amount {
      font-size: 28px;
      margin-bottom: 20px;
 }
  
  .payment-method-btn {
      padding: 12px;
      gap: 12px;
 }
  
  .payment-icon {
      width: 36px;
      height: 36px;
      font-size: 16px;
 }
  
  .payment-method-name {
      font-size: 14px;
 }
  
  .crypto-select {
      font-size: 14px;
      padding: 10px 12px;
      padding-right: 40px;
      background-size: 18px;
      background-position: right 10px center;
 }
  
  .txid-container input {
      padding: 10px;
      font-size: 14px;
 }
  
  .submit-btn {
      padding: 16px;
      font-size: 14px;
 }
  
  #paymentInfoMessage {
      max-height: 120px;
      font-size: 13px;
 }
}

.card.popular {
    position: relative;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.card.popular::before {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFC107;
    color: #000000;
    padding: 12px 100px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    z-index: 2;
    border-radius: 8px 8px 0 0;
    white-space: nowrap;
    width: auto;
    min-width: 180px;
    line-height: 0.2;
}
.popular button {
  background-color: #FFC107;
}

.card.custom {
    position: relative;
    border: 1px solid rgba(255, 7, 7, 0.3);
}

.card.custom::before {
    content: "PERSONALIZE";
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF0000;
    color: #000000;
    padding: 12px 100px;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    z-index: 2;
    border-radius: 8px 8px 0 0;
    white-space: nowrap;
    width: auto;
    min-width: 180px;
    line-height: 0.2;
}

.custom button {
  background-color: #FF0000;
}

.no-select {
  user-select: none;       
  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;  
}

.section {
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
  display: none;
}

.section.active {
  display: block;
}

.section-subtitle {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.contact-card {
  background: rgba(20, 20, 20, 0.85);
  border-radius: 20px;
  padding: 35px 30px;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
  transition: all 0.4s ease;
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.download-btn {
  background: rgba(0, 214, 50, 0.2);
  color: #00d632;
  border: 1px solid rgba(0, 214, 50, 0.3);
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.contact-body {
  margin-top: 20px;
}

.session-id-section {
  margin-bottom: 30px;
}

.id-label {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.session-id {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 12px;
  font-family: monospace;
  word-break: break-all;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  line-height: 1.5;
}

.id-actions {
  display: flex;
  gap: 15px;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #000000;
  padding: 12px 25px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  flex: 1;
}

.share-btn {
  background: rgba(0, 214, 50, 0.2);
  color: #ffffff;
  border: 1px solid rgba(0, 214, 50, 0.3);
  padding: 12px 25px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
  flex: 1;
}

.qr-section {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-label {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.qr-note {
  color: #cccccc;
  font-size: 0.85rem;
  text-align: center;
  background: rgba(0, 214, 50, 0.1);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border: 1px solid rgba(0, 214, 50, 0.2);
  width: 100%;
}

.contact-info-card {
  background: rgba(20, 20, 20, 0.85);
  border-radius: 20px;
  padding: 35px 30px;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9);
  transition: all 0.4s ease;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0 30px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border-left: 3px solid #00d632;
  transition: all 0.3s ease;
}

.security-content {
  flex: 1;
  min-width: 0;
}

.privacy-badge {
  background: rgba(0, 214, 50, 0.1);
  border: 1px solid rgba(0, 214, 50, 0.2);
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .section h1 {
    font-size: 90px;
  }
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .contact-card,
  .contact-info-card {
    padding: 25px 20px;
  }
  .contact-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .download-btn {
    width: 100%;
    justify-content: center;
  }
  .id-actions {
    flex-direction: column;
  }
  .copy-btn,
  .share-btn {
    width: 100%;
  }
  .session-id {
    font-size: 0.8rem;
    padding: 15px;
  }
  #sessionQrCode canvas {
    width: 160px !important;
    height: 160px !important;
  }
  .security-item {
    padding: 14px;
  }
  .privacy-badge {
    padding: 10px 15px;
  }
  .section {
    padding: 100px 15px 60px;
  }
  .section h1 {
    font-size: 60px;
    top: 40px;
    letter-spacing: 5px;
  }
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .contact-card,
  .contact-info-card {
    padding: 20px 15px;
  }
  .contact-logo {
    font-size: 1.5rem;
  }
  .session-id {
    font-size: 0.7rem;
    padding: 12px;
  }
  .id-label,
  .qr-label {
    font-size: 1.1rem;
  }
  #sessionQrCode canvas {
    width: 140px !important;
    height: 140px !important;
  }
  .section h1 {
    font-size: 45px;
    top: 30px;
    letter-spacing: 3px;
  }
  .section-subtitle {
    font-size: 15px;
    margin-bottom: 35px;
    padding: 0 10px;
  }
}

.contact-card:hover,
.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.download-btn:hover {
  background: rgba(0, 214, 50, 0.3);
  transform: translateY(-2px);
  color: #ffffff;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.share-btn:hover {
  background: rgba(0, 214, 50, 0.3);
  transform: translateY(-2px);
}

.security-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(5px);
}

.contact-logo i {
  color: #00d632;
  font-size: 1.5rem;
}

.security-item i {
  color: #00d632;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.security-content strong {
  color: #fff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.security-content p {
  color: #aaa;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
  text-align: left;
}

.privacy-badge i {
  color: #00d632;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.privacy-badge span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}

.qr-note i {
  color: #00d632;
}

.section h1 {
  font-size: 120px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  z-index: 0;
  letter-spacing: 10px;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
}