

/* Start:/local/templates/getytrus/assets/css/styles.css?177564780510110*/
/* =========================================================
   GetYtRus — Bitrix site template (neumorphism placeholder)
   ========================================================= */

:root {
  --bg: #e8f0e9;
  --bg-light: #f3faf4;
  --bg-dark: #c5d0c6;
  --bg-gradient-a: #ecf4ed;
  --bg-gradient-b: #dbe7dc;
  --shadow-light: #ffffff;
  --shadow-dark: #b8c4b9;
  --accent: #4caf50;
  --accent-dark: #2f9d34;
  --accent-light: #66ba6a;
  --text: #2d3a2e;
  --text-soft: #5a6b5c;
  --placeholder: #9aa89c;
  --logo-glow: rgba(47, 157, 52, 0.25);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #222a24;
    --bg-light: #2b332d;
    --bg-dark: #181e19;
    --bg-gradient-a: #242c26;
    --bg-gradient-b: #1a201b;
    --shadow-light: #2d3630;
    --shadow-dark: #131815;
    --accent: #4caf50;
    --accent-dark: #66ba6a;
    --accent-light: #81d186;
    --text: #e6efe7;
    --text-soft: #9cae9e;
    --placeholder: #6b7a6d;
    --logo-glow: rgba(102, 186, 106, 0.35);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

::selection {
  background: var(--accent);
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: var(--accent);
  color: #fff;
  text-shadow: none;
}

html {
  height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: linear-gradient(145deg, var(--bg-gradient-a), var(--bg-gradient-b));
}

.page-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.lang-switch {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 50px;
  background: var(--bg);
  box-shadow:
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
  z-index: 10;
}

.lang-switch a {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-soft);
  transition: all 0.2s ease;
}

.lang-switch a.active {
  color: #fff;
  background: linear-gradient(145deg, var(--accent-light), var(--accent-dark));
  box-shadow:
    3px 3px 6px var(--shadow-dark),
    -3px -3px 6px var(--shadow-light);
}

.container {
  max-width: 620px;
  width: 100%;
  text-align: center;
  padding: 50px 44px 45px;
  border-radius: 40px;
  background: var(--bg);
  box-shadow:
    20px 20px 60px var(--shadow-dark),
    -20px -20px 60px var(--shadow-light);
}

.logo-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 8px 8px 16px var(--shadow-dark),
    inset -8px -8px 16px var(--shadow-light);
}

.logo-wrap svg {
  width: 110px;
  height: 110px;
  filter: drop-shadow(4px 6px 10px var(--logo-glow));
}

h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 32px;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 50px;
  background: var(--bg);
  color: var(--text-soft);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
  box-shadow:
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.primary-download { margin-bottom: 28px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 38px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, var(--accent-light), var(--accent-dark));
  box-shadow:
    10px 10px 24px var(--shadow-dark),
    -10px -10px 24px var(--shadow-light),
    inset 1px 1px 2px rgba(255,255,255,0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    12px 12px 28px var(--shadow-dark),
    -12px -12px 28px var(--shadow-light),
    inset 1px 1px 2px rgba(255,255,255,0.3);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow:
    inset 4px 4px 10px rgba(0,0,0,0.2),
    inset -4px -4px 10px rgba(255,255,255,0.15);
}

.btn-primary svg { width: 28px; height: 28px; fill: #fff; }

.btn-primary .sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.btn-primary .main {
  display: block;
  text-align: left;
  line-height: 1.1;
}

.secondary-downloads {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  background: var(--bg);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow:
    5px 5px 12px var(--shadow-dark),
    -5px -5px 12px var(--shadow-light);
}

.btn-secondary:hover {
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary:active {
  box-shadow:
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
}

.btn-secondary svg { width: 18px; height: 18px; fill: currentColor; }

.socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.social {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--accent-dark);
  text-decoration: none;
  box-shadow:
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: all 0.2s ease;
}

.social:hover {
  color: var(--accent);
  box-shadow:
    inset 4px 4px 10px var(--shadow-dark),
    inset -4px -4px 10px var(--shadow-light);
}

.social svg { width: 22px; height: 22px; fill: currentColor; }

.site-footer {
  margin-top: 30px;
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.5px;
  text-align: center;
}

/* =================== 404 page =================== */

.error-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  line-height: 1;
}

.error-code .digit {
  font-size: 180px;
  font-weight: 800;
  letter-spacing: -6px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-code .logo-slot {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    inset 8px 8px 16px var(--shadow-dark),
    inset -8px -8px 16px var(--shadow-light);
}

.error-code .logo-slot svg {
  width: 110px;
  height: 110px;
  filter: drop-shadow(4px 6px 10px var(--logo-glow));
}

.error-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.error-subtitle {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 36px;
  line-height: 1.6;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, var(--accent-light), var(--accent-dark));
  box-shadow:
    10px 10px 24px var(--shadow-dark),
    -10px -10px 24px var(--shadow-light),
    inset 1px 1px 2px rgba(255,255,255,0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-home:hover {
  transform: translateY(-2px);
  box-shadow:
    12px 12px 28px var(--shadow-dark),
    -12px -12px 28px var(--shadow-light),
    inset 1px 1px 2px rgba(255,255,255,0.3);
}

.btn-home:active {
  transform: translateY(1px);
  box-shadow:
    inset 4px 4px 10px rgba(0,0,0,0.2),
    inset -4px -4px 10px rgba(255,255,255,0.15);
}

.btn-home svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 640px) {
  .error-code { gap: 4px; }
  .error-code .digit { font-size: 120px; letter-spacing: -4px; }
  .error-code .logo-slot { width: 108px; height: 108px; }
  .error-code .logo-slot svg { width: 74px; height: 74px; }
  .error-title { font-size: 22px; }
  .error-subtitle { font-size: 15px; }
  .btn-home { padding: 15px 26px; font-size: 14px; }
}

@media (max-width: 380px) {
  .error-code .digit { font-size: 92px; }
  .error-code .logo-slot { width: 82px; height: 82px; }
  .error-code .logo-slot svg { width: 58px; height: 58px; }
}

@media (max-width: 480px) {
  .container { padding: 36px 22px; border-radius: 30px; }
  h1 { font-size: 32px; }
  .logo-wrap { width: 130px; height: 130px; }
  .logo-wrap svg { width: 90px; height: 90px; }
  .btn-primary { padding: 16px 26px; font-size: 15px; }
  .btn-primary svg { width: 24px; height: 24px; }
  .secondary-downloads { gap: 10px; }
  .btn-secondary { padding: 10px 16px; font-size: 12px; }
  .lang-switch { top: 14px; right: 14px; }
}

/* End */
/* /local/templates/getytrus/assets/css/styles.css?177564780510110 */
