    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Nunito', sans-serif;
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
      background: #F7F4ED;
    }

    .app-bg {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      background: #F7F4ED;
    }

    .bg-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.55;
    }

    .bb1 {
      width: 420px;
      height: 420px;
      background: #F9E87A;
      bottom: -100px;
      left: -80px;
    }

    .bb2 {
      width: 340px;
      height: 340px;
      background: #C8EAF8;
      top: -80px;
      right: -60px;
    }

    .bb3 {
      width: 220px;
      height: 220px;
      background: #B8F0D8;
      top: 40%;
      left: 20%;
      opacity: 0.35;
    }

    .bb4 {
      width: 180px;
      height: 180px;
      background: #F8C8C0;
      top: 15%;
      right: 25%;
      opacity: 0.3;
    }

    .bb5 {
      width: 140px;
      height: 140px;
      background: #D0C8F8;
      bottom: 20%;
      right: 10%;
      opacity: 0.4;
    }

    .content {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
    }

    .page {
      display: none;
    }

    .page.active {
      display: block;
    }

    .nav {
      padding: 1rem 1.4rem 0.4rem;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .logo-box {
      width: 48px;
      height: 48px;
      border-radius: 13px;
      background: white;
      border: 2px solid #E0D870;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    /* Image logo (app icon) — used in place of .logo-box */
    .logo-img {
      width: 48px;
      height: 48px;
      border-radius: 13px;
      flex-shrink: 0;
      object-fit: cover;
      display: block;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .logo-n {
      font-size: 24px;
      font-weight: 900;
      color: #F47B6B;
      margin-right: 2px;
    }

    .logo-dots {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .logo-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .logo-name {
      font-size: 17px;
      font-weight: 900;
      color: #1A1800;
      line-height: 1.1;
    }

    .logo-tagline {
      font-size: 11px;
      font-weight: 700;
      color: #8A8050;
      line-height: 1.1;
    }

    .hero-wrap {
      padding: 0.6rem 1.4rem 0.8rem;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 12px;
    }

    .hero-big {
      font-size: 24px;
      font-weight: 900;
      color: #1A1800;
      line-height: 1.1;
    }

    .kisa-wrap {
      flex-shrink: 0;
      width: 88px;
      position: relative;
      cursor: pointer;
    }

    .kisa-wrap:hover .kisa-svg {
      transform: translateY(-6px) rotate(3deg);
    }

    .kisa-wrap:hover .kisa-bubble {
      opacity: 1;
      transform: scale(1) translateY(0);
    }

    .kisa-svg {
      transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1);
    }

    .kisa-bubble {
      position: absolute;
      top: -42px;
      right: -10px;
      background: white;
      border-radius: 14px;
      border: 2px solid #F9C33A;
      padding: 5px 9px;
      font-size: 10px;
      font-weight: 800;
      color: #8A6000;
      white-space: nowrap;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
      opacity: 0;
      transform: scale(0.7) translateY(6px);
      transition: all 0.25s cubic-bezier(.34, 1.56, .64, 1);
      pointer-events: none;
    }

    .kisa-bubble::after {
      content: '';
      position: absolute;
      bottom: -8px;
      right: 18px;
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 8px solid #F9C33A;
    }

    .grid-wrap {
      padding: 0 1rem 1.2rem;
    }

    .top-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 12px;
    }

    .bot-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 1rem;
    }

    .ncard {
      background: white;
      border-radius: 22px;
      cursor: pointer;
      position: relative;
      padding: 1rem;
      aspect-ratio: 1/1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.2s, border-color 0.2s;
    }

    .ncard.nc-leik {
      border: 2.5px solid #F9C33A;
      box-shadow: 0 2px 0 #D8A800, 0 4px 0 #B88800, 0 6px 12px rgba(180, 130, 0, 0.18);
    }

    .ncard.nc-yngsta {
      border: 2.5px solid #F47B6B;
      box-shadow: 0 2px 0 #D86050, 0 4px 0 #A83020, 0 6px 12px rgba(180, 70, 50, 0.18);
    }

    .ncard.nc-midstig {
      border: 2.5px solid #5BBDE4;
      box-shadow: 0 2px 0 #3098C0, 0 4px 0 #1078A0, 0 6px 12px rgba(20, 110, 170, 0.18);
    }

    .ncard.nc-efsta {
      border: 2.5px solid #52CCA0;
      box-shadow: 0 2px 0 #28A878, 0 4px 0 #088858, 0 6px 12px rgba(10, 130, 80, 0.18);
    }

    .ncard.nc-framhald {
      border: 2.5px solid #C77DFF;
      box-shadow: 0 2px 0 #9D4EDD, 0 4px 0 #7B2CBF, 0 6px 12px rgba(155, 79, 221, 0.18);
    }

    .ncard.nc-isat {
      border: 2.5px solid #FF9F45;
      box-shadow: 0 2px 0 #E67E22, 0 4px 0 #C0590E, 0 6px 12px rgba(230, 126, 34, 0.18);
    }

    .ncard.nc-gagna {
      border: 2.5px solid #F9C33A;
      box-shadow: 0 2px 0 #D8A800, 0 4px 0 #B88800, 0 6px 12px rgba(180, 130, 0, 0.15);
    }

    .ncard.nc-sala {
      border: 2.5px solid #A48EF0;
      box-shadow: 0 2px 0 #8870D8, 0 4px 0 #6850B8, 0 6px 12px rgba(120, 90, 200, 0.15);
    }

    .ncard.nc-leik:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 2px 0 #D8A800, 0 4px 0 #B88800, 0 6px 0 #987000, 0 12px 28px rgba(180, 130, 0, 0.28);
    }

    .ncard.nc-yngsta:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 2px 0 #D86050, 0 4px 0 #A83020, 0 6px 0 #883010, 0 12px 28px rgba(180, 70, 50, 0.28);
    }

    .ncard.nc-midstig:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 2px 0 #3098C0, 0 4px 0 #1078A0, 0 6px 0 #006890, 0 12px 28px rgba(20, 110, 170, 0.28);
    }

    .ncard.nc-efsta:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 2px 0 #28A878, 0 4px 0 #088858, 0 6px 0 #007848, 0 12px 28px rgba(10, 130, 80, 0.28);
    }

    .ncard.nc-framhald:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 2px 0 #9D4EDD, 0 4px 0 #7B2CBF, 0 6px 0 #5A189A, 0 12px 28px rgba(155, 79, 221, 0.28);
    }

    .ncard.nc-isat:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 2px 0 #E67E22, 0 4px 0 #C0590E, 0 6px 0 #8B3A00, 0 12px 28px rgba(230, 126, 34, 0.28);
    }

    .ncard.nc-gagna:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 2px 0 #D8A800, 0 4px 0 #B88800, 0 6px 0 #987000, 0 12px 28px rgba(180, 130, 0, 0.25);
    }

    .ncard.nc-sala:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 2px 0 #8870D8, 0 4px 0 #6850B8, 0 6px 0 #5840A8, 0 12px 28px rgba(120, 90, 200, 0.25);
    }

    .nc-soon-badge {
      position: absolute;
      top: 8px;
      right: 8px;
      background: #1A1A1A;
      color: white;
      padding: 3px 9px;
      border-radius: 12px;
      font-size: 9px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      z-index: 2;
    }

    .nc-img {
      margin-bottom: auto;
      padding-top: 0.2rem;
    }

    .nc-tag {
      display: inline-block;
      border-radius: 30px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 800;
      margin-bottom: 6px;
      margin-top: 0.8rem;
      border: 2px solid #1A1A1A;
      background: white;
      color: #1A1A1A;
    }

    .nc-title {
      font-size: 18px;
      font-weight: 900;
      color: #1A1200;
      line-height: 1.1;
      margin-bottom: 2px;
    }

    .nc-sub {
      font-size: 10px;
      font-weight: 700;
      color: #888;
      margin-top: 2px;
    }

    .subpage {
      min-height: 100vh;
      position: relative;
      z-index: 1;
    }

    .sub-back {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      border: 2px solid #1A1A1A;
      background: white;
      padding: 8px 16px;
      border-radius: 30px;
      font-family: 'Nunito', sans-serif;
      color: #1A1A1A;
      margin: 1rem 1.4rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .sub-hero {
      padding: 0 1.4rem 0.8rem;
    }

    .sub-ey {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .sub-h {
      font-size: 28px;
      font-weight: 900;
      line-height: 1.05;
      margin-bottom: 5px;
    }

    .sub-p {
      font-size: 12px;
      font-weight: 700;
      color: #6A6040;
      line-height: 1.5;
    }

    .fag-scroll {
      padding: 0 1rem 1.4rem;
      overflow-x: auto;
    }

    .fag-row {
      display: flex;
      gap: 12px;
      min-width: max-content;
      padding-bottom: 6px;
    }

    .fcard {
      background: white;
      border-radius: 20px;
      cursor: pointer;
      position: relative;
      width: 180px;
      flex-shrink: 0;
      padding: 1.2rem 1rem 1.1rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      min-height: 150px;
      transition: transform 0.18s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.18s;
    }

    .fcard:hover {
      transform: translateY(-6px) scale(1.02);
    }

    .fc-icon {
      margin-bottom: 12px;
    }

    .fc-title {
      font-size: 17px;
      font-weight: 900;
      color: #1A1200;
      line-height: 1.2;
    }

    .gagna-list {
      padding: 0 1.4rem 1.4rem;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .g-item {
      background: white;
      border-radius: 16px;
      border: 2px solid #1A1A1A;
      padding: 1rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: transform 0.15s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .g-item:hover {
      transform: translateY(-3px);
    }

    .g-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: #FFFAE8;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .g-text h4 {
      font-size: 14px;
      font-weight: 900;
      color: #8A6000;
    }

    .g-text p {
      font-size: 11px;
      font-weight: 700;
      color: #B09040;
    }

    .sala-wrap {
      padding: 0 1.4rem 1.4rem;
    }

    .ask-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 1rem;
    }

    .acrd {
      background: white;
      border-radius: 18px;
      border: 2.5px solid #1A1A1A;
      padding: 1.1rem;
      cursor: pointer;
      transition: transform 0.15s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .acrd:hover {
      transform: translateY(-4px);
    }

    .atag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 9px;
      border-radius: 20px;
      font-size: 10px;
      font-weight: 800;
      margin-bottom: 7px;
      border: 1.8px solid #1A1A1A;
      background: white;
      color: #1A1A1A;
    }

    .acrd h3 {
      font-size: 14px;
      font-weight: 900;
      color: #1A1200;
      margin-bottom: 4px;
    }

    .acrd .pr {
      font-size: 18px;
      font-weight: 900;
      color: #2A8A50;
      margin-bottom: 2px;
    }

    .acrd .ps {
      font-size: 11px;
      font-weight: 700;
      color: #8A8060;
      margin-bottom: 7px;
    }

    .afl {
      list-style: none;
    }

    .afl li {
      font-size: 11px;
      font-weight: 700;
      color: #6A6040;
      padding: 2px 0;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .afl li i {
      font-size: 12px;
      color: #3AAA70;
    }

    .sbtns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 1rem;
    }

    .sbtn {
      padding: 12px;
      border-radius: 40px;
      border: none;
      font-size: 13px;
      font-weight: 800;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      text-decoration: none;
      text-align: center;
      display: block;
    }

    .s1 {
      background: #1A1A1A;
      color: white;
    }

    .s2 {
      background: #3AAA70;
      color: white;
    }
