:root{
  --primaryGradientColor:linear-gradient(135deg, #f5d77a 0%, #e6c25f 25%, #caa23c 50%, #e6c25f 75%, #f5d77a 100%);
  --primaryColor:#f5d77a;
  --bg: #0b0f17;
      --bg-soft: #0f1420;
      --text: #e8eefc;
      --muted: #9cb3d9;
      --brand: #7c9aff;
      --card: #101826;
      --chip: #0c1322;
      --border: #1b263b;
      --shadow: 0 10px 30px rgba(0, 0, 0, .35);
      --radius: 18px;
      --buttonColor:linear-gradient(135deg, #f5d77a 0%, #e6c25f 25%, #caa23c 50%, #e6c25f 75%, #f5d77a 100%);
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }


    .logo {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--primaryGradientColor);
      color: white;
      font-weight: 800
    }

    .container {
      max-width: 1100px;
      margin-inline: auto;
      padding: 28px 20px 56px
    }
    
    body {
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      padding: 0px;
    }

    h2 {
      font-weight: 600;
      font-size: 35px;
      background: linear-gradient(135deg, #e6c25f, #caa23c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
    }

    p {
      text-align: justify;
      color: var(--muted);
      margin-bottom: 16px;
    }


/*Header*/
    .headline {
      font-weight: 700;
      font-size: 48px;
      background: var(--primaryGradientColor);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .content {
      text-align: center;
      padding: 50px;
      font-size: 15px;
      max-width: 1300px;
      margin: 0 auto;
    }


    .bannerImage{
      border-radius: 16px;
      border: 1px solid var(--border);
      border-color: var(--primaryColor);
      width: 100%;
      padding: 0px;
    }




    .popup:hover {
      transform: translateY(-5px);
      border-color: var(--brand);
    }

    



    /*Buttons*/
    .primaryButton {
      padding: 14px 28px;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      background: var(--buttonColor);
      color: #1a1a1a;
      box-shadow: 0 8px 25px rgba(202, 162, 60, 0.4);
      border: 1px solid rgba(255, 215, 120, 0.4);
      border-radius: 50px;
    }

    .primaryButton:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 35px rgba(202, 162, 60, 0.6);
    }

    .backButton {
      padding: 10px 18px;
      text-decoration: none;
      background-color: #2c3954;
      color: white;
      border-radius: 8px;
      font-weight: 500;
      transition: 0.2s;
    }

    .backButton:hover {
      opacity: 0.8;
      transform: translateY(-2px);
    }

    /*Row*/
    .row {
      display: flex;
      align-items: flex-start;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px; 
    }
    .row>div {
      flex: 1;
    }
    
    .card {
      background: var(--chip);
      border: 1px solid var(--primaryColor);
      border-radius: 15px;
      padding: 20px;
      text-align: center;
    }

    .card h3 {
      font-size: 2rem;
      color: var(--primaryColor);
      margin-bottom: 5px;
      background: none;
      -webkit-text-fill-color: var(--primaryColor);
    }
    .card h6 {
      font-size: 12px;
      color: var(--primaryColor);
      margin-bottom: 5px;
      background: none;
      -webkit-text-fill-color: var(--primaryColor);
    }
    

    .imageCard {
      background: var(--chip);
      border: 1px solid var(--primaryColor);
      border-radius: 15px;
      padding: 5px;
      text-align: center;
    }

    

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }


    

    .section {
      margin-bottom: 70px;
    }


    .scrollar::-webkit-scrollbar {
      width: 10px;
    }

    .scrollar::-webkit-scrollbar-track {
      border-radius: 6px;
    }

    .scrollar::-webkit-scrollbar-thumb {
      background: var(--primaryColor);
      border-radius: 10px;
    }


    .actions {
      margin-top:auto; display:flex; gap:10px;
    }