/* Start custom CSS for html, class: .elementor-element-8e85a89 */@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --navy-deep: #050d24;
    --navy: #0a1a3a;
    --navy-mid: #122a5c;
    --blue: #1e54c9;
    --blue-bright: #3b82f6;
    --azure: #5ba7ff;
    --sky: #8ec5ff;
    --ice: #e8f1ff;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.06);
    --glass-strong: rgba(255, 255, 255, 0.12);
    --border: rgba(139, 192, 255, 0.18);
    --border-strong: rgba(139, 192, 255, 0.35);
    --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.25);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

  html, body {
    min-height: 100%;
    background: var(--navy-deep);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  body {
    position: relative;
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.35) 0%, transparent 60%),
      radial-gradient(ellipse 70% 50% at 50% 100%, rgba(30, 84, 201, 0.25) 0%, transparent 65%),
      linear-gradient(180deg, #061128 0%, #050d24 40%, #030917 100%);
    background-attachment: fixed;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(139, 192, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(139, 192, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
  }

  body::after {
    content: "";
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(91, 167, 255, 0.35) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
  }

  .page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 48px;
    max-width: 540px;
    margin: 0 auto;
  }

  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .avatar-wrap {
    position: relative;
    width: 132px;
    height: 132px;
    margin-bottom: 22px;
  }

  .avatar-wrap::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(
      from 180deg,
      var(--azure) 0deg,
      var(--blue-bright) 90deg,
      var(--navy) 180deg,
      var(--blue-bright) 270deg,
      var(--azure) 360deg
    );
    animation: rotate 12s linear infinite;
    z-index: 0;
  }

  .avatar-wrap::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--navy-deep);
    z-index: 1;
  }

  @keyframes rotate {
    to { transform: rotate(360deg); }
  }

  .avatar {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    box-shadow:
      0 0 0 2px rgba(139, 192, 255, 0.2),
      0 20px 50px -10px rgba(30, 84, 201, 0.6),
      inset 0 0 30px rgba(0, 0, 0, 0.3);
    display: block;
  }

  .name {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #c8dcff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--sky);
    opacity: 0.85;
    margin-bottom: 8px;
  }

  .tagline .sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--azure);
    margin: 0 10px;
    vertical-align: middle;
    opacity: 0.6;
  }

  .links {
    width: 100%;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(30, 84, 201, 0.18) 0%, rgba(10, 26, 58, 0.6) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.25s ease,
                background 0.25s ease,
                box-shadow 0.25s ease;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .link:nth-child(1) { animation-delay: 0.15s; }
  .link:nth-child(2) { animation-delay: 0.22s; }
  .link:nth-child(3) { animation-delay: 0.29s; }
  .link:nth-child(4) { animation-delay: 0.36s; }
  .link:nth-child(5) { animation-delay: 0.43s; }

  .link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(139, 192, 255, 0.15),
      transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
  }

  .link:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    background: linear-gradient(135deg, rgba(30, 84, 201, 0.32) 0%, rgba(18, 42, 92, 0.7) 100%);
    box-shadow:
      0 12px 30px -10px rgba(30, 84, 201, 0.5),
      0 0 0 1px rgba(139, 192, 255, 0.2);
  }

  .link:hover::before { left: 130%; }

  .link:active { transform: translateY(0); }

  .link-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.18);
    position: relative;
    overflow: hidden;
  }

  .link-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    pointer-events: none;
  }

  .link-icon svg {
    width: 23px;
    height: 23px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
  }

  .icon-bybit {
    background: linear-gradient(135deg, #f7a30b 0%, #d97706 100%);
    box-shadow: 0 6px 18px -4px rgba(247, 163, 11, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .icon-book {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 6px 18px -4px rgba(239, 68, 68, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  .icon-telegram {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    box-shadow: 0 6px 18px -4px rgba(56, 189, 248, 0.55),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  .icon-forbes {
    background: linear-gradient(135deg, #14b8a6 0%, #047857 100%);
    box-shadow: 0 6px 18px -4px rgba(20, 184, 166, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
  .icon-premium {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 50%, #b45309 100%);
    box-shadow: 0 6px 18px -4px rgba(251, 191, 36, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }

  .link-text {
    flex: 1;
    min-width: 0;
  }

  .link-arrow {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    opacity: 0.45;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .link-arrow svg {
    width: 100%;
    height: 100%;
    stroke: var(--sky);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .link:hover .link-arrow {
    opacity: 1;
    transform: translateX(3px);
  }

  .link.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.28) 0%, rgba(30, 84, 201, 0.4) 100%);
    border-color: rgba(139, 192, 255, 0.35);
  }

  .footer {
    margin-top: 48px;
    text-align: center;
    font-size: 12px;
    color: var(--sky);
    opacity: 0.5;
    letter-spacing: 0.05em;
    animation: fadeUp 0.8s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .footer .dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--azure);
    margin: 0 8px;
    vertical-align: middle;
  }

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

  @media (max-width: 480px) {
    .page { padding: 36px 16px 36px; }
    .avatar-wrap { width: 116px; height: 116px; }
    .name { font-size: 28px; }
    .tagline { font-size: 13px; }
    .link {
      padding: 16px 16px;
      font-size: 14px;
      gap: 14px;
      border-radius: 14px;
    }
    .link-icon { width: 40px; height: 40px; }
    .link-icon svg { width: 21px; height: 21px; }
  }

  @media (max-width: 360px) {
    .name { font-size: 25px; }
    .tagline { font-size: 12px; }
    .tagline .sep { margin: 0 6px; }
    .link { padding: 14px 14px; font-size: 13.5px; }
  }

  @media (min-width: 600px) {
    .page { padding-top: 64px; }
    .name { font-size: 38px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }/* End custom CSS */