    :root {
      --primary: #ffb800;
      --accent: #45e0b5;
      --bg-dark: #070b15;
      --bg-card: #0f1524;
      --bg-soft: #141b2f;
      --text-main: #ffffff;
      --text-muted: #9aa3c4;
      --border-soft: #242b42;
    }

    * { box-sizing: border-box; }
	
	a {
  color: inherit;         /* paveldi tekstą iš tėvinio elemento */
  text-decoration: none;  /* nuima pabraukimą */
}

     a:hover {
  text-decoration: none;  /* kad hover metu vėl neatsirastų */
}

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #151c34, #050712 60%);
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(5, 7, 18, 0.9);
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .nav {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0.9rem 1.3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 1.08rem;
      font-weight: 700;
    }

    .logo-pill {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #fff, #ffb800 55%, #f06500);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      font-weight: 900;
      color: #111;
      box-shadow: 0 0 15px rgba(255,184,0,0.55);
    }

    main {
      max-width: 1080px;
      margin: 0 auto;
      padding: 2.2rem 1.3rem;
    }

    .hero-title {
      font-size: clamp(2rem, 4vw, 2.6rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 0.4rem;
    }

    .hero-sub {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 40rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    /* GRID */

    .grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .guide-card {
      background: var(--bg-soft);
      border-radius: 20px;
      padding: 1.1rem;
      border: 1px solid rgba(255,255,255,0.05);
      box-shadow: 0 20px 40px rgba(0,0,0,0.45);
      transition: 0.25s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .guide-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255,255,255,0.15);
      box-shadow: 0 25px 55px rgba(0,0,0,0.6);
    }

    .guide-icon {
      font-size: 2rem;
      margin-bottom: 0.4rem;
    }

    .guide-title {
      font-size: 1.16rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
    }

    .guide-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .guide-link {
      margin-top: auto;
      padding: 0.6rem 1rem;
      text-align: center;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), #ffe28a);
      color: #111;
      font-weight: 700;
      text-decoration: none;
      font-size: 0.9rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.55);
      transition: 0.2s;
    }

    .guide-link:hover {
      filter: brightness(1.1);
    }

    footer {
      text-align: center;
      margin-top: 3rem;
      padding: 1.2rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      border-top: 1px solid rgba(255,255,255,0.05);
    }
