
.hero-exact {
    padding: 20px 20px 20px;
    background:
        radial-gradient(circle at top, rgba(46, 255, 153, 0.18), transparent), linear-gradient(180deg, #000000, #000000);
		ackground: radial-gradient(circle at center, rgba(0, 255, 170, 0.15), rgba(5, 20, 15, 0.5)), rl(fon1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-text h2 {
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-text h1 {
    margin: 10px 0 15px;
    font-size: clamp(36px, 4vw, 50px);
    font-weight: 900;
    color: var(--green-soft);
    text-shadow: var(--glow);
	    text-transform: uppercase;
		text-align: left;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green-main), var(--green-soft));
    color: #0b2416;
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--glow);
    transition: 0.3s;
	    margin: 10px;
}

.hero-cta:hover {
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.phone-card {
    width: 320px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #184c32, #0b2416);
    border: 1px solid var(--border-soft);
    box-shadow: var(--glow);
}

.balance {
    font-size: 32px;
    font-weight: 900;
    color: var(--green-soft);
}

.income {
    margin-top: 5px;
    color: var(--text-muted);
}

.chart {
    height: 120px;
    margin-top: 20px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(46,255,153,0.35), transparent),
        repeating-linear-gradient(
            to right,
            rgba(255,255,255,0.08) 0,
            rgba(255,255,255,0.08) 2px,
            transparent 2px,
            transparent 22px
        );
}
.features-exact {
    padding: 40px 20px 80px;
    background: linear-gradient(180deg, #0b2416, #08180f);
}

.features-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, #123d26, #0b2416);
    border: 1px solid var(--border-soft);
    text-align: center;
    transition: 0.3s;
}

.feature-item .icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.feature-item h4 {
    color: var(--green-soft);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.ai-plans {
  padding: 120px 20px;
  /*background: radial-gradient(circle at top, #123d26, #071a12);
  font-family: 'Inter', sans-serif;*/
  background: radial-gradient(circle at center, rgb(0 0 0 / 85%), rgb(0 0 0 / 85%)), url(fontplans.png) center / cover no-repeat fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ai-container {
  max-width: 1300px;
  margin: auto;
}

.ai-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 50px);
  margin-bottom: 70px;
}

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

@media (max-width: 1280px) {
  .ai-grid {
    grid-template-columns: 2fr 2fr;
  }
}

@media (max-width: 520px) {
  .ai-grid {
    grid-template-columns: 1fr;
  }
}

.ai-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20%,1fr));
  gap: 30px;
}

@media (max-width: 1280px) {
  .ai-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .ai-grid2 {
    grid-template-columns: 1fr;
  }
}

.ai-card {
  position: relative;
  padding: 45px 35px;
  border-radius: 28px;
  background: rgba(20, 60, 40, 0.55);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.3s;
  overflow: hidden;
}

.ai-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(46,255,153,0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.ai-card:hover .ai-glow {
  opacity: 1;
}

.ai-card h3 {
  letter-spacing: 3px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.ai-rate {
  font-size: 32px;
  font-weight: 900;
  color: #2eff99;
}

.ai-rate span {
  font-size: 16px;
  opacity: 0.7;
}

.ai-range {
  margin: 15px 0 25px;
  font-size: 12px;
  opacity: 0.85;
}

.ai-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  font-size: 14px;
  border: 2px dashed #0e3826;
}

.ai-card ul li {
  padding: 8px 0;
  opacity: 0.9;
}

.ai-card button {
  width: 100%;
  padding: 15px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, #2eff99, #1fbf6b);
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}

.ai-card button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(46,255,153,0.6);
}

.ai-featured {
  box-shado: 0 0 25px rgba(46,255,153,0.4);
}

.ai-vip {
  border: 1px solid #9b9b9b;
}

@media (max-width: 768px) {
  .ai-card {
    transform: none !important;
  }
}

.open-calc {
  padding: 14px 26px;
  border-radius: 40px;
  background: linear-gradient(135deg, #2eff99, #1fbf6b);
  border: none;
  font-weight: 800;
  cursor: pointer;
  display: block;
    margin: 30px auto;
    width: 30%;
}

.calc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.calc-modal {
  width: 100%;
  max-width: 420px;
  padding: 35px;
  border-radius: 28px;
  background: rgba(20,60,40,0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  position: relative;
  box-shadow: 0 0 80px rgba(46,255,153,0.35);
}

.calc-modal h2 {
  text-align: center;
  margin-bottom: 30px;
}

.calc-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.calc-group {
  margin-bottom: 20px;
}

.calc-group label {
  font-size: 14px;
  opacity: 0.8;
}

.calc-group input,
.calc-group select {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 14px;
  border: none;
  background: #0b2416;
  color: #fff;
}

.calc-group input[type=range] {
  padding: 0;
}

.calc-result {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 25px 0;
}

.calc-result div {
  background: rgba(0,0,0,0.25);
  border-radius: 16px;
  padding: 15px;
  text-align: center;
}

.calc-result span {
  font-size: 13px;
  opacity: 0.8;
}

.calc-result strong {
  display: block;
  font-size: 20px;
  color: #2eff99;
}

.calc-action {
  width: 100%;
  padding: 15px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(135deg, #2eff99, #1fbf6b);
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 480px) {
  .calc-modal {
    margin: 20px;
    padding: 25px;
  }

  .calc-result {
    grid-template-columns: 1fr;
  }
}

.about-company {
  padding: 120px 20px;
  /*background:
    radial-gradient(circle at left, rgba(46,255,153,0.15), transparent),
    linear-gradient(180deg, #0b2416, #071a12);
  font-family: 'Inter', sans-serif;*/
  background: radial-gradient(circle at center, rgba(0, 255, 170, 0.15), rgba(5, 20, 15, 0.5)), url(fonthome.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(32px, 4vw, 36px);
  margin-bottom: 10px;
}

.about-lead {
  font-size: 18px;
  color: #9fd9ba;
  margin-bottom: 30px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 16px;
  color: #eafff4;
}

.about-list span {
  color: #2eff99;
  font-weight: 900;
}

.about-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  background: linear-gradient(135deg, #2eff99, #1fbf6b);
  color: #062615;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(46,255,153,0.4);
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-2px);
}

.about-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.about-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(46,255,153,0.45));
  animatio: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-list li {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-company {
    padding: 80px 20px;
  }
}

.spider-section {
  padding: 120px 0;
  background: radial-gradient(circle,#0f3b25,#061811);
  overflow: hidden;
}

.spider-title {
  text-align: center;
  font-size: clamp(28px,4vw,48px);
  margin-bottom: 80px;
}

.spider-canvas {
  position: relative;
  width: 100%;
  height: 900px;
}

.spider-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #2eff99;
  box-shadow: 0 0 90px rgba(46,255,153,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-align: center;
  color: #052014;
  z-index: 3;
}

.spider-item {
  position: absolute;
  left: 50%;
  top: 50%;
}

.spider-item .line {
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg,#2eff99,transparent);
  transform-origin: left center;
}

.spider-item .card {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(18,70,45,.95);
  border: 2px solid #2eff99;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(46,255,153,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.spider-item img {
  width: 56px;
}

.spider-item span {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.partner-section {
  padding: 120px 20px;
  /*background: radial-gradient(circle at top,#0f3a26,#061811);*/
  background: radial-gradient(circle at center, rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)), url(fontref.png) center / cover no-repeat fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.partner-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.partner-text h2 {
  font-size: clamp(28px,4vw,46px);
  margin-bottom: 20px;
}

.partner-desc {
  font-size: 16px;
  line-height: 1.7;
  opacity: .9;
  margin-bottom: 30px;
}

.partner-benefits {
  list-style: none;
  padding: 0;
}

.partner-benefits li {
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}

.partner-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2eff99;
  font-weight: bold;
}

.partner-visual {
  position: relative;
  width: 100%;
  height: 420px;
}

.level {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(18,70,45,.95);
  border: 2px solid #2eff99;
  border-radius: 22px;
  box-shadow: 0 0 40px rgba(46,255,153,.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.level span {
  font-size: 42px;
  font-weight: 900;
  color: #2eff99;
}

.level small {
  opacity: .8;
}

.level-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.level-2 {
  bottom: 40px;
  left: 0;
}

.level-3 {
  bottom: 40px;
  right: 0;
}

.level::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 60px;
  background: linear-gradient(#2eff99,transparent);
  top: -60px;
}
.level-2::after,
.level-3::after {
  height: 100px;
}


@media (max-width: 900px) {
  .partner-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .partner-visual {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .partner-visual {
    transform: scale(.85);
    transform-origin: center;
  }
}



.benefits-section {
  padding: 120px 20px;
  background: linear-gradient(180deg,#071f14,#04140d);
}

.section-title {
  text-align: center;
  font-size: clamp(28px,4vw,46px);
  margin-bottom: 70px;
}

.benefits-container {
  max-width: 1400px;
  margin: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 40px;
}

.benefit-card {
  background: rgba(18,70,45,.95);
  border: 1px solid rgba(46,255,153,.35);
  border-radius: 26px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 0 45px rgba(46,255,153,.25);
  transition: .35s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 70px rgba(46,255,153,.5);
}

.benefit-card img {
  width: 150px;
  margin-bottom: 20px;
}

.benefit-card h4 {
  margin-bottom: 12px;
  color: #2eff99;
}

.benefit-card p {
  font-size: 14px;
  opacity: .85;
}
@media (max-width: 1280px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.roadmap-section {
  padding: 120px 20px;
  background:radial-gradient(circle at top, rgba(46, 255, 153, 0.18), transparent), linear-gradient(180deg, #000000, #000000);
}

.roadmap-container {
  max-width: 1400px;
  margin: auto;
}

.roadmap-line {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 40px;
  position: relative;
}

.roadmap-line::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,#2eff99,rgba(46,255,153,.1));
}

.roadmap-step {
  background: rgba(18,70,45,.95);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(46,255,153,.35);
  box-shadow: 0 0 35px rgba(46,255,153,.25);
  text-align: center;
  position: relative;
}

.roadmap-step span {
  color: #2eff99;
  font-weight: 700;
  font-size: 14px;
}

.roadmap-step h4 {
  margin: 12px 0 10px;
}

.roadmap-step p {
  font-size: 14px;
  opacity: .85;
}

.roadmap-step.active {
  /*box-shadow: 0 0 60px rgba(46,255,153,.55);*/
}
@media (max-width: 900px) {
  .roadmap-line {
    grid-template-columns: 1fr;
  }

  .roadmap-line::before {
    display: none;
  }
}

.site-footer {
  background: linear-gradient(180deg,#04150e,#020c08);
  padding-top: 80px;
  color: #cfeee0;
  font-size: 14px;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #2eff99;
}

.footer-logo span {
  color: #ffffff;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: #2eff99;
}

.footer-col p {
  line-height: 1.7;
  opacity: .9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cfeee0;
  text-decoration: none;
  opacity: .85;
  transition: .25s;
}

.footer-col a:hover {
  color: #2eff99;
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-social a {
  width: 120px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(46,255,153,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #2eff99;
  transition: .25s;
}

.footer-social a:hover {
  background: #2eff99;
  color: #04150e;
}

.footer-bottom {
  border-top: 1px solid rgba(46,255,153,.15);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  font-size: 13px;
  opacity: .75;
}

.footer-bottom a {
  color: #2eff99;
  text-decoration: none;
}
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.home_text_left{
	text-align: left;
}

.hero {
  position: relative;
  z-index: 2;
}
.fade-block {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-block.show {
  opacity: 1;
  transform: translateY(0);
}

.dashboard-wrapper {
  padding: 40px;
  color: #fff;
}

.dash-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #00ff88;
}

.history-card {
  background: rgba(15, 25, 30, 0.85);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 0 40px rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.1);
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.history-header h3 {
  font-size: 18px;
  color: #00ff88;
}

.filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.filters select,
.filters input {
  background: #0f1a20;
  border: 1px solid rgba(0,255,136,0.2);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  outline: none;
}

.filters select:focus,
.filters input:focus {
  border-color: #00ff88;
}

.date-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-go {
  background: linear-gradient(90deg,#00ff88,#00cc66);
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-go:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0,255,136,0.4);
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
}

.modern-table thead {
  background: rgba(0,255,136,0.08);
}

.modern-table th {
  padding: 15px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  color: #00ff88;
  border-bottom: 1px solid rgba(0,255,136,0.2);
}

.modern-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(0,255,136,0.05);
  color: #d6fbe8;
}

.modern-table tbody tr:hover {
  background: rgba(0,255,136,0.05);
  transition: 0.3s ease;
}

.modern-table .empty td {
  text-align: center;
  padding: 30px;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .history-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .filters {
    flex-direction: column;
    align-items: flex-start;
  }
}


.refbanner{ 
    max-width: 100%;
    height: auto;
    display: block;
	}

.payment-radio {
    display: none;
}

.payment-card {
    border: 2px solid #9b9b9b;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #0c2d1f;
}

.payment-card:hover {
    border: 2px solid #2bf78b;
    box-shadow: 0 0 30px rgb(43 248 139);
    background: #0c2d1f;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-icon {
    width: 36px;
    height: 36px;
}

.payment-info {
    flex-grow: 1;
}

.payment-name {
    font-weight: 600;
    font-size: 15px;
}

.payment-balance {
    font-size: 18px;
    color: #d1e5da;
    margin-top: 4px;
}

.payment-check {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    transition: all 0.25s ease;
}

.payment-radio:checked + .payment-content .payment-check {
    background: #4CAF50;
    border-color: #4CAF50;
}

.payment-radio:checked ~ .payment-content,
.payment-radio:checked + .payment-content {
    background: #186e40;
}

.payment-radio:checked + .payment-content {
    outline: 2px solid #4CAF50;
    outline-offset: 4px;
}

.payment-card:has(.payment-radio:checked) {
    border-color: #4CAF50;
    background: #0c2d1f;
}
@media (max-width: 400px) {
    .payment-content {
        flex-directio: column;
        align-items: flex-start;
    }

    .payment-check {
        align-self: flex-end;
    }
}

details {
    margin: 0px auto;
    border-radius: 8px;
    padding: 10px;
	width: 100%;
    border: 1px solid #063d2c;
}

summary {
    cursor: pointer;
    font-weight: bold;
	text-align: center;
    
}

.content {
    margin-top: 10px;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

input[type="range"]  {
  -webkit-appearance: none;
  width: 300px;
  height: 6px;
  border-radius: 5px;
  outline: none;
}

/* Ползунок */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #4CAF50;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #4CAF50;
  border-radius: 50%;
  cursor: pointer;
}


.telegram-fixed {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px; 
}

.telegram-fixed img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
}

.telegram-fixed img:hover {
    transform: scale(1.1);
}
.tooltip-text {
    background: #0088cc;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;

}