/* --- Base Styles & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
  width: 100%;
  min-height: 100vh;
  background-color: #0d0d0d;
}

/* --- Shared Layout Classes --- */
.page-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow-x: hidden;
}

.landing-bg {
  background: radial-gradient(circle, #0e3161 0%, #031024 70%, #020710 100%);
}

.form-bg {
  background: radial-gradient(circle at top, #0c2b54 0%, #031126 60%, #01060d 100%);
  justify-content: flex-start;
}

/* Logo Typography */
.logo-text {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

/* --- Page 1 Specifics --- */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* 25% Off Style */
.promo-badge {
  color: #00e5bc;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.promo-off {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-left: 4px;
  margin-top: 8px;
}

/* Price Banner pill background */
.price-banner {
  background-color: rgba(2, 11, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.new-price {
  color: #00e5bc;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: bold;
}

/* Transformed button into an anchor tag link style */
.register-btn {
  background-color: #00e5bc;
  color: #031024;
  text-decoration: none;
  padding: 12px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 229, 188, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 188, 0.5);
}

.social-icons {
  position: absolute;
  top: 5%;
  right: 5%;
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #00f5d2;
  font-size: 1.5rem;

}

.telegram-badge {
  position: absolute;
  bottom: 10%;
  right: 7%;
}

.telegram-badge a {
  background-color: #0088cc;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-align: center;
}

.telegram-badge i{
    font-size: 1.5rem;
    text-align: center;
    
}

/* --- Page 2 Specifics (Instructions & Bank Card) --- */
.back-btn {
  position: absolute;
  top: 25px;
  left: 30px;
  text-decoration: none;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s, border-color 0.2s;
}

.back-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.instructions-container {
  color: #ffffff;
  max-width: 600px;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.instruction-title {
  font-weight: bold;
  margin-bottom: 8px;
}

.instructions-container p {
  margin-bottom: 12px;
}

/* Floating White Bank Box */
.bank-card {
  background-color: #ffffff;
  color: #0f3669;
  border-radius: 12px;
  padding: 16px 24px;
  width: max-content;
  min-width: 280px;
  margin: 15px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.bank-holder {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.bank-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.bank-icon {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.bank-account {
  font-family: monospace, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/* Registration section header */
.registration-subtitle {
  color: #00e5bc;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

/* Form Window Wrapper */
.form-wrapper.seamless-form {
  width: 100%;
  max-width: 780px; /* Increased from 650px to perfectly fit standard Google Forms */
  height: auto;
  background-color: #0f3669;
  border-radius: 20px;
  padding: 16px; /* Extra padding inside the blue panel holder */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
  margin: 0 auto; /* Keeps the form perfectly centered */
}

.google-form-iframe {
  width: 100%; /* Spans across the entire 780px parent element safely */
  height: 1450px; 
  border: none;
  border-radius: 14px;
  display: block;
  overflow: hidden;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .page-container {
    padding: 30px 16px;
  }
  
  .social-icons {
    top: 20px;
    right: 20px;
  }

  .back-btn {
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .telegram-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 40px;
  }

  .bank-card {
    width: 100%;
    min-width: unset;
  }

  .form-wrapper {
    height: 65vh;
  }
}

.main-content img{

    width: 30%;
}

.logo{

    width: 20%;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
 .logo{

    width: 50%;
    margin-bottom: 2rem;

 
    
}}

@media (max-width: 470px) {
 
.main-content img{

    width: 60%;
}
 
    
}