*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Mobile full-screen container */
.mobile-container {
  width: 100%;
  min-height: 100vh;
  /* Background image */
  background-image: url("assets/background.jpeg"); /* <-- your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
}

.telegram-sticky {
  position: fixed;
  right: 16px;
  bottom: 16px;

  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #0088cc, #00aaff);
  color: #fff;

  border-radius: 50%;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
}

/* Icon size */
.telegram-sticky i {
  font-size: 22px;
}

/* Tap effect (mobile) */
.telegram-sticky:active {
  transform: scale(0.95);
}

/* Header */
.mobile-header {
  width: 100%;
  display: grid;
  align-items: center;
  gap: 10px;              /* space between buttons */
  padding: 10px 10px; /* side spacing */
  justify-items: anchor-center;
}

/* Header buttons */
.header-btn {
  flex: 1;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: rgb(149 85 20 / 30%) 4px 2px 1px 2px, rgb(117 71 14 / 22%) 0px 15px 12px;
    line-height: 45px;
    border-radius: 14px; 
    width: 90%;
    transition: all 0.3s ease;
}

.btn-pulse {
  background-color: #3498db;
  color: white;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.header-btn:nth-child(1) {
    background: linear-gradient(358deg, #3c20ad, #8f3c95);
    box-shadow: rgb(133 40 121 / 30%) 4px 2px 1px 2px, rgb(117 71 14 / 22%) 0px 15px 12px;
}

.header-btn:nth-child(2) {
   background: linear-gradient(1deg, #1aa1b7, #1a6499);
   box-shadow: rgb(34 100 111 / 30%) 4px 2px 20px 2px, rgb(41 150 175 / 22%) 0px 15px 12px;
}

.header-btn:nth-child(3) {
      background: linear-gradient(331deg, #e55226, #89055a);
    box-shadow: rgb(149 85 20 / 30%) 4px 2px 1px 2px, rgb(133 19 119 / 22%) 0px 15px 12px;
}

/* Mobile tap effect */
.header-btn:active {
  background: rgba(255, 255, 255, 0.2);
}

.logo img{
    width: 55%;
}

.logo p:nth-child(1){
    font-size: 35px;
    font-weight: 700;
}

.logo p:nth-child(2){
    font-size: 18px;
}


/* Container */
.btn-container {
  width: 100%;
  padding: 20px;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 3D WhatsApp Button */
.wa-btn-3d {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
      gap: 10px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border-radius: 40px;
    background: linear-gradient(191deg, #0f5132, #14653f, #d7cfa6);
    box-shadow: -2px -2px 0 #978543, 0 12px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.15s ease;
}

/* Icon size */
.wa-btn-3d i {
  font-size: 18px;
}

/* Pressed (3D click) */
.wa-btn-3d:active {
  transform: translateY(6px);
  box-shadow:
    0 2px 0 #0b3d2a,
    0 6px 10px rgba(0, 0, 0, 0.35);
}

.notice p:nth-child(1){
    font-size: 30px;
    font-weight: 600;
}

.notice p:nth-child(2){
       font-size: 17px;
    font-weight: 600;
    line-height: 29px;
    margin-top: 10px;
        padding: 0 15px;
            padding-bottom: 50px;
}

/* Optional overlay for better text visibility */
.mobile-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Keep content above overlay */
.mobile-container * {
  position: relative;
  z-index: 1;
}

/* 🚫 Hide on tablet & desktop */
@media (min-width: 768px) {
  /* body {
    display: none;
  } */
}




/* Wrapper animation stays same */
.wa-anim-wrapper {
  position: relative;
  perspective: 800px;
  animation: zoom3d 2.5s infinite ease-in-out;
}

.finger-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 26px;
  pointer-events: none;
  transform-origin: center;
  animation: fingerPress 2.5s infinite ease-in-out;
}

@keyframes fingerPress {
  0%, 40% {
    transform: translateY(-50%) rotate(-100deg);
  }
  55%, 65% {
    transform: translateY(-35%) rotate(-100deg);
  }
  100% {
    transform: translateY(-50%) rotate(-100deg);
  }
}

/* Button auto press */
.wa-btn-3d.pressed {
  transform: translateY(6px);
  box-shadow:
    0 2px 0 #0b3d2a,
    0 6px 10px rgba(0, 0, 0, 0.35);
}


/* ===== Proof Section ===== */
.proof-section {
  padding: 20px 15px;
  text-align: center;
  color: #fff;
}

.proof-box {
  background: #2b0b2e;
  border-radius: 16px;
  padding: 18px 14px;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  border: 2px solid rgba(255, 215, 0, 0.6);
}

.proof-box h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.proof-section p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}

/* ===== Carousel ===== */
.carousel {
  width: 70vw; /* 70% of viewport width */
  max-width: 400px; /* optional max width */
  margin: 20px auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel img {
  width: 100%; /* full width of container */
  flex-shrink: 0; /* prevent shrinking */
  border-radius: 16px;
  box-shadow:
    0 0 10px 3px rgba(255, 215, 0, 0.9),
    0 8px 20px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

