:root {
      --purple: #2b005f;
      --purple-top: #8500dc;
      --purple-mid: #8d10e7;
      --teal: #00716d;
      --blue: #0768bd;
      --light: #e8f3fb;
      --pink: #d91350;
      --green: #0aa64b;
      --text: #30343a;
      --muted: #60656b;
      --cream: #fff9e7;
      --shadow: 0 4px 13px rgba(28, 45, 65, .22);
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      min-height: 100vh;
      background: #f2f5f8;
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    button, input { font: inherit; }
    button { cursor: pointer; }

    .app {
      width: min(100%, 430px);
      min-height: 100vh;
      margin: 0 auto;
      overflow-x: hidden;
      background: #fff;
    }

    .view { display: none; min-height: 100vh; }
    .view.active { display: block; }

    .topbar {
      height: 64px;
      padding: 0 23px;
      background: var(--purple-top);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand-white,
    .brand-purple {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: .88;
    }

    .brand-white { color: #fff; font-size: 16px; }
    .brand-purple { color: var(--purple); font-size: 22px; }

    .mark {
      width: 31px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3px;
      flex: 0 0 auto;
    }

    .brand-purple .mark { width: 45px; gap: 4px; }

    .mark span {
      aspect-ratio: 1;
      border-radius: 50%;
      background: currentColor;
    }

    .ielts {
      margin-left: 8px;
      color: currentColor;
      font-size: 34px;
      line-height: 1;
      font-weight: 800;
      letter-spacing: -1.3px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
    }

    .ielts sup {
      position: absolute;
      top: -1px;
      right: -3px;
      margin-left: 0;
      font-size: 3.5px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0;
    }

    .menu {
      border: 0;
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 22px;
      font-weight: 700;
    }

    .hamburger {
      width: 27px;
      display: grid;
      gap: 4px;
    }

    .hamburger span {
      height: 3px;
      border-radius: 2px;
      background: #fff;
    }

    .menu-panel {
      display: none;
      padding: 13px 24px 17px;
      background: #fff;
      border-bottom: 1px solid #d9dfe6;
      box-shadow: 0 3px 10px rgba(0,0,0,.12);
    }

    .menu-panel.open { display: block; }
    .menu-panel a {
      display: block;
      padding: 11px 0;
      color: var(--blue);
      font-size: 18px;
      font-weight: 700;
      text-decoration: none;
      border-bottom: 1px solid #eef2f5;
    }

    .check-title {
      padding: 34px 20px 60px;
      background: #fff;
    }

    h1, h2, p { margin-top: 0; }

    .big-title {
      margin: 0;
      color: var(--purple);
      font-size: 30px;
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: -0.4px;
      white-space: nowrap;
    }

    .title-rule {
      width: 32px;
      height: 4px;
      margin-top: 24px;
      background: var(--purple);
    }

    .check-panel {
      padding: 23px 24px 28px;
      background: var(--light);
      border-radius: 12px 12px 0 0;
    }

    .check-card,
    .card {
      background: #fff;
      border-radius: 10px;
      box-shadow: var(--shadow);
    }

    .check-card {
      padding: 29px 24px 25px;
    }

    .check-card p {
      color: #55595e;
      font-size: 18px;
      line-height: 1.52;
    }

    label {
      display: block;
      margin: 22px 0 9px;
      color: #55595e;
      font-size: 18px;
      line-height: 1.2;
    }

    .input {
      width: 100%;
      height: 55px;
      padding: 0 16px;
      border: 1px solid #adadad;
      border-radius: 2px;
      color: #555;
      background: #fff;
      font-size: 18px;
      outline: 0;
    }

    .input:focus,
    .password:focus-within {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(7,104,189,.16);
    }

    .btn-blue {
      width: 100%;
      min-height: 59px;
      border: 2px solid var(--blue);
      border-radius: 31px;
      background: var(--blue);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      transition: filter .18s ease;
    }

    .btn-blue:hover { filter: brightness(.95); }

    .check-card .btn-blue { margin-top: 22px; }

    .purple-footer {
      min-height: 250px;
      padding: 31px 24px 44px;
      color: #fff;
      background: var(--purple-top);
      font-size: 11px;
      line-height: 1.4;
      font-weight: 700;
    }

    .footer-links {
      font-size: 13px;
      line-height: 1.95;
      font-weight: 700;
    }

    .footer-line {
      white-space: nowrap;
    }

    .footer-links span {
      display: inline-block;
      white-space: nowrap;
    }

    .footer-links .sep {
      margin: 0 11px;
    }

    .copyright {
      margin: 25px 0 16px;
      color: #fff;
      font-size: 12px;
      font-weight: 500;
    }

    .footer-small {
      margin: 0;
      color: rgba(255,255,255,.9);
      font-size: 11px;
      line-height: 1.45;
      font-weight: 400;
    }

    .footer-charity {
      margin: 0;
      color: rgba(255,255,255,.9);
      font-size: 11px;
      line-height: 1.35;
      font-weight: 400;
    }

    .loading-page {
      min-height: calc(100vh - 64px);
      display: flex;
      flex-direction: column;
      background: #fff;
    }

    .loading-stage {
      flex: 1;
      padding: 56px 24px 30px;
      background: #fff;
    }

    .loading-card {
      min-height: 452px;
      padding: 116px 24px 24px;
      border-radius: 0 58px 0 0;
      background: linear-gradient(90deg, #d7d7d7 0%, #f2f2f2 52%, #d8d8d8 100%);
    }

    .loading-card h1 {
      margin: 0 0 21px;
      color: var(--purple);
      font-size: 31px;
      line-height: 1.05;
      font-weight: 800;
    }

    .loading-card p {
      margin: 0;
      color: #34383d;
      font-size: 16px;
      line-height: 1.35;
    }

    .signin-bg {
      min-height: 100vh;
      padding: 56px 40px 28px;
      background:
        linear-gradient(47deg, transparent 0 63%, rgba(255,255,255,.7) 63% 64%, transparent 64%),
        linear-gradient(132deg, transparent 0 57%, rgba(255,255,255,.65) 57% 58%, transparent 58%),
        radial-gradient(circle at 80% 18%, #c05cff 0, #9630e4 28%, #56169a 62%, #26005d 100%);
    }

    .signin-card {
      min-height: 690px;
      padding: 32px 31px 36px;
      background: #fff;
      border-radius: 8px 8px 35px 8px;
      box-shadow: 0 3px 14px rgba(0,0,0,.35);
    }

    .signin-card .brand-purple {
      margin-bottom: 37px;
    }

    .signin-title {
      margin: 0;
      color: var(--purple);
      font-size: 34px;
      line-height: 1;
      font-weight: 800;
    }

    .signin-line {
      width: 45px;
      height: 5px;
      margin: 22px 0 27px;
      border-radius: 5px;
      background: linear-gradient(90deg, #782fe4, #bf52ec);
    }

    .signin-copy {
      color: #555;
      font-size: 19px;
      line-height: 1.55;
      margin-bottom: 28px;
    }

    .link {
      color: var(--blue);
      font-weight: 700;
      text-decoration: none;
    }

    .signin-card label {
      margin-top: 24px;
      color: #111;
      font-weight: 700;
    }

    .password {
      height: 55px;
      display: flex;
      border: 1px solid #adadad;
      border-radius: 2px;
      overflow: hidden;
    }

    .password input {
      flex: 1;
      min-width: 0;
      height: 100%;
      padding: 0 16px;
      border: 0;
      outline: 0;
      font-size: 20px;
    }

    .show {
      width: 78px;
      border: 0;
      background: #fff;
      color: #666;
      font-size: 18px;
      font-weight: 700;
    }

    .forgot {
      margin: 27px 0 56px;
      color: #555;
      font-size: 19px;
      line-height: 1.38;
    }

    .btn-purple {
      display: block;
      width: 185px;
      min-height: 57px;
      margin: 0 auto 48px;
      border: 0;
      border-radius: 30px;
      background: var(--purple);
      color: #fff;
      font-size: 20px;
    }

    .go-back {
      margin: 0;
      color: #555;
      text-align: center;
      font-size: 19px;
      line-height: 1.3;
    }

    .notice {
      min-height: 24px;
      margin-top: 12px;
      color: #b00020;
      font-size: 15px;
      text-align: center;
    }

    .hero {
      padding: 30px 24px 29px;
      color: #fff;
      background: var(--teal);
    }

    .hero h1 {
      margin: 0;
      color: #fff;
      font-size: 35px;
      line-height: 1.08;
      font-weight: 800;
    }

    .hero-rule {
      width: 33px;
      height: 4px;
      margin: 18px 0 27px;
      background: #fff;
    }

    .hero p {
      margin: 0;
      color: #fff;
      font-size: 20px;
      line-height: 1.5;
    }

    .content {
      padding: 28px 24px 36px;
      background: var(--light);
    }

    .section-title {
      margin: 0 0 31px;
      color: var(--purple);
      font-size: 22px;
      line-height: 1.12;
      font-weight: 800;
    }

    .result-card {
      padding: 22px 20px 21px;
      margin-bottom: 43px;
    }

    .two-col {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 88px;
      gap: 8px;
      align-items: start;
    }

    .card-title {
      color: var(--blue);
      font-size: 20px;
      line-height: 1.08;
      font-weight: 800;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 2px;
    }

    .result-card .card-title,
    .previous-card .card-title {
      white-space: nowrap;
    }

    .date {
      margin: 12px 0 8px;
      color: #2b2f33;
      font-size: 17px;
      font-weight: 700;
    }

    .meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 3px;
      color: #696e73;
      font-size: 15px;
      line-height: 1.25;
    }

    .place { margin-left: 32px; }

    .score-label {
      color: #30343a;
      text-align: center;
      font-size: 13px;
      line-height: 1.2;
    }

    .ring {
      width: 76px;
      height: 76px;
      margin: 10px auto 0;
      border: 10px solid var(--green);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--purple);
      background: #fff;
      font-size: 32px;
      font-weight: 800;
      line-height: 1;
    }

    .result-card .btn-blue,
    .retake-card .btn-blue {
      min-height: 48px;
      margin-top: 2px;
      border-radius: 25px;
      font-size: 16px;
    }

    .rebook {
      margin-top: 17px;
      color: var(--blue);
      text-align: center;
      font-size: 18px;
      line-height: 1.25;
      font-weight: 700;
    }

    .previous-card {
      padding: 22px 20px 21px;
      margin-bottom: 31px;
    }

    .retake-card {
      position: relative;
      padding: 22px 20px 21px;
      margin-bottom: 29px;
    }

    .tag {
      position: absolute;
      top: -26px;
      right: 24px;
      padding: 5px 17px;
      border-radius: 5px;
      background: #facdda;
      color: var(--purple);
      font-size: 21px;
      font-weight: 800;
    }

    .back-top {
      display: block;
      margin: 0;
      padding: 12px 30px 32px;
      background: var(--light);
      color: var(--blue);
      font-size: 16px;
      line-height: 1.2;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 2px;
    }

    .small-ring {
      width: 70px;
      height: 70px;
      border-width: 9px;
      font-size: 29px;
    }

    .divider {
      height: 0;
      border-top: 4px dotted #8b9aa6;
      margin: 34px 0 30px;
    }

    .backbar {
      position: sticky;
      top: 0;
      z-index: 5;
      padding: 10px 16px;
      background: rgba(255,255,255,.94);
      border-bottom: 1px solid #d8dee6;
    }

    .backbar button {
      border: 0;
      background: transparent;
      color: var(--blue);
      font-size: 17px;
      font-weight: 700;
    }

    .full {
      min-height: 100vh;
      padding: 24px 24px 26px;
      background: var(--light);
    }

    .result-summary {
      background: #fff;
    }

    .result-summary .detail-head {
      padding-top: 22px;
    }

    .result-summary .detail-head h1 {
      font-size: 22px;
      line-height: 1.18;
    }

    .summary-content {
      padding: 18px 20px 30px;
      background: var(--light);
    }

    .summary-grid {
      margin: 18px 0 42px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
    }

    .summary-grid h2 {
      margin: 0;
      color: #2b2f33;
      font-size: 18px;
      line-height: 1.25;
      font-weight: 800;
    }

    .summary-grid .ring { justify-self: center; }

    .summary-grid a {
      justify-self: end;
      color: var(--blue);
      font-size: 16px;
      line-height: 1.2;
      font-weight: 700;
      text-align: right;
      text-decoration-thickness: 2px;
    }

    .summary-card {
      position: relative;
      margin-top: 30px;
      padding: 26px 20px 22px;
      border-radius: 9px;
      background: #fff;
      box-shadow: 0 3px 8px rgba(30,50,70,.16);
      color: #33383d;
      font-size: 17px;
      line-height: 1.45;
    }

    .summary-card:before {
      content: "";
      position: absolute;
      top: -16px;
      left: 50%;
      width: 32px;
      height: 32px;
      background: #fff;
      transform: translateX(-50%) rotate(45deg);
    }

    .score-row {
      min-height: 50px;
      margin-bottom: 11px;
      display: grid;
      grid-template-columns: 38px minmax(0, 1fr) auto;
      align-items: center;
      gap: 13px;
      padding: 10px 16px;
      border-radius: 10px;
      background: #fff;
      box-shadow: 0 3px 8px rgba(30,50,70,.16);
      font-size: 16px;
    }

    .score-row.changed {
      min-height: 56px;
      grid-template-columns: 38px minmax(0,1fr) 116px 38px;
      background: var(--cream);
    }

    .score-row.overall {
      min-height: 58px;
      grid-template-columns: minmax(0,1fr) 74px 36px;
      gap: 8px;
      padding-left: 16px;
      background: var(--cream);
      font-size: 16px;
      font-weight: 800;
    }

    .score-row.overall.plain-overall {
      grid-template-columns: minmax(0,1fr) 42px;
      min-height: 50px;
      background: #fff;
    }

    .score-row.overall > span:first-child {
      white-space: nowrap;
    }

    .score-value {
      justify-self: end;
      min-width: 36px;
      color: #30343a;
      text-align: right;
    }

    .changed .score-value,
    .overall .score-value { font-weight: 800; }

    .change {
      color: #3e4247;
      text-align: center;
      font-size: 13px;
      line-height: 1.08;
    }

    .change strong {
      display: block;
      font-size: 15px;
      font-weight: 800;
    }

    .retake-note {
      justify-self: end;
      color: #3f464d;
      min-width: 108px;
      font-size: 13px;
      line-height: 1.12;
      text-align: right;
      white-space: nowrap;
    }

    .retake-note a {
      color: var(--blue);
      font-weight: 700;
      text-decoration: underline;
    }

    .btn-outline {
      width: 100%;
      min-height: 54px;
      margin: 20px 0 32px;
      border: 2px solid var(--blue);
      border-radius: 31px;
      background: #fff;
      color: var(--blue);
      font-size: 16px;
      font-weight: 700;
    }

    #detailView .score-row.overall + .btn-outline {
      width: 78%;
      min-height: 50px;
      margin: 18px 0 30px;
    }

    .action-card {
      padding: 27px 24px 26px;
      margin-bottom: 30px;
      background: #fff;
      border-radius: 10px;
      box-shadow: var(--shadow);
    }

    .action-card h2 {
      margin: 0 0 19px;
      color: var(--purple);
      font-size: 24px;
      line-height: 1.15;
      font-weight: 800;
    }

    .action-card p {
      margin: 0 0 18px;
      color: #3d4248;
      font-size: 16px;
      line-height: 1.45;
    }

    .action-link-row {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 12px;
      align-items: center;
      margin: 11px 0;
    }

    .simple-icon {
      width: 30px;
      height: 30px;
      display: inline-grid;
      place-items: center;
      color: #111;
      font-size: 28px;
      line-height: 1;
    }

    .action-link-row a {
      color: var(--blue);
      font-size: 15px;
      line-height: 1.15;
      font-weight: 700;
      text-decoration: underline;
      text-align: left;
    }

    .explain-title {
      margin: 0 0 20px;
      color: #292d31;
      font-size: 22px;
      font-weight: 800;
    }

    .copy {
      margin: 18px 0 31px;
      color: #33383d;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 400;
    }

    .improve {
      padding-left: 16px;
      border-left: 7px solid var(--blue);
      color: #30343a;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 400;
    }

    .improve strong {
      display: block;
      margin-bottom: 13px;
      font-size: 22px;
      font-weight: 800;
    }

    .score-explain {
      margin-bottom: 24px;
    }

    .score-explain .score-row {
      margin-bottom: 10px;
    }

    .detail-head {
      padding: 24px 21px 23px;
      background: #fff;
      border-bottom: 1px solid #cfd5dc;
    }

    .detail-head h1 {
      margin: 0 0 22px;
      color: var(--purple);
      font-size: 27px;
      line-height: 1.18;
      font-weight: 800;
    }

    .candidate {
      color: #33373b;
      font-size: 21px;
      line-height: 1.43;
    }

    .candidate small {
      display: block;
      margin-top: 9px;
      font-size: 15px;
      line-height: 1.55;
    }

    .success-alert {
      display: grid;
      grid-template-columns: 26px 1fr 20px;
      gap: 8px;
      align-items: center;
      padding: 10px 17px;
      background: #dfffd6;
      color: #294631;
      font-size: 16px;
      line-height: 1.25;
    }

    .checkmark {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #17b940;
      color: #fff;
      font-size: 17px;
      font-weight: 700;
    }

    .close-x {
      color: var(--blue);
      font-size: 18px;
      text-align: right;
    }

    .info-wrap {
      position: relative;
      padding: 15px 20px 25px 40px;
      background: #fff;
    }

    .info {
      position: absolute;
      top: 28px;
      left: 13px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--blue);
      color: #fff;
      font-size: 22px;
      font-weight: 700;
    }

    .info-bubble {
      padding: 17px 20px;
      border-radius: 40px 0 40px 0;
      background: #d2e5f6;
      font-size: 20px;
      line-height: 1.5;
    }

    .info-bubble strong { font-weight: 800; }

    .detail-content {
      min-height: 100vh;
      padding: 20px 20px 0;
      background: var(--light);
    }

    #detailView .detail-content > .full {
      min-height: 0;
      margin-left: -20px;
      margin-right: -20px;
      padding-left: 24px;
      padding-right: 24px;
    }

    #detailView #detailFullScores {
      white-space: nowrap;
    }

    .dropdown {
      height: 55px;
      padding: 0 20px;
      border: 2px solid var(--blue);
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      color: var(--blue);
      font-size: 21px;
      font-weight: 700;
    }

    .chev {
      width: 17px;
      height: 17px;
      border-right: 3px solid var(--blue);
      border-bottom: 3px solid var(--blue);
      transform: rotate(45deg) translateY(-4px);
    }

    .results-body.collapsed { display: none; }

    .band-grid {
      margin: 39px 0 44px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
      gap: 11px;
      align-items: center;
    }

    .band-grid h2 {
      margin: 0;
      color: #2b2f33;
      font-size: 22px;
      line-height: 1.25;
    }

    .band-grid .ring { justify-self: center; }

    .band-grid a {
      justify-self: end;
      color: var(--blue);
      font-size: 20px;
      line-height: 1.25;
      font-weight: 700;
      text-align: right;
      text-decoration-thickness: 2px;
    }

    .meaning {
      position: relative;
      margin-top: 32px;
      padding: 28px 23px 26px;
      border-radius: 10px 10px 0 0;
      background: #fff;
      box-shadow: 0 3px 8px rgba(30,50,70,.16);
      color: #33383d;
      font-size: 17px;
      line-height: 1.46;
    }

    .meaning:before {
      content: "";
      position: absolute;
      top: -20px;
      left: 50%;
      width: 40px;
      height: 40px;
      background: #fff;
      transform: translateX(-50%) rotate(45deg);
    }

    .icon {
      width: 28px;
      height: 28px;
      position: relative;
      flex: 0 0 28px;
      display: block;
      justify-self: center;
      align-self: center;
    }

    .monitor:before {
      content: "";
      position: absolute;
      left: 2px;
      top: 3px;
      width: 21px;
      height: 14px;
      border: 1.8px solid #555;
      border-radius: 2px;
    }

    .monitor:after {
      content: "";
      position: absolute;
      left: 7px;
      top: 18px;
      width: 13px;
      height: 6px;
      background:
        linear-gradient(#555,#555) center top / 2px 5px no-repeat,
        linear-gradient(#555,#555) center bottom / 13px 2px no-repeat;
    }

    .ear:before,
    .ear:after,
    .book:before,
    .book:after,
    .pen:before,
    .pen:after,
    .bubble:before,
    .bubble:after {
      content: "";
      position: absolute;
      border-color: var(--pink);
    }

    .ear:before {
      left: 8px;
      top: 4px;
      width: 12px;
      height: 17px;
      border: 2px solid var(--pink);
      border-left-color: transparent;
      border-radius: 50%;
      transform: rotate(-8deg);
    }

    .ear:after {
      left: 11px;
      top: 8px;
      width: 7px;
      height: 9px;
      border: 2px solid var(--pink);
      border-left: 0;
      border-bottom: 0;
      border-radius: 50%;
    }

    .book:before {
      left: 7px;
      top: 4px;
      width: 14px;
      height: 18px;
      border: 2px solid var(--pink);
      border-right: 0;
      border-radius: 2px;
    }

    .book:after {
      left: 8px;
      top: 21px;
      width: 15px;
      height: 3px;
      border-bottom: 2px solid var(--pink);
      border-left: 2px solid var(--pink);
    }

    .pen:before {
      left: 11px;
      top: 4px;
      width: 5px;
      height: 18px;
      border: 2px solid var(--pink);
      border-radius: 2px;
    }

    .pen:after {
      left: 8px;
      top: 20px;
      width: 12px;
      height: 6px;
      border-left: 2px solid var(--pink);
      border-bottom: 2px solid var(--pink);
      transform: skewX(-18deg);
    }

    .bubble:before {
      left: 4px;
      top: 6px;
      width: 21px;
      height: 14px;
      border: 2px solid var(--pink);
      border-radius: 2px;
    }

    .bubble:after {
      left: 7px;
      top: 19px;
      width: 7px;
      height: 7px;
      border-left: 2px solid var(--pink);
      border-bottom: 2px solid var(--pink);
      background: #fff;
      transform: skew(-22deg);
    }

    .ear:before,
    .ear:after,
    .book:before,
    .book:after,
    .pen:before,
    .pen:after,
    .bubble:before,
    .bubble:after {
      content: none;
    }

    .score-row .ear,
    .score-row .book,
    .score-row .pen,
    .score-row .bubble {
      background-repeat: no-repeat;
      background-position: center;
      background-size: 23px 23px;
    }

    .score-row .ear {
      background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.4 13.4c0-5.1 3.3-8.4 7.7-8.4 4.1 0 7.1 2.8 7.1 6.5 0 2.8-1.5 4.4-3.3 5.5-1.5.9-2 1.6-2 2.9 0 1.8-1.3 3.1-3.2 3.1-1.6 0-2.8-.9-3.2-2.4' stroke='%23d91350' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.8 12.2c0-2.2 1.5-3.7 3.6-3.7 1.9 0 3.3 1.3 3.3 3.1 0 1.6-1 2.4-2.2 3.1' stroke='%23d91350' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.8 9.6c.5-2.2 1.8-4.2 3.7-5.4M5 17.4c.2 3.3 2.4 5.8 5.4 6.3' stroke='%23d91350' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .score-row .book {
      background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5.5h12.5v16H8V5.5Z' stroke='%23d91350' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M8 21.5h14M8 5.5v18h14M11.5 5.5v16' stroke='%23d91350' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .score-row .pen {
      background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 4.5h5v16.8L15.5 24 13 21.3V4.5Z' stroke='%23d91350' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M12.2 8.5h6.6M11 24h9M10 20.5h3' stroke='%23d91350' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }

    .score-row .bubble {
      background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7h17v12.5H11l-5.5 4V7Z' stroke='%23d91350' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 7h.1' stroke='%23d91350' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    }

    @media (max-width: 380px) {
      .topbar { padding: 0 17px; }
      .ielts { font-size: 27px; margin-left: 5px; }
      .menu { font-size: 18px; }
      .signin-bg { padding-left: 24px; padding-right: 24px; }
      .content, .full { padding-left: 18px; padding-right: 18px; }
      .big-title { font-size: 27px; }
      .hero h1 { font-size: 33px; }
      .section-title { font-size: 23px; }
      .card-title { font-size: 21px; }
      .two-col { grid-template-columns: minmax(0, 1fr) 82px; }
      .score-row.changed {
        grid-template-columns: 32px minmax(0,1fr) 66px 42px;
        gap: 8px;
        font-size: 18px;
      }
    }
