:root {
  --bg: #0f2434;
  --bg-card: rgba(16, 29, 46, 0.92);
  --bg-panel: rgba(22, 38, 58, 0.94);
  --border: rgba(255, 255, 255, 0.14);
  --accent: #6fdcff; /* главный */
  --accent-soft: #c8f2ff; /* четвертый */
  --accent-warm: #74d9ff; /* второй */
  --text: #f8f7ff;
  --text-muted: rgba(248, 245, 255, 0.78);
  --shadow: 0 28px 80px rgba(10, 90, 150, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(118, 217, 255, 0.22),
      transparent 24%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(110, 200, 255, 0.16),
      transparent 24%
    ),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  width: 100%;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 100%;
  max-width: 250px; 
  height: auto; 
  max-height: 80px; 
  object-fit: contain; 
}

@media (max-width: 768px) {
  .logo-img {
    max-width: 180px;
    max-height: 60px;
  }
}

.logo-text {
            font-weight: 900;
            font-size: 1.45rem;
            letter-spacing: 0.12em;
            
            background: linear-gradient(
                to right, 
                #ffffff, #0039a6, #d52b1e, #ffffff, #0039a6, #d52b1e
            );
            
            background-size: 200% auto;
            
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent; 
            
            filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.5));

            animation: moveGradient 4s linear infinite;
        }

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--accent);
}

.btn {
  position: relative;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.45s ease,
    opacity 0.45s ease;
  text-decoration: none;
  color: #081223;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -6px 18px rgba(0, 0, 0, 0.18),
    0 12px 30px rgba(10, 90, 150, 0.12);
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -40%;
  width: 120%;
  height: 120%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.48),
    rgba(255, 255, 255, 0.06)
  );
  transform: rotate(-14deg) translateY(0);
  filter: blur(8px);
  opacity: 0.9;
  transition:
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
  pointer-events: none;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: 2px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(111, 220, 255, 0.16),
    rgba(183, 124, 246, 0.06)
  );
  mix-blend-mode: screen;
  pointer-events: none;
  transition:
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.45s ease;
}

.btn-primary {
  position: relative;
  color: #081223;
  background: linear-gradient(
    180deg,
    rgba(127, 227, 255, 0.95),
    rgba(111, 220, 255, 0.78)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -8px 22px rgba(0, 0, 0, 0.16),
    0 22px 48px rgba(10, 90, 150, 0.22);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  overflow: hidden;
}

.btn-primary.btn-large {
  padding: 18px 42px;
  font-size: 1.05rem;
}

.btn-primary:hover {
  transform: translateY(-8px) scale(1.06);
  opacity: 0.1;
  box-shadow: 0 40px 86px rgba(10, 90, 150, 0.32);
}

.btn-primary:active {
  transform: translateY(2px) scale(0.996);
  opacity: 0.28;
  box-shadow: 0 12px 28px rgba(10, 90, 150, 0.2);
}

.btn:hover::before {
  opacity: 0.08;
  transform: rotate(-14deg) translateY(-6px);
  filter: blur(10px);
}

.btn:hover::after {
  opacity: 0.04;
  transform: scale(1.03);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #120e24;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.player-count {
  font-weight: 700;
  color: var(--accent-soft);
  font-size: 1.05rem;
  margin-top: 10px;
}

.status-line {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero {
  padding: 140px 5% 100px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1),
      transparent 18%
    ),
    radial-gradient(
      circle at 80% 25%,
      rgba(181, 148, 255, 0.18),
      transparent 16%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.server-status {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 80px rgba(41, 20, 94, 0.18);
  border-radius: 28px;
  padding: 36px 30px;
  text-align: center;
  backdrop-filter: blur(24px);
  color: var(--text);
}

.server-img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: 0 auto 22px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.server-status h3 {
  color: var(--text);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.online-bar {
  background: rgba(255, 255, 255, 0.05);
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.online-progress {
  background: rgba(255, 255, 255, 0.14);
  height: 100%;
  width: 76%;
  border-radius: 999px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.35);
}

.server-status p {
  margin: 10px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 900;
  margin-bottom: 50px;
}

.section-title span {
  display: block;
  color: var(--accent);
}

.section-description {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.small-note {
  color: rgba(255, 255, 255, 0.55);
}

section {
  padding: 100px 5%;
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

section:first-of-type {
  background: rgba(255, 255, 255, 0.04);
  border-top: none;
}

.features {
  background: rgba(255, 255, 255, 0.04);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-divider {
  max-width: 1180px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.28),
    rgba(255, 255, 255, 0.08)
  );
}

.bottom-blocks {
  background: transparent;
  border: none;
  padding: 100px 5%;
}

.section-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: stretch;
}

.donate,
.community {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
}

.community {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  padding: 40px 32px;
  backdrop-filter: blur(12px);
}

.community h2 {
  margin-bottom: 18px;
}

.community .btn {
  width: 100%;
  margin-top: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(20px);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.12);
}

.feature-img-wrapper {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
  display: block;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform-origin: top center;
  display: block;
  vertical-align: middle;
  filter: saturate(0.95) contrast(1.05);
  transition:
    transform 0.6s ease,
    object-position 0.3s ease;
}

@media (max-width: 720px) {
  .feature-img-wrapper {
    height: 180px;
  }
}

.feature-card:hover .feature-img {
  transform: scale(1.08) translateY(0);
}

.feature-img-wrapper {
  padding-top: 6px;
}

.feature-info {
  padding: 30px;
}

.feature-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-info p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.donate {
  padding: 100px 5%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.download-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 42px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 80px rgba(41, 20, 94, 0.16);
  backdrop-filter: blur(26px);
  display: grid;
  gap: 24px;
  text-align: center;
}

.download-panel h2 {
  margin-bottom: 0;
}

.download-panel p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.player-count {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 10px;
}

.status-line {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.donate-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  backdrop-filter: blur(16px);
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(182, 124, 246, 0.65);
  box-shadow: 0 0 18px rgba(182, 124, 246, 0.18);
}

.community {
  padding: 80px 5%;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  backdrop-filter: blur(24px);
  margin: 0 5%;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-vk,
.btn-tg {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.btn-vk:hover,
.btn-tg:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.beautiful-button {
  background-color: #ffb703;
  color: #023047;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  padding: 16px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 16px;
  box-shadow: 0 0px 10px #ffb703;
  transition: all 0.2s ease-in-out;
}

.beautiful-button:hover {
  background-color: #ffc333;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(255, 183, 3, 0.3);
}

.beautiful-button:active {
  background-color: #fb8500;
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
  margin-top: 28px;
  padding: 24px 5%;
  text-align: center;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 10px #fff;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  backdrop-filter: blur(16px);
}

.footer-logo {
  margin-bottom: 15px;
}

.mobile-download-section {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 170px;
  }

  header {
    padding: 18px 4%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
  }

  .server-status {
    margin: 0 auto;
    width: min(100%, 380px);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    cursor: pointer;
    transition:
      transform 0.25s ease,
      background 0.25s ease;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    border-radius: 999px;
    background: var(--text);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 36, 52, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 4%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  nav a {
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.25s ease;
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  header.menu-open nav {
    display: flex;
  }

  header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-download-btn {
    display: none;
  }

  .mobile-download-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 5%;
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 30px;
  margin-bottom: 30px;
}

  .mobile-download-section a {
    width: 100%;
    text-align: center;
  }

  .logo-container {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 28px;
  }

  .header-download-btn {
    padding: 10px 16px !important;
    font-size: 14px !important;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 4% 60px;
    min-height: auto;
    gap: 20px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  header {
    padding: 12px 4%;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }
  .logo-text {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
  }

  nav {
    gap: 8px;
    padding: 16px 4%;
  }

  .ultra-glass,
  .ultra-glass2 {
    width: 100%;
    padding: 12px 16px;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 6px;
  }

  .feature-img-wrapper {
    height: 160px;
  }
  .feature-info {
    padding: 18px;
  }
  .feature-card {
    border-radius: 18px;
  }

  /* Disable heavy hover transforms on touch devices */
  .feature-card:hover {
    transform: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.06);
  }
  .feature-card:hover .feature-img {
    transform: none;
  }

  /* Bottom blocks stack vertically on phones */
  .section-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .download-panel {
    padding: 22px;
    max-width: 100%;
  }
  .community {
    padding: 22px 18px;
    margin: 0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .server-status {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 16px;
  }
}
.ultra-glass2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 18px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;

  background: rgba(111, 220, 255, 0.2);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);

  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.07),
    inset 0 2px 4px 0 rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px 0 rgba(255, 255, 255, 0.2);

  transition: all 0.3s ease;
}

.ultra-glass2:hover {
  background: rgba(111, 220, 255, 0.3);
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px 0 rgba(0, 0, 0, 0.1),
    inset 0 2px 4px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 4px 0 rgba(255, 255, 255, 0.3);
}

.ultra-glass2:active {
  transform: translateY(1px) scale(0.97);
  background: rgba(111, 220, 255, 0.15);
  box-shadow:
    0 4px 16px 0 rgba(0, 0, 0, 0.05),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 2px 0 rgba(255, 255, 255, 0.15);
}

.ultra-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 16px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
   color: #fff;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  outline: none;

  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.07),
    inset 0 2px 4px 0 rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px 0 rgba(255, 255, 255, 0.2);

  transition: all 0.3s ease;
}

.ultra-glass:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px 0 rgba(0, 0, 0, 0.1),
    inset 0 2px 4px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 4px 0 rgba(255, 255, 255, 0.3);
}

.ultra-glass:active {
  transform: translateY(1px) scale(0.97);
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 4px 16px 0 rgba(0, 0, 0, 0.05),
    inset 0 1px 2px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 2px 0 rgba(255, 255, 255, 0.15);
}
.rf-text {
            font-weight: 900;
            font-size: 55px;
            letter-spacing: 0.12em;

            background: linear-gradient(
                to bottom, 
                #ffffff 0%, #ffffff 33.3%, 
                #0039a6 33.3%, #0039a6 66.6%, 
                #d52b1e 66.6%, #d52b1e 100%
            );
            
            -webkit-background-clip: text;
            background-clip: text;
            
            color: transparent; 
            
            filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.6));
}
@media (max-width: 768px) {
    .rf-text {
        font-size: 36px; /* телефон  */
    }
}
@keyframes moveGradient {
            0% {
                background-position: 0% center;
            }
            100% {
                background-position: -200% center;
            }
        }