* {
  box-sizing: border-box;
}

:root {
  --bg: #08070b;
  --card: #121117;
  --card2: #18161e;
  --text: #f7f5fa;
  --muted: #97929e;
  --line: rgba(255,255,255,.08);
  --pink: #ff0061;
  --pink2: #d900ff;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 70% -10%,
      rgba(255,0,97,.13),
      transparent 35%
    ),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    sans-serif;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.v2-app {
  min-height: 100vh;
  padding-bottom: 88px;
}


/* HEADER */

.v2-header {
  height: 72px;
  padding: 0 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 500;

  background:
    rgba(8,7,11,.9);

  backdrop-filter:
    blur(18px);

  border-bottom:
    1px solid var(--line);
}

.v2-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.v2-logo {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      var(--pink),
      var(--pink2)
    );

  font-size: 22px;
  font-weight: 900;
}

.v2-brand-text strong {
  display: block;
  line-height: 1;
  font-size: 17px;
}

.v2-brand-text small {
  display: block;
  margin-top: 5px;

  color: var(--muted);

  font-size: 8px;
  letter-spacing: 2px;
}

.v2-header-account {
  padding: 10px 14px;

  border-radius: 12px;

  background:
    rgba(255,255,255,.055);

  border:
    1px solid var(--line);

  font-weight: 700;
  font-size: 13px;
}


/* HOME */

.v2-home,
.v2-plans-page,
.v2-profile,
.v2-watch {
  width: min(1200px,100%);
  margin: auto;
}

.v2-home {
  padding: 34px 15px 35px;
}

.v2-hero {
  padding: 12px 2px 30px;
}

.v2-eyebrow,
.v2-section-title span,
.v2-watch-info > span {
  color: var(--pink);

  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
}

.v2-hero h1 {
  max-width: 700px;

  margin: 8px 0 12px;

  font-size:
    clamp(38px,8vw,70px);

  line-height: .95;

  letter-spacing:
    -2.8px;
}

.v2-hero h1 span {
  color: #96919c;
}

.v2-hero p {
  margin: 0;

  color: var(--muted);

  font-size: 13px;
}

.v2-search {
  display: flex;
  gap: 7px;

  padding: 6px;

  margin-bottom: 30px;

  border-radius: 16px;

  background: var(--card);

  border:
    1px solid var(--line);
}

.v2-search input {
  flex: 1;
  min-width: 0;

  border: 0;
  outline: 0;

  padding: 0 12px;

  color: white;

  background:
    transparent;
}

.v2-search button {
  min-height: 46px;

  padding: 0 18px;

  border: 0;
  border-radius: 11px;

  color: white;

  background: var(--pink);

  font-weight: 800;
}

.v2-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  margin: 0 1px 16px;
}

.v2-section-title h2 {
  margin: 4px 0 0;

  font-size: 24px;
}

.v2-section-title small {
  color: var(--muted);
  font-size: 11px;
}


/* VIDEOS */

.v2-video-grid {
  display: grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  gap: 22px 13px;
}

.v2-video-card {
  min-width: 0;
}

.v2-thumb {
  position: relative;

  overflow: hidden;

  aspect-ratio: 16 / 9;

  border-radius: 14px;

  background: var(--card2);

  border:
    1px solid var(--line);
}

.v2-thumb img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

.v2-play {
  width: 43px;
  height: 43px;

  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%,-50%);

  display: grid;
  place-items: center;

  padding-left: 3px;

  border-radius: 50%;

  color: #09090b;

  background:
    rgba(255,255,255,.92);

  font-size: 12px;
}

.v2-video-card h3 {
  margin: 9px 2px 0;

  font-size: 13px;
  line-height: 1.4;

  overflow: hidden;

  display: -webkit-box;

  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.v2-no-thumb {
  height: 100%;

  display: grid;
  place-items: center;

  color: var(--muted);

  font-weight: 900;
  font-size: 30px;
}


/* PAGINATION */

.v2-pagination {
  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  gap: 8px;

  margin-top: 38px;
}

.v2-pagination > div:last-child {
  text-align: right;
}

.v2-pagination a {
  display: inline-flex;

  padding: 11px 14px;

  border-radius: 10px;

  background: var(--card);

  border:
    1px solid var(--line);

  font-size: 12px;
  font-weight: 800;
}

.v2-pagination span {
  color: var(--muted);

  font-size: 11px;
  font-weight: 700;
}


/* PLAYER */

.v2-watch {
  padding-bottom: 30px;
}

.v2-player-shell {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  background: #000;

  overflow: hidden;
}

.v2-player {
  width: 100%;
  height: 100%;

  display: block;

  background: #000;

  object-fit: contain;
}

.v2-preview-label {
  position: absolute;

  top: 13px;
  left: 13px;

  z-index: 20;

  padding: 7px 10px;

  border-radius: 8px;

  background:
    rgba(0,0,0,.72);

  font-size: 11px;
  font-weight: 800;
}

.v2-watch-info {
  padding: 22px 16px 28px;

  border-bottom:
    1px solid var(--line);
}

.v2-watch-info h1 {
  margin: 6px 0 0;

  font-size:
    clamp(23px,5vw,34px);

  line-height: 1.15;

  overflow-wrap: anywhere;
}

.v2-premium-active {
  width: fit-content;

  margin-top: 13px;

  padding: 7px 10px;

  border-radius: 50px;

  color: #78e7ae;

  background:
    rgba(74,220,143,.1);

  border:
    1px solid rgba(74,220,143,.18);

  font-size: 10px;
  font-weight: 900;
}

.v2-related {
  padding: 28px 14px 30px;
}


/* ACCESS MODAL */

.v2-modal.hidden {
  display: none;
}

.v2-modal {
  position: fixed;

  inset: 0;

  z-index: 5000;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.v2-modal-backdrop {
  position: absolute;

  inset: 0;

  background:
    rgba(0,0,0,.76);

  backdrop-filter:
    blur(7px);
}

.v2-modal-sheet {
  width: min(520px,100%);

  max-height:
    min(82vh,700px);

  position: relative;

  z-index: 2;

  overflow-y: auto;

  padding:
    25px 18px
    calc(22px + env(safe-area-inset-bottom));

  border-radius:
    25px 25px 0 0;

  background:
    #121016;

  border:
    1px solid var(--line);

  text-align: center;
}

.v2-modal-close {
  width: 35px;
  height: 35px;

  position: absolute;

  top: 12px;
  right: 12px;

  border: 0;

  border-radius: 50%;

  color: white;

  background:
    rgba(255,255,255,.07);

  font-size: 23px;
}

.v2-modal-icon {
  font-size: 34px;
}

.v2-modal-sheet h2 {
  margin:
    9px 0 7px;

  font-size: 27px;
}

.v2-modal-sheet > p {
  max-width: 390px;

  margin:
    0 auto 20px;

  color: var(--muted);

  line-height: 1.55;

  font-size: 13px;
}

.v2-main-button,
.v2-secondary-button {
  width: min(280px,100%);

  min-height: 50px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 13px;

  font-weight: 850;
}

.v2-main-button {
  color: white;

  background:
    linear-gradient(
      135deg,
      var(--pink),
      #e51c80
    );
}

.v2-secondary-button {
  margin-top: 9px;

  color: white;

  background:
    rgba(255,255,255,.06);

  border:
    1px solid var(--line);
}


/* POPUP PACKAGES */

.v2-popup-plans {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 8px;

  margin-top: 8px;
}

.v2-popup-plan button {
  width: 100%;

  min-height: 65px;

  padding: 10px 11px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 7px;

  text-align: left;

  cursor: pointer;

  color: white;

  background: var(--card2);

  border:
    1px solid var(--line);

  border-radius: 13px;
}

.v2-popup-plan button > span {
  min-width: 0;
}

.v2-popup-plan strong,
.v2-popup-plan small {
  display: block;
}

.v2-popup-plan strong {
  font-size: 12px;
}

.v2-popup-plan small {
  margin-top: 3px;

  color: var(--muted);

  font-size: 9px;
}

.v2-popup-plan b {
  flex: 0 0 auto;

  color: #ff5d9b;

  font-size: 14px;
}


/* PLANS PAGE */

.v2-plans-page {
  padding: 35px 15px 40px;
}

.v2-plans-head {
  margin-bottom: 25px;
}

.v2-plans-head h1 {
  margin: 6px 0 7px;

  font-size:
    clamp(31px,7vw,48px);
}

.v2-plans-head p {
  color: var(--muted);

  font-size: 13px;
}

.v2-plan-list {
  display: grid;
  gap: 9px;
}

form.v2-plan-row {
  margin: 0;
}

.v2-plan-row,
.v2-plan-row button {
  width: 100%;
}

.v2-plan-row button,
a.v2-plan-row {
  min-height: 72px;

  padding: 13px 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;

  color: white;

  background: var(--card);

  border:
    1px solid var(--line);

  border-radius: 14px;

  text-align: left;
}

.v2-plan-info strong,
.v2-plan-info small {
  display: block;
}

.v2-plan-info strong {
  font-size: 15px;
}

.v2-plan-info small {
  margin-top: 4px;

  color: var(--muted);

  font-size: 10px;
}

.v2-plan-price {
  color: #ff5d9b;

  font-size: 19px;
  font-weight: 900;
}


/* PROFILE */

.v2-profile {
  padding: 35px 15px;
}

.v2-profile-card {
  width: min(480px,100%);

  margin: auto;

  padding: 28px 20px;

  text-align: center;

  background: var(--card);

  border:
    1px solid var(--line);

  border-radius: 22px;
}

.v2-profile-avatar {
  width: 65px;
  height: 65px;

  margin:
    0 auto 17px;

  display: grid;
  place-items: center;

  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      var(--pink),
      var(--pink2)
    );

  font-size: 22px;
  font-weight: 900;
}

.v2-profile-card h1 {
  margin: 6px 0 12px;

  font-size: 27px;
}

.v2-status {
  width: fit-content;

  margin: 0 auto 20px;

  padding: 6px 10px;

  border-radius: 50px;

  font-size: 9px;
  font-weight: 900;
}

.v2-status.premium {
  color: #74e8ad;

  background:
    rgba(74,220,143,.1);
}

.v2-status.free {
  color: #b0abb5;

  background:
    rgba(255,255,255,.06);
}

.v2-profile-details {
  display: grid;

  gap: 8px;

  margin-bottom: 20px;

  text-align: left;
}

.v2-profile-details > div {
  padding: 13px 14px;

  border-radius: 12px;

  background:
    rgba(255,255,255,.035);

  border:
    1px solid var(--line);
}

.v2-profile-details span,
.v2-profile-details strong {
  display: block;
}

.v2-profile-details span {
  color: var(--muted);

  font-size: 9px;
}

.v2-profile-details strong {
  margin-top: 3px;

  font-size: 13px;
}

.v2-profile-note {
  color: var(--muted);

  font-size: 13px;
}

.v2-logout {
  margin-top: 20px;

  border: 0;

  color: #ff6f95;

  background:
    transparent;

  font-weight: 800;
}


/* RESULT */

.v2-result-page {
  min-height: 100vh;

  padding: 25px;

  display: grid;
  place-items: center;
}

.v2-result-card {
  width: min(430px,100%);

  padding: 35px 22px;

  text-align: center;

  border-radius: 22px;

  background: var(--card);

  border:
    1px solid var(--line);
}

.v2-result-icon {
  width: 65px;
  height: 65px;

  margin:
    0 auto 17px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #77e9ae;

  background:
    rgba(74,220,143,.1);

  font-size: 32px;
  font-weight: 900;
}

.v2-result-card h1 {
  font-size: 28px;
}

.v2-result-card p {
  margin-bottom: 22px;

  color: var(--muted);

  line-height: 1.6;
}


/* EMPTY */

.v2-empty {
  padding: 55px 20px;

  text-align: center;

  border-radius: 20px;

  background: var(--card);

  border:
    1px solid var(--line);
}

.v2-empty strong,
.v2-empty span {
  display: block;
}

.v2-empty span {
  margin-top: 7px;

  color: var(--muted);

  font-size: 12px;
}

.v2-empty a {
  display: inline-flex;

  margin-top: 17px;

  padding: 10px 16px;

  border-radius: 10px;

  background: var(--pink);

  font-weight: 800;
}


/* BOTTOM NAV */

.v2-bottom-nav {
  height:
    calc(68px + env(safe-area-inset-bottom));

  width: min(520px,100%);

  position: fixed;

  left: 50%;
  bottom: 0;

  transform:
    translateX(-50%);

  z-index: 1000;

  padding:
    7px 20px
    calc(7px + env(safe-area-inset-bottom));

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  background:
    rgba(15,13,18,.95);

  backdrop-filter:
    blur(20px);

  border:
    1px solid var(--line);

  border-bottom: 0;

  border-radius:
    22px 22px 0 0;
}

.v2-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 3px;

  color: #77727d;
}

.v2-bottom-nav a > span {
  font-size: 19px;
}

.v2-bottom-nav small {
  font-size: 9px;
  font-weight: 800;
}

.v2-bottom-nav a.active {
  color: var(--pink);
}


/* RESPONSIVE */

@media(max-width:850px) {

  .v2-video-grid {
    grid-template-columns:
      repeat(3,minmax(0,1fr));
  }

}

@media(max-width:600px) {

  .v2-header {
    height: 68px;

    padding: 0 13px;
  }

  .v2-home {
    padding:
      26px 10px 30px;
  }

  .v2-video-grid {
    grid-template-columns:
      repeat(2,minmax(0,1fr));

    gap: 20px 9px;
  }

  .v2-thumb {
    border-radius: 11px;
  }

  .v2-video-card h3 {
    font-size: 12px;
  }

  .v2-play {
    width: 38px;
    height: 38px;
  }

  .v2-player-shell {
    aspect-ratio: 16 / 9;
  }

  .v2-popup-plans {
    grid-template-columns:
      1fr 1fr;
  }

}

/* CENTER ACCESS MODAL */

.v2-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px;
}

.v2-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
}

.v2-modal-sheet {
  position: relative;
  z-index: 2;

  width: min(520px, 100%);
  max-height: 86vh;

  overflow-y: auto;

  padding: 28px 20px 24px;

  border-radius: 22px;

  background: #121016;

  border: 1px solid var(--line);

  text-align: center;

  box-shadow:
    0 25px 80px rgba(0,0,0,.55);
}

.v2-modal-sheet h2 {
  margin: 10px 0 8px;
  font-size: 28px;
}

.v2-modal-sheet > p {
  margin: 0 auto 20px;
}

.v2-popup-plans {
  margin-top: 12px;
}

@media (max-width: 600px) {

  .v2-modal {
    padding: 14px;
  }

  .v2-modal-sheet {
    width: 100%;
    max-height: 82vh;

    padding: 25px 16px 20px;

    border-radius: 20px;
  }

  .v2-modal-sheet h2 {
    font-size: 26px;
  }

}

/* FORCE CENTER MODAL - FINAL */

.v2-modal {
  position: fixed !important;
  inset: 0 !important;

  width: 100vw !important;
  height: 100dvh !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 16px !important;

  z-index: 99999 !important;
}

.v2-modal.hidden {
  display: none !important;
}

.v2-modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
}

.v2-modal-sheet {
  position: relative !important;

  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;

  margin: 0 !important;

  width: min(520px, calc(100vw - 32px)) !important;

  max-height: 82dvh !important;

  border-radius: 22px !important;

  transform: none !important;
}

@media (max-width: 600px) {

  .v2-modal {
    padding: 14px !important;
  }

  .v2-modal-sheet {
    width: calc(100vw - 28px) !important;
    max-height: 80dvh !important;
    margin: 0 !important;
    border-radius: 20px !important;
  }

}

/* ===== FINAL CENTERED ACCESS MODAL ===== */

.v3-access-modal.hidden {
  display: none !important;
}

.v3-access-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;

  display: grid !important;
  place-items: center !important;

  width: 100vw !important;
  height: 100dvh !important;

  padding: 18px !important;

  overflow: hidden !important;
}

.v3-access-backdrop {
  position: absolute !important;
  inset: 0 !important;

  background: rgba(0,0,0,.78) !important;
  backdrop-filter: blur(10px) !important;
}

.v3-access-card {
  position: relative !important;
  z-index: 2 !important;

  width: min(520px, calc(100vw - 36px)) !important;
  max-height: 78dvh !important;

  margin: 0 !important;

  padding: 28px 20px 22px !important;

  overflow-y: auto !important;

  border-radius: 22px !important;

  background: #121016 !important;

  border: 1px solid rgba(255,255,255,.08) !important;

  box-shadow: 0 25px 80px rgba(0,0,0,.6) !important;

  text-align: center !important;

  transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
}

.v3-access-card h2 {
  margin: 10px 0 8px !important;
  font-size: 28px !important;
}

.v3-access-card > p {
  margin: 0 auto 20px !important;
  max-width: 390px !important;

  color: #97929e !important;

  line-height: 1.55 !important;
  font-size: 13px !important;
}

.v3-access-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;

  width: 36px !important;
  height: 36px !important;

  border: 0 !important;
  border-radius: 50% !important;

  color: #fff !important;
  background: rgba(255,255,255,.07) !important;

  font-size: 22px !important;
}

.v3-access-icon {
  font-size: 35px !important;
}

@media(max-width:600px) {

  .v3-access-modal {
    padding: 14px !important;
  }

  .v3-access-card {
    width: calc(100vw - 28px) !important;
    max-height: 76dvh !important;

    padding: 26px 16px 20px !important;

    border-radius: 20px !important;
  }

  .v3-access-card h2 {
    font-size: 26px !important;
  }

}

.v2-home-title {
  padding: 8px 2px 18px;
}

.v2-home-title h1 {
  margin: 0;
  font-size: clamp(28px,6vw,42px);
  letter-spacing: -1.5px;
}

.v2-brand-text small {
  display: none !important;
}

.v2-search {
  margin-bottom: 24px;
}

.v2-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v2-telegram-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #229ed9,
      #087fc0
    );
  box-shadow:
    0 8px 22px rgba(34,158,217,.22);
}

@media (max-width: 480px) {
  .v2-header-actions {
    gap: 5px;
  }

  .v2-telegram-support {
    min-height: 34px;
    padding: 0 9px;
    font-size: 10px;
    border-radius: 10px;
  }

  .v2-header-account {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.v2-support-box {
  margin: 16px 0 20px;
  text-align: center;
}

.v2-support-box .v2-telegram-support {
  width: 100%;
  max-width: 420px;
  min-height: 46px;
  font-size: 14px;
}

.v2-modal-support {
  margin-top: 14px;
}

.v2-modal-support .v2-telegram-support {
  width: 100%;
  min-height: 44px;
  font-size: 13px;
}

/* ===== Premium Telegram Support Button ===== */

.v2-telegram-support {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 42px !important;
  padding: 0 16px !important;

  border-radius: 14px !important;

  text-decoration: none !important;

  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;

  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      #229ed9 0%,
      #168ac4 55%,
      #0a6fa7 100%
    ) !important;

  border:
    1px solid rgba(255,255,255,.14) !important;

  box-shadow:
    0 8px 22px rgba(34,158,217,.26),
    inset 0 1px 0 rgba(255,255,255,.16) !important;

  white-space: nowrap !important;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    opacity .18s ease !important;
}

.v2-telegram-support::before {
  content: "✈" !important;
  display: inline-block !important;
  margin-right: 7px !important;
  font-size: 14px !important;
}

.v2-telegram-support:active {
  transform: scale(.97) !important;
}

.v2-telegram-support:hover {
  box-shadow:
    0 10px 28px rgba(34,158,217,.34),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}


/* Header Support Button */
.v2-header .v2-telegram-support {
  min-height: 40px !important;
  padding: 0 14px !important;
  border-radius: 13px !important;
}


/* Packages page Support Button */
.v2-support-box {
  margin: 14px 0 20px !important;
}

.v2-support-box .v2-telegram-support {
  width: 100% !important;
  min-height: 48px !important;
  font-size: 14px !important;
}


/* Popup Support Button */
.v2-modal-support {
  margin-top: 14px !important;
}

.v2-modal-support .v2-telegram-support {
  width: 100% !important;
  min-height: 46px !important;
  font-size: 14px !important;
}


/* Mobile header tuning */
@media (max-width: 480px) {

  .v2-header {
    gap: 8px !important;
  }

  .v2-header-actions {
    gap: 6px !important;
  }

  .v2-header .v2-telegram-support {
    min-height: 38px !important;
    padding: 0 10px !important;
    border-radius: 12px !important;

    font-size: 11px !important;
  }

  .v2-header .v2-telegram-support::before {
    margin-right: 5px !important;
    font-size: 12px !important;
  }

}

/* ===== TELEGRAM SUPPORT FINAL ===== */

a.v2-telegram-support,
.v2-header a.v2-telegram-support,
.v2-support-box a.v2-telegram-support,
.v2-modal-support a.v2-telegram-support {

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;

  height: 42px !important;
  min-height: 42px !important;

  padding: 0 15px !important;

  border: 0 !important;
  border-radius: 13px !important;

  background:
    linear-gradient(
      135deg,
      #28a8e9 0%,
      #168fd0 55%,
      #0879b8 100%
    ) !important;

  color: #fff !important;

  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;

  text-decoration: none !important;
  white-space: nowrap !important;

  box-shadow:
    0 7px 20px rgba(30,157,220,.28),
    inset 0 1px 0 rgba(255,255,255,.20) !important;

  opacity: 1 !important;
}

a.v2-telegram-support::before {
  content: "➤" !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 18px !important;
  height: 18px !important;

  font-size: 12px !important;

  background: rgba(255,255,255,.18) !important;
  border-radius: 50% !important;
}


/* Package page */
.v2-support-box a.v2-telegram-support {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;

  font-size: 14px !important;
}


/* Login + Unlock popup */
.v2-modal-support {
  width: 100% !important;
  margin-top: 13px !important;
}

.v2-modal-support a.v2-telegram-support {
  display: flex !important;

  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;

  margin: 0 !important;

  font-size: 14px !important;
}


/* Header */
.v2-header a.v2-telegram-support {
  height: 40px !important;
  min-height: 40px !important;

  padding: 0 12px !important;

  font-size: 12px !important;
}


@media (max-width: 480px) {

  .v2-header a.v2-telegram-support {
    height: 38px !important;
    min-height: 38px !important;

    padding: 0 9px !important;

    font-size: 10.5px !important;

    border-radius: 11px !important;
  }

  .v2-header a.v2-telegram-support::before {
    width: 15px !important;
    height: 15px !important;

    font-size: 9px !important;
  }

}

