 :root {
      --bg: #FF6600;
      --surface: #111118;
      --border: rgba(255,255,255,0.07);
      --accent: #c8ff00;
      --text: #f0f0f0;
      --muted: #888;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    .flag-top {
      position: fixed;
      top: 0;
      width: 100%;
      background: var(--accent);
      color: #111;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 4px 0;
      z-index: 999;
      text-align: center;
      display: none;
    }

    html {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--bg) 0%, color-mix(in srgb, var(--bg) 60%, #000) 100%);
      background-attachment: fixed;
    }

    body {
      background: transparent;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 30px 20px;
      overflow-x: hidden;
      position: relative;
    }

    /* Background orbs */
    body::before {
      content: '';
      position: fixed;
      top: -100px;
      left: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    body::after {
      content: '';
      position: fixed;
      bottom: -100px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(200,255,0,0.10) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .container {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 440px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    /* LOGO */
    .logo-wrap {
      margin-bottom: 30px;
      animation: fadeDown 0.6s ease both;
    }
    .logo-wrap img {
      max-width: 150px;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
    }

    /* Links */
    .links {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .link-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      text-decoration: none;
      color: var(--text);
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      animation: fadeUp 0.5s ease both;
      cursor: pointer;
    }

    .link-card:nth-child(1) { animation-delay: 0.15s; }
    .link-card:nth-child(2) { animation-delay: 0.25s; }
    .link-card:nth-child(3) { animation-delay: 0.35s; }

    .link-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.03));
      opacity: 0;
      transition: opacity 0.3s;
    }

    .link-card:hover {
      transform: translateY(-2px);
      border-color: rgba(200,255,0,0.25);
      box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(200,255,0,0.1);
    }

    .link-card:hover::before { opacity: 1; }

    .link-card:active { transform: translateY(0px); }

    .link-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 18px;
    }

    .link-info {
      flex: 1;
    }

    .link-info .label {
      font-family: 'Syne', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      display: block;
    }

    .link-info .sub {
      font-size: 0.75rem;
      color: var(--muted);
      display: block;
      margin-top: 1px;
    }

    .link-arrow {
      color: var(--muted);
      font-size: 14px;
      transition: transform 0.2s, color 0.2s;
    }

    .link-card:hover .link-arrow {
      transform: translateX(3px);
      color: var(--accent);
    }

    /* Icon bg colors */
    .ic-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

    /* Footer */
    .footer {
      margin-top: 36px;
      text-align: center;
      font-size: 0.7rem;
      color: rgba(235, 235, 235, 0.486);
      letter-spacing: 0.06em;
      animation: fadeUp 0.5s ease both;
      animation-delay: 0.6s;
    }

    /* Animations */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }