body {
  
  margin: 0px;
  
  padding-top: 200px;

  background: #31288086;
  background: radial-gradient(circle, rgba(77, 71, 132, 0.867) 0%, rgb(64, 78, 94) 100%);

  color: rgb(255, 255, 255);
  font-family: monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  overflow-x: hidden;

}

 html {
  scroll-behavior: smooth;
   scroll-padding-top: 100px;
}


* {
  box-sizing: border-box;
}


/* Базовый стиль */
header {
  align-items: anchor-center;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
}

/* Кнопка бургер */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}

.burger span {
  display: block;
  height: 3px;
  background: rgba(255, 255, 255, 0.579);
  border-radius: 2px;
}

/* Адаптив */
@media (max-width: 1000px) {
  nav {
    display: none;
    position: absolute;
    top: 60px; /* высота хедера */
    right: 10px;
    background: rgba(0,0,0,0.9);
    padding: 15px;
    border-radius: 5px;
  }

  nav.active {
    display: block;
  }

  .burger {
    display: flex;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  nav ul li a {
    color: white;
    text-decoration: none;
  }
}


.space {
  padding: 20px 70px;
  
  background: #000000;
}

.SmartCalcul {
  float: left;
  text-transform: uppercase;
  font-size: 30px;
  color:rgba(245, 245, 220, 0.69);
  font-weight: 500;
  padding-top: 12px;
}

nav {
  float: right;
  top: 100px;
    width: 50%;

}

header nav ul {
  word-spacing: 10px;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

header nav ul li {
  display: inline-block;
  
}

a {
  color: #ffffffe4;
  font-size: 25px;
  text-decoration: none;
  opacity: 0.7;
  
}

header nav ul li a:hover {
  opacity: 1;
}

.input-wrapper {
  
  position: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

}

.wrapper {
  position: fixed;
  background-image: linear-gradient(to right, #233041 0%, #2c364b  51%, #243141  100%);
  margin: 0;
  border: 5px solid #0000001c;
  width: 1000px;
  max-height: auto;
  min-height: 600px;
  text-align: center;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  overflow: auto;
  box-shadow: 0 0 20px rgb(10, 13, 14);
  color: white;            
  box-shadow: 0 0 20px #000000;
  border-radius: 10px; 
}


.wrapper:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
 }

.autocomplete-box {
  position: center;
  z-index: 10;
  background-color: rgb(176, 176, 176);
  color: rgb(0, 0, 0);
  border: 1px solid #ccc;
  max-height: 100px;
  overflow-y: auto;
  width: 99%;
  display: none;
  font-size: 25px;
}

.autocomplete-item {
  padding: 8px;
  cursor: pointer;
}

.autocomplete-item:hover {
  background-color: rgb(223, 223, 223);
}

h1 {
  font-family: "Antonio", sans-serif;
  font-size: 100px;
  color: #f1c40f;
  margin-bottom: 30px;
  font-weight: 400;
  font-style: normal;
}

textarea {
  width: 100%;
  min-height: 40px;
  max-height: 600px;
  resize: none;
  overflow: hidden;
  padding: 10px;
  font-size: 30px;
  font-family: monospace;
  box-sizing: border-box;
  border: 1px solid #ccc;
  outline: none;
  color: rgb(0, 0, 0);
}

.total-box {
  background: black;
  padding: 20px;
  margin-top: 20px;
  font-size: 25px;
  top: 1px;
  margin-bottom: 15px;
}

.total-box span {
  font-size: 90px;
  font-weight: bold;
  color: white;
  margin: 0px;
}

.dynamic-text {
  display: inline-block;
  word-wrap: break-word;
  white-space: normal;
  width: 100%;
  overflow-wrap: break-word;
}



/* Execution Knob Styles */
.slidecontainer {
  width: 100%; /* Width of the outside container */
 
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 85%; /* Full-width */
  height: 5px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
  border-radius: 10px;
}


/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 15px; /* Set a specific slider handle width */
  height: 30px; /* Slider handle height */
  background: #000000; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 10px; /* Set a specific slider handle width */
  height: 10px; /* Slider handle height */
  background: #b4b4b4; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.label-row{
  width: 100%;
  justify-content: space-between;
  align-items: right;
  margin-top: 20px;
  height: 50px;
  width: 100%;
}

label[for="executionKnob"] {    
  
  font-family: "Trade Winds", system-ui;
  font-size: 30px;
  color: #ffffff;
  font-style: normal;
  text-align: center;
}

input[id="demo"] {
  font-family: "Trade Winds", system-ui;
  font-size: 10px;
  color: #f1c40f;
  margin-top: 10px;
  text-align: center;
  display: inline;
  width: 100%;
}


.knob-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 10px; /* Padding around the slider */
  padding-top: 5px;
  
}

.fire {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  height: 56%;
  background-image: url("fire2.gif"); /* замени на свою анимацию */
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  opacity: 0; /* начальная прозрачность */
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  z-index: 0;
  background-color: rgba(2, 1, 1, 0.5); /* полупрозрачный красный цвет */
} 


  .support-card {
    max-width: 700px;
    background:#2f2f52;
    color: #f0f0f8;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 25px 60px -10px rgba(0,0,0,0.5);
    font-family: system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
    margin: auto;
    line-height:1.3;
    left: 40%;
    top: 50%;
    display: none;
    position: static;
  }
  .support-card h2 {
    margin-top:0;
    font-size:1.6rem;
    letter-spacing:0.5px;
  }
  .support-item {
    margin: 16px 0;
  }
  .label {
    font-weight:600;
    margin-bottom:6px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap:8px;
    background: #ffd33d;
    border: none;
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight:600;
    font-size:0.9rem;
    text-decoration:none;
  }
  .btn img {
    height: 24px;
  }
  .wallet-box {
    background: #2a2a3f;
    padding: 12px 14px;
    border-radius: 10px;
    font-size:0.9rem;
    position: relative;
    word-break: break-all;
  }
  .address {
    background: rgba(255,255,255,0.07);
    padding:6px 8px;
    border-radius:6px;
    margin:6px 0;
    font-family: monospace;
    user-select: all;
  }
  .contacts a {
    font-family: 'system-ui', sans-serif;
    color:#7edfff;
    text-decoration:none;
    font-size:0.9rem;
  }
  .contacts a:hover {
    text-decoration: underline;
  }
  .thanks {
    margin-top: 14px;
    font-size:0.85rem;
    opacity: .9;
  }
  @media (max-width: 600px){
    .support-card {padding:16px;}
    .btn {width:100%; justify-content:center;}
  }

  .supportBtn {
   font-size:25px; ;
    background-color:#49496a;
    color: #f0f0f8;
    display: inline-block
}

.supportBtn:hover {
     background-position: right center;
}

.LogServiceTab {
    min-height: 700px;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 15, 25, 0.9), rgba(5, 10, 15, 0.95));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    margin-top: 300px;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 5% 10%;
}

.calculateconsole {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 70%;
    justify-content: center;
    align-items: center;
}

.panel {
    width: 90%;
    padding: 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    background: linear-gradient(145deg, rgba(20, 40, 60, 0.95), rgba(10, 20, 30, 0.95));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6),
                0 0 15px rgba(0, 200, 255, 0.3);
    animation: fadeIn 0.8s ease-in-out;
    font-size: 20px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.panel:hover {
    transform: scale(1.02);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7),
                0 0 25px rgba(0, 200, 255, 0.6);
}

.side-panel {
    background: rgba(255, 255, 255, 0.07);
    padding: 30px;
    border-radius: 15px;
}

.main-panel {
    background: linear-gradient(145deg, rgba(20, 40, 60, 0.35), rgba(10, 20, 30, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.5);
    border-radius: 15px;
    height: 500px;
}

h2 {
    margin-top: 0;
    font-size: 30px;
    color: #ffffffcf;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.7);
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00fbff6c, transparent);
    margin-top: 8px;
    border-radius: 2px;
}

pre {
    width: 99%;
    height: 90%;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 12px;
    font-family: monospace;
    font-size: 23px;
    overflow-x: auto;
    white-space: pre-wrap;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

pre code {
    color: #00ff99;
}

ul {
    padding-left: 25px;
}

ul li {
    margin-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.formula {
    
    padding: 30px 50px;

}


.supportBtn {
  background: #ffdf5e0e;
  color: #000;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.supportBtn:hover {
  background: #ffc107;
}

.SendTrick {
  color: #ffdf5e;
  text-decoration: underline;
}

.SendTrick:hover {
  color: #fff176;
}


/* ===== About section (same style as How it works) ===== */
.about-section{
  padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 48px);
  background: radial-gradient(1200px 800px at 20% -10%, rgba(8, 5, 13, 0.892), transparent),
              radial-gradient(900px 700px at 95% 10%, rgba(4, 14, 39, 0.875), transparent);
              width: 100%;
  flex-direction: column;
  display:flow-root;
  padding: 5% 20%;
}

.about-section__title{
  color: var(--text);
  font-size: 40px;
  margin-top: 50px;
}
.about-section__title::after{
  content:"";
  display:block;
  width: 76px;
  height: 3px;
  margin-top: 14px;
  border-radius:3px;
  background: linear-gradient(90deg, var(--edge), var(--edge2));
  box-shadow:0 0 18px rgba(112,215,255,.6);
}

.about-cards{
  display: contents;
  list-style:none;
  margin:0;
  padding:0;
}

.about-card{
  display:contents;
}
.about-card:nth-child(1){ grid-column: span 7; }
.about-card:nth-child(2){ grid-column: span 5; }
.about-card:nth-child(3){ grid-column: span 5; }
.about-card:nth-child(4){ grid-column: span 7; }
.about-card:nth-child(5){ grid-column: span 6; }
.about-card:nth-child(6){ grid-column: span 6; }

.about-card::before{
  content:"";
  position:absolute; inset:-1px;
  border-radius:inherit;
  pointer-events:none;
  background: linear-gradient(135deg, rgba(18, 37, 44, 0.388), rgba(52,102,255,.12), transparent 55%);
  mask: linear-gradient(#000, transparent 60%);
  z-index:-1;
}

.about-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 18px 42px rgba(0,0,0,.55),
    0 0 56px rgba(112,215,255,.20);
  border-color: rgba(112,215,255,.25);
}

.about-card__h{
  margin:0 0 8px;
  font-size: 25px;
  font-weight:700;
}
.about-card__meta{
  margin:0;
  font-size: clamp(13px, 1.7vw, 16px);
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 860px){
  .about-cards{ grid-template-columns: 1fr; }
  .about-card{ grid-column: 1 / -1 !important; }
}


/* ===== How it works (glass / deep blue) ===== */
:root{
  --bg1:#0a0f21;
  --bg2:#091222;
  --edge:#70d7ff;
  --edge2:#3466ff;
  --text:#e7ecff;
  --muted:rgba(210,220,255,.66);
}

.about-how{
  padding: 5% 20%;
  background: linear-gradient(180deg, rgba(10, 15, 25, 0.9), rgba(5, 10, 15, 0.95));
             
              margin-top: 100px;
              width: 100%;
}

.about-how__title{
  color: var(--text);
  font-size: 50px;
  letter-spacing:.3px;
  margin: 0 0 clamp(28px, 3vw, 40px);
  position: relative;
}
.about-how__title::after{
  content:"";
  display:block;
  width: 76px;
  height: 3px;
  margin-top: 14px;
  border-radius:3px;
  background: linear-gradient(90deg, var(--edge), var(--edge2));
  box-shadow:0 0 18px rgba(112,215,255,.6);
}

/* cards as list items for semantics */
.how-cards{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

/* golden-ratio-ish widths on desktop */
.how-card{
  grid-column: span 6; /* default 1/2 width */
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.4vw, 26px);
  color: var(--text);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(20,34,66,.72), rgba(12,22,42,.62));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow:
    0 12px 30px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 0 40px rgba(52,102,255,.10);
  position:relative;
  isolation:isolate;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.how-card:nth-child(1){ grid-column: span 7; } /* 7/5 split */
.how-card:nth-child(2){ grid-column: span 5; }
.how-card:nth-child(3){ grid-column: span 5; }
.how-card:nth-child(4){ grid-column: span 7; }

.how-card::before{
  /* soft edge glow */
  content:"";
  position:absolute; inset:-1px;
  border-radius:inherit;
  pointer-events:none;
  background: linear-gradient(135deg, rgba(112,215,255,.22), rgba(52,102,255,.12), transparent 55%);
  mask: linear-gradient(#000, transparent 60%);
  z-index:-1;
}

.how-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 18px 42px rgba(0,0,0,.55),
    0 0 56px rgba(112,215,255,.20);
  border-color: rgba(112,215,255,.25);
}

/* text */
.how-card__h{
  margin:0 0 8px;
  font-size: 30px;
  font-weight:700;
}
.how-card__meta{
  margin:0;
  font-size: clamp(13px, 1.7vw, 16px);
  color: var(--muted);
  line-height: 1.55;
}

/* responsive: single column on phones */
@media (max-width: 860px){
  .how-cards{ grid-template-columns: 1fr; }
  .how-card,
  .how-card:nth-child(1),
  .how-card:nth-child(2),
  .how-card:nth-child(3),
  .how-card:nth-child(4){
    grid-column: 1 / -1;
  }
}


/* ===== Disput Section ===== */
.disput-section {
  padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 48px);
  background: linear-gradient(145deg, #06080ec1, #0c0f16f1);
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 150px;
}

.disput-title {
  color: var(--text);
  font-size: 40px;
  margin-bottom: 80px;
}
.disput-title::after {
  content:"";
  display:block;
  width: 64px;
  height: 3px;
  margin: 14px auto 0;
  border-radius:3px;
  background: linear-gradient(90deg, var(--edge), var(--edge2));
  box-shadow:0 0 18px rgba(112,215,255,.6);
}

.disput-buttons {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.disput-btn {
  background: linear-gradient(145deg, rgba(20, 34, 66, 0.144), rgba(12,22,42,.85));
  color: var(--text);
  font-size: 25px;
  font-weight: 600;
  padding: 40px 40px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  cursor: pointer;
  box-shadow:
    0 8px 16px rgba(0,0,0,.4),
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 0 24px rgba(52,102,255,.15);
  transition: all 0.25s ease;
  max-width: 200px;
  color: #ffffff9f;
}

.disput-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 24px rgba(0,0,0,.55),
    0 0 36px rgba(112,215,255,.25);
  border-color: rgba(112,215,255,.25);
}

.disput-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 6px 12px rgba(0,0,0,.5),
    0 0 16px rgba(52,102,255,.2);
}


/* ===== Support Section ===== */
.support-section {
  padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 48px);
  background: linear-gradient(145deg, rgba(16, 24, 44, 0.754), rgba(13, 5, 16, 0.85));
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  width: 100%;
}

.support-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text);
  margin-bottom: 40px;
}

/* Card Flip */
.support-card {
  perspective: 1500px;
  
  
  display: flex;
  background: #9e9e9e18;
}

.card-inner {
  position: relative;
  width: 1000px;
  height: 500px;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  
}

.support-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(39, 18, 61, 0.123)rgba(22, 17, 28, 0.617));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
}

/* Front side */
.support-btn {
  font-size: 25px;
  font-weight: 2000;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--text);
  padding: 50px 50px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.support-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: gold;
  color: gold;
}

/* Back side */
.card-back {
  transform: rotateY(180deg);
}

.donate-info {
  font-size: 16px;
  color: var(--text);
  text-align: center;
}

/* Contact Buttons */
.contact-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.contact-btn {
  padding: 20px 35px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.012);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  
  background: rgba(255, 255, 255, 0.217);
}

.back-btn {
  
  padding: 8px 20px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--text);
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: gold;
  color: gold;
}


h3 {
    margin-top: 0;
    font-size: 50px;
    color: #ffffffcb;
    text-shadow: 0 0 10px rgba(0, 166, 255, 0.587);
    position: relative;
}




@media (min-width: 100px) and (max-width: 1000px) {
  
.calculateconsole {
  width: 100%;
  height: 150px;
}

h2 {
  font-size: 10px;
}

pre {
    width: 99%;
    height: 90%;
    
    padding: 5px;
    font-size: 10px;
}

h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #00fbff6c, transparent);
    margin-top: 0px;
}

.panel {
    padding: 10px;
      box-shadow: 0 0 1px rgba(0, 200, 255, 0.5);
}

.wrapper {
  width: 100%;
  min-height: auto;
  height: fit-content;
}

.about-section {
  padding: 5% 2%;
}

.about-how {
    padding: 5% 1%;
}

.slider {

    height: 2px;
}

.SmartCalcul {

    font-size: 15px;
}

.space {
    padding: 10px 5px;
    background: #000000;
}
h1 {

    font-size: 40px;
}

textarea {
    height: fit-content;
    font-size: 15px;
}

label[for="executionKnob"] {
    font-size: 10px;
}

.total-box span
 {
    font-size: 30px;
  }

  .total-box {
    font-size: 15px;
  }

.autocomplete-box {

    font-size: 15px;
}

.fire {
    height: 75px;
}

body {
    padding-top: 50px;
}


.LogServiceTab {
    min-height: 300px;
        margin-top: 0px;
}

.about-section__title {

    font-size: 20px;
    margin-top: 10px;
}

.about-section__title::after {

    width: 55px;
    height: 1px;
    margin-top: 0px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--edge), var(--edge2));
    box-shadow: 0 0 18px rgba(112, 215, 255, .6);
}

.about-card__h {
    font-size: 13px;
}

.about-card__meta {

    font-size: 10px;
}

.about-how {

    margin-top: 0px;
}

.about-how__title {

    font-size: 20px;
    padding: 0px 3px;

}

.about-how__title::after {

    width: 33px;
    height: 1px;
    margin-top: 0px;
    border-radius: 3px;
}

.how-card__h
 {
    font-size: 13px;
    font-weight: 700;
}

ul li {
     margin-bottom: 0px; 
}

.how-card__meta
 {

    font-size: 10px;

}

.card-inner {

    height: 200px;
}

.donate-info {
    font-size: 10px;

}

a {

    font-size: 10px;
}

.disput-title {

    font-size: 25px;
}

.disput-title::after {
    height: 2px;
    margin: 0px auto 0;
    border-radius: 1px;
}

.disput-buttons {

    gap: 40px;

}

.disput-section {
    padding-top: 50px;
    padding-bottom: 70px;
}

}