:root {
      --bg: #0e0f13;
      --panel: rgba(255, 255, 255, 0.06);
      --border: rgba(255, 255, 255, 0.12);
      --text: #ffffff;
      --muted: #b5b5c0;
      --primary: #4f7cff;
      --accent: #2dd4bf;
      --radius: 18px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    }

    body {
      background: radial-gradient(circle at top, #1b1d29, var(--bg));
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 60px;
      position: sticky;
      top: 0;
      backdrop-filter: blur(14px);
      background: rgba(14, 15, 19, 0.7);
      border-bottom: 1px solid var(--border);
      z-index: 10;
    }

    header h1 {
      font-size: 26px;
      font-weight: 700;
      background-color: #ffffff;
      border-radius: 8px;
      padding: 2px 10px;
      color: #0e0f13;
    }

    .lang-switch a {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
      padding: 8px 14px;
      margin-left: 4px;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
    }

    .lang-switch a:hover {
      background: var(--primary);
      border-color: var(--primary);
    }

    /* ---------- HERO ---------- */

    .hero {
      padding: 130px 20px 50px 20px;
      text-align: center;
      max-width: 1100px;
      margin: auto;
    }

    .hero h2, .th2 {
      font-size: 54px;
      line-height: 1.1;
      margin-bottom: 24px;
      background: linear-gradient(90deg, #ffffff, #9bb4ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p, .tp {
      font-size: 20px;
      color: var(--muted);
      max-width: 820px;
     
    }

    #videoDiv2 {width:100%; max-width:1200px; margin:auto; display:block; position: relative;} /* This has been changed */
    #video2{width:100%; height:auto; padding: 0;margin: 0;} /* This has been changed */
    #videoMessage2 {  
      background-color: rgba(0, 0, 0, 0.8);
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      flex-direction: column; 
      justify-content: center;
      align-items: center; 
      width: 100%;
      height: 99%;
      text-align: center;
      padding: 0;
      margin: 0;
    }

    /* ---------- SECTIONS ---------- */

    section {
      max-width: 1200px;
      margin: auto;
      padding: 100px 20px 50px 20px;
    }

    section h3 {
      font-size: 38px;
      margin-bottom: 18px;
      text-align: center;
    }

    section .subtitle {
      text-align: center;
      color: var(--muted);
      max-width: 750px;
      margin: 0 auto 60px;
      font-size: 18px;
    }

    /* ---------- CARDS ---------- */

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

    .card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 34px;
      opacity: 0;
      transform: translateY(40px);
      transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.8s ease,
        box-shadow 0.35s ease;
    }

    .card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    }

    .card h4 {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .card p {
      color: var(--muted);
    }

    /* ---------- PAYMENT HIGHLIGHT ---------- */

    .payment {
      border: 1px solid rgba(45, 212, 191, 0.5);
      background: linear-gradient(
        180deg,
        rgba(45, 212, 191, 0.15),
        rgba(255, 255, 255, 0.05)
      );
    }

    .payment h4 {
      color: var(--accent);
    }

/* ---------- CTA ---------- */
.cta{
  background:linear-gradient(135deg,#4f7cff,#2dd4bf);
  border-radius:28px;
  padding:70px 40px;
  text-align:center;
  margin-bottom: 58px;
}

.cta h3{
  font-size:42px;
  margin-bottom:16px;
}

.cta p{
  color:#f0f4ff;
  font-size:18px;
  margin-bottom:30px;
}

.cta a{
  background:#0b0d12;
  color:white;
  border:none;
  padding:16px 36px;
  font-size:16px;
  border-radius:14px;
  cursor:pointer;
  transition:.25s;
}
.cta a:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

/* ---------- FOOTER ---------- */

footer {
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.footer_links {
    margin: 0 0 20px 0;
    padding: 20px 0 20px 0;
}

.footer_links a, .fl {
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}

.footer_links a:hover {
    text-decoration: underline;
}

/*------*/

.row01 {
  display: flex;
  gap: 20px;
  margin: 0 auto 0 auto;
  width: auto;
}

.cell01a {
  min-width: 140px;
}

.cell01b {
  width: auto;
}


    /* ---------- RESPONSIVE ---------- */

    @media (max-width: 700px) {
      header {
        padding: 20px;
      }

      .hero h2 {
        font-size: 40px;
      }
    }