
    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

    :root {
      --bg: #f7fbff;
      --surface: rgba(255, 255, 255, 0.86);
      --surface-strong: #ffffff;
      --text: #112647;
      --muted: #5c6c84;
      --green: #15944b;
      --green-dark: #0f7c3f;
      --line: rgba(17, 38, 71, 0.1);
      --shadow: 0 18px 50px rgba(39, 77, 129, 0.14);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Segoe UI", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(31, 176, 91, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(47, 119, 255, 0.12), transparent 26%),
        radial-gradient(circle at 20% 78%, rgba(252, 174, 37, 0.12), transparent 22%),
        linear-gradient(180deg, #fcfeff 0%, #f2f7fd 100%);
    }

    .shell {
      width: min(1122px, calc(100% - 48px));
      margin: 0 auto;
    }

    .topbar, .brand, .links, .links a, .btn {
      font-family: 'Outfit', "Segoe UI", Arial, sans-serif;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(20px);
      background: rgba(255, 255, 255, 0.85);
      border-bottom: 1px solid rgba(17, 38, 71, 0.08);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      min-height: 70px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: var(--text);
      text-decoration: none;
    }

    .brand-logo {
      width: 42px;
      height: 42px;
      display: block;
      flex: 0 0 auto;
      border-radius: 11px;
      object-fit: contain;
      background: #fff;
      box-shadow: 0 5px 14px rgba(17, 38, 71, 0.12);
    }

    .brand span:last-child {
      color: var(--green);
    }

    .links {
      display: flex;
      align-items: center;
      gap: 28px;
      font-size: 15px;
      font-weight: 600;
    }

    .links a {
      color: var(--muted);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 6px 0;
      position: relative;
    }

    .links a:hover,
    .links a.active {
      color: var(--text);
    }

    .links a.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
    }

    .footer-col a,
    .trend a {
      color: inherit;
      text-decoration: none;
    }

    .actions {
      display: flex;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 44px;
      padding: 0 22px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 700;
      border: 1px solid transparent;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-primary {
      background: linear-gradient(180deg, #19a755 0%, #118742 100%);
      color: #fff;
      box-shadow: 0 8px 20px rgba(21, 148, 75, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(21, 148, 75, 0.3);
    }

    .btn-secondary {
      background: #fff;
      border-color: rgba(21, 148, 75, 0.25);
      color: var(--green-dark);
    }

    .btn-secondary:hover {
      background: rgba(21, 148, 75, 0.05);
      transform: translateY(-2px);
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(420px, 1fr) 286px 285px;
      gap: 18px;
      padding: 24px 0 20px;
      align-items: start;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(21, 148, 75, 0.1);
      color: var(--green-dark);
      font-weight: 700;
      font-size: 12px;
    }

    h1 {
      margin: 14px 0 12px;
      font-size: clamp(42px, 4.8vw, 60px);
      line-height: 1.04;
      letter-spacing: -0.05em;
    }

    h1 .accent {
      color: var(--green);
    }

    .lead {
      margin: 0;
      max-width: 640px;
      font-size: 13px;
      line-height: 1.7;
      color: var(--muted);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }

    .play {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid #1fa856;
      position: relative;
    }

    .play::before {
      content: "";
      position: absolute;
      left: 10px;
      top: 6px;
      border-left: 10px solid #1fa856;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(90px, 1fr));
      gap: 14px;
      margin-top: 28px;
    }

    .stat {
      display: grid;
      gap: 8px;
      align-content: start;
    }

    .stat-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      font-size: 28px;
    }

    .stat strong {
      font-size: 16px;
      color: var(--green);
    }

    .stat span {
      color: var(--muted);
      font-size: 12px;
    }

    .glass {
      background: var(--surface);
      border: 1px solid rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow);
    }

    .phone-wrap {
      display: flex;
      justify-content: center;
      width: 286px;
    }

    .phone {
      width: 286px;
      border-radius: 34px;
      background: #111;
      padding: 8px;
      box-shadow: 0 30px 60px rgba(11, 30, 55, 0.28);
    }

    .phone-screen {
      background: #fff;
      border-radius: 27px;
      overflow: hidden;
      min-height: 566px;
      border: 1px solid rgba(17, 38, 71, 0.08);
    }

    .statusbar,
    .match-head,
    .score-line,
    .team-row,
    .score-boxes,
    .table-head,
    .table-row,
    .over-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .statusbar {
      padding: 12px 14px 4px;
      font-size: 11px;
      font-weight: 700;
    }

    .match-head {
      padding: 6px 14px 10px;
      font-size: 11px;
    }

    .live-tag {
      background: #ff4a4a;
      color: #fff;
      border-radius: 999px;
      padding: 3px 8px;
      font-size: 9px;
      font-weight: 800;
    }

    .match-area {
      padding: 0 14px 14px;
    }

    .center {
      text-align: center;
    }

    .team-row {
      margin-top: 8px;
      gap: 12px;
      justify-content: center;
    }

    .logo {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 800;
      color: #fff;
    }

    .logo.left {
      background: linear-gradient(135deg, #1d1d1d, #8f6d27);
    }

    .logo.right {
      background: linear-gradient(135deg, #0c7d3b, #f5b73d);
    }

    .score-line {
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .overs,
    .toss {
      text-align: center;
      color: var(--muted);
      font-size: 11px;
    }

    .score-boxes {
      gap: 8px;
      margin: 12px 0;
    }

    .score-box {
      flex: 1;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      display: grid;
      gap: 6px;
    }

    .score-box small,
    .table-head,
    .section-label,
    .side-card small {
      color: #7a879b;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .score-box strong {
      font-size: 20px;
    }

    .mini-table {
      border-radius: 14px;
      background: #f7f9fc;
      padding: 10px;
    }

    .table-head,
    .table-row {
      gap: 8px;
    }

    .table-head span:first-child,
    .table-row span:first-child {
      flex: 1.7;
    }

    .table-head span,
    .table-row span {
      flex: 0.55;
      text-align: center;
      font-size: 10px;
    }

    .table-row {
      padding: 6px 0;
      border-top: 1px solid rgba(17, 38, 71, 0.08);
      font-size: 11px;
    }

    .over-row {
      gap: 8px;
      justify-content: flex-start;
      margin-top: 10px;
    }

    .ball {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 10px;
      font-weight: 800;
      color: #fff;
      background: #c4cad4;
    }

    .ball.green {
      background: #2ec060;
    }

    .ball.red {
      background: #f34f4f;
    }

    .side-cards {
      display: grid;
      width: 285px;
      gap: 14px;
      justify-self: end;
      align-self: start;
    }

    .side-card {
      padding: 16px 18px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
    }

    .side-card strong {
      display: block;
      margin-top: 6px;
      font-size: 18px;
    }

    .sparkline {
      height: 48px;
      margin-top: 10px;
      background:
        linear-gradient(180deg, rgba(21, 148, 75, 0.18), transparent),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 70'%3E%3Cpath d='M6 57 C20 65, 24 42, 41 48 S67 31, 80 36 S101 18, 119 22 S144 42, 160 30 S188 12, 214 18' fill='none' stroke='%2319a755' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
    }

    .partnership {
      margin-top: 12px;
      font-size: 12px;
      color: var(--muted);
    }

    .batter {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 10px;
    }

    .avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #ffcf9d 0 17%, #68411f 18% 20%, transparent 21%),
        radial-gradient(circle at 50% 40%, #1b4d88 0 27%, transparent 28%),
        linear-gradient(180deg, #214980, #0b3569);
      position: relative;
      overflow: hidden;
    }

    .avatar::after {
      content: "";
      position: absolute;
      inset: 28px 8px 0;
      border-radius: 999px 999px 0 0;
      background: #f0d2b0;
    }

    .feature-strip,
    .drs-grid,
    .community {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .feature-strip {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      padding: 14px;
      border-radius: 20px;
    }

    .feature-card,
    .drs-card,
    .community-panel {
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.92);
      box-shadow: var(--shadow);
    }

    .feature-card {
      padding: 14px 10px;
      text-align: center;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.88));
    }

    .feature-icon {
      width: 44px;
      height: 44px;
      margin: 0 auto 10px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 22px;
      font-weight: 800;
    }

    .teal { background: linear-gradient(135deg, #1ad0a6, #08997f); }
    .orange { background: linear-gradient(135deg, #ff8a3d, #ff4b2f); }
    .purple { background: linear-gradient(135deg, #b36aff, #7435d0); }
    .blue { background: linear-gradient(135deg, #58b8ff, #2477de); }
    .pink { background: linear-gradient(135deg, #ff5fa1, #e03067); }
    .gold { background: linear-gradient(135deg, #ffd261, #f1a813); }

    .feature-card h3,
    .drs-card h3,
    .community-panel h3 {
      margin: 0 0 8px;
      font-size: 16px;
      letter-spacing: -0.03em;
    }

    .feature-card h3 {
      font-size: 16px;
    }

    .feature-card p,
    .drs-card p,
    .section-copy,
    .community-panel p,
    .footer-note {
      margin: 0;
      color: var(--muted);
      line-height: 1.5;
    }

    .feature-card h3 {
      font-size: 22px;
      line-height: 1.15;
    }

    .feature-card p {
      font-size: 13px;
      line-height: 1.55;
    }

    .section-title {
      margin: 18px 0 4px;
      text-align: center;
      font-size: 22px;
      letter-spacing: -0.04em;
    }

    .section-copy {
      text-align: center;
      font-size: 13px;
    }

    .drs-grid {
      grid-template-columns: repeat(6, minmax(0, 1fr));
      margin-top: 20px;
    }

    .drs-card {
      overflow: hidden;
    }

    .drs-card .head {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      font-weight: 700;
      font-size: 13px;
    }

    .dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-block;
      background: radial-gradient(circle at 35% 35%, #fff 0 15%, transparent 16%),
        linear-gradient(135deg, #7c61ff, #4f31c8);
    }

    .dot.greenish { background: linear-gradient(135deg, #86f58e, #08a64f); }
    .dot.orangeish { background: linear-gradient(135deg, #ffd063, #ff8b2c); }
    .dot.redish { background: linear-gradient(135deg, #ffb190, #ff5e42); }
    .dot.pinkish { background: linear-gradient(135deg, #ff92ab, #ff4664); }
    .dot.blueish { background: linear-gradient(135deg, #9bd3ff, #2e82ff); }

    .drs-image {
      height: 126px;
      position: relative;
      overflow: hidden;
      background-image:
        linear-gradient(180deg, rgba(8, 16, 28, 0.06), rgba(8, 16, 28, 0.18)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 180'%3E%3Cdefs%3E%3ClinearGradient id='sky' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%2308141f'/%3E%3Cstop offset='55%25' stop-color='%23102b49'/%3E%3Cstop offset='100%25' stop-color='%2329472f'/%3E%3C/linearGradient%3E%3CradialGradient id='light' cx='50%25' cy='18%25' r='45%25'%3E%3Cstop offset='0%25' stop-color='%233786d4' stop-opacity='.45'/%3E%3Cstop offset='100%25' stop-color='%233786d4' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='1200' height='180' fill='url(%23sky)'/%3E%3Crect width='1200' height='180' fill='url(%23light)'/%3E%3Cg fill='%23ffffff' opacity='.14'%3E%3Ccircle cx='60' cy='20' r='2'/%3E%3Ccircle cx='90' cy='24' r='2'/%3E%3Ccircle cx='130' cy='18' r='1.8'/%3E%3Ccircle cx='1030' cy='22' r='2'/%3E%3Ccircle cx='1080' cy='28' r='1.8'/%3E%3Ccircle cx='1130' cy='20' r='2'/%3E%3C/g%3E%3Crect y='108' width='1200' height='72' fill='%233f6f3b'/%3E%3Crect y='104' width='1200' height='4' fill='%237ca26b' opacity='.45'/%3E%3Cellipse cx='108' cy='112' rx='74' ry='18' fill='%233f6c37'/%3E%3Cellipse cx='324' cy='112' rx='76' ry='18' fill='%233f6c37'/%3E%3Cellipse cx='564' cy='112' rx='76' ry='18' fill='%233f6c37'/%3E%3Cellipse cx='790' cy='112' rx='70' ry='18' fill='%233f6c37'/%3E%3Cellipse cx='1018' cy='112' rx='76' ry='18' fill='%233f6c37'/%3E%3Cellipse cx='1142' cy='112' rx='44' ry='18' fill='%233f6c37'/%3E%3Crect x='82' y='94' width='52' height='70' fill='%2380512e'/%3E%3Crect x='102' y='58' width='7' height='54' fill='%23e6a83d'/%3E%3Crect x='88' y='62' width='7' height='50' fill='%23e6a83d'/%3E%3Crect x='116' y='62' width='7' height='50' fill='%23e6a83d'/%3E%3Cpath d='M14 128 C36 92, 58 70, 91 64' fill='none' stroke='%23ff784f' stroke-width='3'/%3E%3Ccircle cx='90' cy='64' r='4' fill='%23d5382a'/%3E%3Cpath d='M220 128 C250 86, 290 46, 340 36 C376 30, 412 40, 436 62' fill='none' stroke='%239f7cff' stroke-width='3.5'/%3E%3Cpath d='M220 128 C246 92, 282 62, 316 56 C352 52, 390 68, 420 92' fill='none' stroke='%2365d0ff' stroke-width='3'/%3E%3Crect x='488' y='118' width='150' height='2' fill='%23ffffff' opacity='.45'/%3E%3Cg stroke='%23ffffff' opacity='.65'%3E%3Cpath d='M492 134 L504 116 L516 140 L528 108 L540 142 L552 112 L564 140 L576 100 L588 142 L600 116 L612 138 L624 120 L636 134' fill='none' stroke-width='2'/%3E%3C/g%3E%3Ccircle cx='568' cy='70' r='23' fill='none' stroke='%23ffffff' stroke-width='2.5' opacity='.9'/%3E%3Crect x='738' y='94' width='52' height='70' fill='%2380512e'/%3E%3Crect x='758' y='58' width='7' height='54' fill='%23e6a83d'/%3E%3Crect x='744' y='62' width='7' height='50' fill='%23e6a83d'/%3E%3Crect x='772' y='62' width='7' height='50' fill='%23e6a83d'/%3E%3Ccircle cx='808' cy='96' r='24' fill='none' stroke='%23ffffff' stroke-width='2.5' opacity='.9'/%3E%3Crect x='704' y='114' width='66' height='8' fill='%23a26d3a' transform='rotate(-22 704 114)'/%3E%3Cpath d='M874 132 C900 122, 934 120, 970 122' fill='none' stroke='%23ffffff' stroke-width='2' opacity='.6'/%3E%3Crect x='912' y='48' width='34' height='72' fill='%230d4f94' transform='rotate(16 912 48)'/%3E%3Ccircle cx='952' cy='120' r='9' fill='%23cd342f'/%3E%3Cpath d='M1028 124 C1056 94, 1094 56, 1142 34 C1166 24, 1180 20, 1192 18' fill='none' stroke='%23bf81ff' stroke-width='3.5'/%3E%3Cpath d='M1036 126 C1068 104, 1102 88, 1136 88' fill='none' stroke='%2350d1ff' stroke-width='2.8'/%3E%3Crect x='1100' y='92' width='18' height='54' fill='%231b68af'/%3E%3Crect x='1116' y='78' width='9' height='74' fill='%23d1a03f' transform='rotate(22 1116 78)'/%3E%3C/svg%3E");
      background-size: auto, 620% 100%;
      background-position: center, var(--sprite-x, 0%) 50%;
      background-repeat: no-repeat;
    }

    .drs-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08));
    }

    .lbw-shot { --sprite-x: 0%; }
    .track-shot { --sprite-x: 20%; }
    .edge-shot { --sprite-x: 40%; }
    .runout-shot { --sprite-x: 60%; }
    .noball-shot { --sprite-x: 80%; }
    .fulltoss-shot { --sprite-x: 100%; }

    .drs-body {
      padding: 10px 12px 14px;
    }

    .community {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 28px;
      align-items: stretch;
    }

    .community-panel {
      
      padding: 20px;
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95));
      border: 1px solid rgba(226, 234, 245, 0.95);
      box-shadow: 0 18px 40px rgba(18, 43, 79, 0.08);
      overflow: hidden;
      position: relative;
      height: 100%;
    }

    .community-intro,
    .post,
    .live-stream {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .community-intro {
      gap: 16px;
    }

    .intro-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 24px;
      color: #fff;
      background: linear-gradient(135deg, #2b72f0, #1557db);
      box-shadow: 0 12px 24px rgba(36, 119, 222, 0.2);
    }

    .community-intro h3 {
      margin: 0;
      font-size: 26px;
      line-height: 1.14;
      letter-spacing: -0.04em;
    }

    .community-intro h3 span {
      color: #1d63f2;
    }

    .community-intro p {
      margin: 0;
      color: #53657e;
      font-size: 15px;
      line-height: 1.6;
    }

    .intro-art {
      height: 220px;
      border-radius: 22px;
      border: 1px solid rgba(224, 232, 244, 0.96);
      background: url("images/hero-social-community.png") ;
      background-repeat: no-repeat;
    background-size: cover;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .intro-top {
      display: grid;
      gap: 16px;
    }

    .hero-bat,
    .hero-ball {
      display: none;
    }

    .community-feature-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .community-feature {
      padding: 16px 14px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(227, 235, 246, 0.95);
      box-shadow: 0 8px 20px rgba(18, 43, 79, 0.05);
    }

    .feature-chip {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 20px;
      background: linear-gradient(135deg, rgba(36, 119, 222, 0.12), rgba(19, 166, 96, 0.08));
    }

    .community-feature strong {
      display: block;
      margin-top: 12px;
      font-size: 15px;
      letter-spacing: -0.02em;
    }

    .community-feature p {
      margin: 6px 0 0;
      color: #53657e;
      font-size: 13px;
      line-height: 1.55;
    }

    .join-community-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      min-height: 58px;
      width: 100%;
      margin-top: auto;
      border-radius: 16px;
      background: linear-gradient(135deg, #276ef1, #1257df);
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      font-weight: 800;
      box-shadow: 0 14px 28px rgba(36, 119, 222, 0.24);
    }

    .members-strip {
      margin-top: 16px;
      border-top: 1px solid rgba(226, 235, 246, 0.96);
      padding-top: 16px;
      display: grid;
      gap: 12px;
    }

    .members-strip strong {
      font-size: 15px;
      letter-spacing: -0.02em;
    }

    .member-list {
      display: flex;
      align-items: center;
    }

    .member-list .avatar {
      width: 44px;
      height: 44px;
      border: 3px solid #fff;
      margin-left: -10px;
      box-shadow: 0 8px 18px rgba(18, 43, 79, 0.12);
    }

    .member-list .avatar:first-child {
      margin-left: 0;
    }

    .member-count {
      width: 50px;
      height: 50px;
      margin-left: 8px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #f2f7ff, #e6eefc);
      border: 1px solid rgba(215, 227, 245, 0.95);
      color: #246ef1;
      font-size: 15px;
      font-weight: 800;
    }

    .post {
      gap: 14px;
    }

    .post-top,
    .promo-row,
    .footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .post-user {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .post-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      padding: 2px;
      background: linear-gradient(135deg, #1b63f0, #ff5a39);
    }

    .post-avatar .avatar {
      width: 100%;
      height: 100%;
      border: 2px solid #fff;
    }

    .post-name {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .post-meta {
      margin-top: 4px;
      color: #60728d;
      font-size: 13px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .post-menu {
      color: #667a98;
      font-size: 26px;
      line-height: 1;
    }

    .post-copy {
      font-size: 18px;
      line-height: 1.5;
      color: #132c56;
      font-weight: 600;
    }

    .post-tags {
      margin-top: 8px;
      color: #1f66f2;
      font-weight: 700;
      font-size: 14px;
      line-height: 1.6;
    }

    .post-image {
      height: 240px;
      border-radius: 22px;
      overflow: hidden;
    }

    .post-image.real-post {
      border: 1px solid rgba(220, 229, 241, 0.9);
      background: linear-gradient(135deg, #f8fafd, #f2f7fc);
      color: #132d49;
      display: flex;
      flex-direction: column;
      padding: 18px;
      justify-content: space-between;
      height: auto;
      min-height: 220px;
    }

    .post-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      color: #60728d;
      font-weight: 700;
      font-size: 15px;
    }

    .comment-bar {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .comment-input {
      flex: 1;
      min-height: 50px;
      border-radius: 16px;
      border: 1px solid rgba(223, 232, 243, 0.96);
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      color: #647893;
    }

    .live-now-card {
      margin-top: auto;
      padding: 16px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(243, 248, 255, 0.98), rgba(236, 244, 255, 0.96));
      border: 1px solid rgba(222, 232, 244, 0.95);
      display: grid;
      gap: 12px;
    }

    .live-now-pill {
      width: fit-content;
      color: #ff2b2b;
      font-size: 13px;
      font-weight: 800;
    }

    .live-now-body {
      display: grid;
      gap: 10px;
    }

    .live-now-title {
      font-size: 20px;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
      color: #122b57;
    }

    .live-now-subtitle,
    .watching-row {
      margin-top: 6px;
      color: #52657f;
      font-size: 14px;
    }

    .live-teams {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #122b57;
      font-size: 14px;
      font-weight: 800;
    }

    .team-logo {
      min-width: 74px;
      min-height: 38px;
      padding: 0 10px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      text-align: center;
      line-height: 1;
    }

    .team-logo.titans { background: linear-gradient(135deg, #153f98, #0a1e4a); }
    .team-logo.warriors { background: linear-gradient(135deg, #d39b1a, #6d4a00); }
    .team-logo.royals { background: linear-gradient(135deg, #2047a8, #0b255e); }
    .team-logo.strikers { background: linear-gradient(135deg, #27a2ff, #0f4f9f); }
    .team-logo.kings { background: linear-gradient(135deg, #db2b2b, #7b1010); }
    .team-logo.challengers { background: linear-gradient(135deg, #353535, #121212); }

    .watch-live-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, #246ef1, #1256df);
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      font-weight: 800;
    }

    .stream-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      color: #ff2727;
      font-size: 16px;
      font-weight: 800;
    }

    .stream-pill::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ff2727;
      box-shadow: 0 0 0 4px rgba(255, 39, 39, 0.14);
    }

    .stream-head strong {
      display: block;
      font-size: 24px;
      line-height: 1.15;
      letter-spacing: -0.04em;
      color: #0f224a;
    }

    .stream-head span {
      display: block;
      margin-top: 8px;
      color: #4c5f7a;
      font-size: 15px;
      line-height: 1.55;
    }

    .stream-preview {
      position: relative;
      height: 220px;
      margin-top: 14px;
      border-radius: 22px;
      overflow: hidden;
      background: url("images/live.png");
      background-repeat: no-repeat;
      background-size: center;
      
    }

    .stream-badge {
      position: absolute;
      left: 14px;
      top: 14px;
      min-height: 34px;
      padding: 0 14px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      background: #ff2f2f;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
    }

    .stream-play {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 70px;
      height: 70px;
      margin: -35px 0 0 -35px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 12px 26px rgba(10, 22, 44, 0.18);
    }

    .stream-play::before {
      content: "";
      position: absolute;
      left: 29px;
      top: 23px;
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 18px solid #1a56db;
    }

    .stream-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 56px;
      width: 100%;
      margin-top: 14px;
      border-radius: 16px;
      border: 2px solid #2a6cf0;
      color: #1f63f2;
      text-decoration: none;
      font-size: 17px;
      font-weight: 800;
      background: #fff;
    }

    .stream-schedule-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      padding-top: 18px;
    }

    .stream-schedule-head strong {
      font-size: 18px;
      letter-spacing: -0.02em;
    }

    .stream-schedule-head a {
      color: #1f63f2;
      text-decoration: none;
      font-weight: 700;
    }

    .schedule-list {
      display: grid;
      gap: 12px;
      margin-top: 12px;
    }

    .schedule-item {
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(223, 232, 243, 0.96);
      background: #fff;
      display: grid;
      gap: 10px;
      box-shadow: 0 8px 20px rgba(18, 43, 79, 0.04);
    }

    .schedule-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .match-status {
      min-height: 28px;
      padding: 0 10px;
      border-radius: 9px;
      display: inline-flex;
      align-items: center;
      font-size: 12px;
      font-weight: 800;
      color: #fff;
    }

    .match-status.live { background: #ff2f2f; }
    .match-status.upcoming { background: #15a85c; }

    .schedule-action {
      width: 46px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(180deg, #eef4ff, #e7f0ff);
      display: grid;
      place-items: center;
      color: #2369f1;
      font-size: 22px;
      font-weight: 800;
    }

    .schedule-match {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 8px;
      align-items: center;
    }

    .schedule-team {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 800;
      color: #132c56;
    }

    .schedule-team.right {
      justify-content: flex-end;
      text-align: right;
    }

    .schedule-team .team-logo {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      font-size: 10px;
    }

    .versus {
      font-size: 18px;
      font-weight: 800;
      color: #132c56;
    }

    .schedule-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #50627e;
      font-size: 13px;
    }

    .schedule-meta span:last-child {
      font-weight: 700;
      color: #243955;
    }

    .tournament-showcase {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      margin: 22px 0 30px;
      align-items: stretch;
    }

    .showcase-card {
      position: relative;
      min-height: 630px;
      padding: 28px 28px 24px;
      border-radius: 28px;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 0%, rgba(244, 205, 160, 0.2), transparent 34%),
        linear-gradient(180deg, #ffffff, #fbfcff 72%, #f7f9fd);
      border: 1px solid rgba(230, 236, 245, 1);
      box-shadow: 0 16px 38px rgba(18, 43, 79, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.92);
      display: flex;
      flex-direction: column;
      gap: 14px;
      font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    }

    .showcase-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 180px;
      background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.44));
      pointer-events: none;
    }

    .showcase-icon {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(36, 119, 222, 0.16);
    }

    .showcase-card.analytics .showcase-icon {
      background: linear-gradient(135deg, #4d8cff, #1358df);
    }

    .showcase-card.highlights .showcase-icon {
      background: linear-gradient(135deg, #cb7bff, #8f39cf);
    }

    .showcase-card.journey .showcase-icon {
      background: linear-gradient(135deg, #20ba61, #0a9750);
    }

    .showcase-card h3 {
      margin: 0;
      font-size: 22px;
      line-height: 1.18;
      letter-spacing: -0.05em;
      color: #132d49;
    }

    .showcase-card p {
      margin: 0;
      max-width: 340px;
      color: #53657c;
      font-size: 14px;
      line-height: 1.5;
    }

    .analytics-visual {
      position: relative;
      flex: 1;
      min-height: 398px;
      margin-top: 8px;
    }

    .analytics-halo {
      position: absolute;
      right: -38px;
      top: 88px;
      width: 356px;
      height: 356px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(52, 122, 255, 0.11), rgba(52, 122, 255, 0.02) 62%, transparent 64%);
    }

    .analytics-phone {
      position: absolute;
      right: 28px;
      top: 8px;
      width: 196px;
      height: 410px;
      border-radius: 30px;
      padding: 12px;
      background: linear-gradient(180deg, #071628, #0c2038 52%, #091325);
      box-shadow: 0 22px 42px rgba(7, 22, 40, 0.26);
      border: 1px solid rgba(194, 216, 255, 0.08);
      z-index: 2;
    }

    .analytics-phone::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 10px;
      width: 84px;
      height: 8px;
      margin-left: -42px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
    }

    .analytics-screen {
      height: 100%;
      border-radius: 22px;
      padding: 22px 16px 18px;
      color: #f5f8ff;
      background:
        radial-gradient(circle at 70% 16%, rgba(64, 131, 255, 0.22), transparent 32%),
        linear-gradient(180deg, #081524, #10263d 62%, #0a1828);
      display: grid;
      grid-template-rows: auto auto auto 1fr auto;
      gap: 13px;
    }

    .score-block small,
    .metric-label,
    .heatmap-labels {
      color: rgba(230, 238, 255, 0.72);
    }

    .score-block strong {
      display: block;
      margin-top: 6px;
      font-size: 40px;
      letter-spacing: -0.05em;
    }

    .score-block span {
      font-size: 18px;
      font-weight: 700;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      font-weight: 700;
    }

    .metric-grid strong {
      display: block;
      margin-top: 6px;
      font-size: 17px;
    }

    .heatmap {
      position: relative;
      border-radius: 18px;
      background:
        radial-gradient(circle at 50% 100%, rgba(104, 206, 74, 0.36), transparent 36%),
        radial-gradient(circle at 50% 86%, rgba(243, 172, 48, 0.34), transparent 28%),
        radial-gradient(circle at 50% 72%, rgba(238, 62, 62, 0.24), transparent 16%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      border: 1px solid rgba(255, 255, 255, 0.08);
      overflow: hidden;
      min-height: 154px;
    }

    .heatmap::before,
    .heatmap::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 50%;
      border: 1px solid rgba(149, 189, 255, 0.26);
    }

    .heatmap::before {
      bottom: -34px;
      width: 180px;
      height: 180px;
    }

    .heatmap::after {
      bottom: 8px;
      width: 88px;
      height: 88px;
    }

    .heatmap-wicket {
      position: absolute;
      left: 50%;
      bottom: 16px;
      width: 22px;
      height: 44px;
      margin-left: -11px;
      background:
        linear-gradient(90deg, #f0b84e 0 4px, transparent 4px 9px, #f0b84e 9px 13px, transparent 13px 18px, #f0b84e 18px 22px);
    }

    .heatmap-dot {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--dot-color, #5cf36d);
      box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
    }

    .heatmap-labels {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      font-weight: 700;
    }

    .analytics-equipment {
      position: absolute;
      left: 6px;
      bottom: 0;
      width: 176px;
      height: 232px;
      z-index: 3;
    }

    .bat-illustration {
      position: absolute;
      left: 72px;
      bottom: 32px;
      width: 38px;
      height: 174px;
      border-radius: 18px 18px 12px 12px;
      background: linear-gradient(180deg, #f8e0aa, #e7bf70 68%, #ca9445);
      box-shadow: 0 18px 30px rgba(180, 120, 45, 0.24);
      transform: rotate(14deg);
      transform-origin: bottom center;
    }

    .bat-illustration::before {
      content: "";
      position: absolute;
      left: 12px;
      top: -44px;
      width: 14px;
      height: 54px;
      border-radius: 8px;
      background: linear-gradient(180deg, #1b77d2, #144ea0);
    }

    .helmet-illustration {
      position: absolute;
      left: 8px;
      bottom: 0;
      width: 92px;
      height: 64px;
      border-radius: 44px 44px 22px 22px;
      background: linear-gradient(180deg, #204996, #11285b);
      box-shadow: 0 18px 30px rgba(15, 36, 81, 0.24);
    }

    .helmet-illustration::before {
      content: "";
      position: absolute;
      left: 18px;
      right: 10px;
      bottom: -12px;
      height: 22px;
      border-radius: 0 0 20px 20px;
      border: 3px solid rgba(22, 33, 57, 0.72);
      border-top: none;
    }

    .ball-illustration {
      position: absolute;
      left: 126px;
      bottom: 6px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #ff7f73, #c8141b 72%);
      box-shadow: 0 14px 22px rgba(184, 23, 31, 0.28);
    }

    .showcase-list,
    .showcase-actions,
    .journey-links {
      display: grid;
      gap: 14px;
      position: relative;
      z-index: 1;
    }

    .showcase-list {
      margin-top: auto;
    }

    .showcase-list span,
    .showcase-actions span {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      color: #132c56;
      font-size: 15px;
    }

    .showcase-list span::before,
    .showcase-actions span::before {
      content: "✓";
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 13px;
      background: linear-gradient(135deg, #2f7df7, #1662e9);
    }

    .showcase-card.highlights .showcase-actions {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 18px;
      margin-top: auto;
    }

    .showcase-card.highlights .showcase-actions span::before {
      background: linear-gradient(135deg, #c979ff, #973fd7);
    }

    .showcase-card.journey .showcase-actions span::before {
      background: linear-gradient(135deg, #21b95f, #0e9851);
    }

    .showcase-button {
      min-height: 64px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      font-weight: 800;
      position: relative;
      z-index: 1;
      box-shadow: 0 18px 30px rgba(17, 61, 145, 0.18);
      margin-top: auto;
    }

    .showcase-card.analytics .showcase-button {
      background: linear-gradient(135deg, #216df3, #0f57de);
    }

    .showcase-card.highlights .showcase-button {
      background: linear-gradient(135deg, #aa56e6, #7e2dc5);
    }

    .showcase-card.journey .showcase-button {
      background: linear-gradient(135deg, #13aa55, #08914a);
    }

    .highlights-visual {
      position: relative;
      flex: 1;
      min-height: 358px;
      margin-top: 2px;
      display: grid;
      align-content: center;
    }

    .highlights-glow {
      position: absolute;
      right: 18px;
      bottom: 18px;
      width: 220px;
      height: 220px;
      border-radius: 32px;
      background: linear-gradient(135deg, rgba(204, 130, 255, 0.28), rgba(148, 76, 230, 0.08));
      filter: blur(2px);
    }

    .highlight-player-frame {
      position: relative;
      border-radius: 28px;
      padding: 14px;
      background: linear-gradient(180deg, #0d1a2e, #13284a);
      box-shadow: 0 22px 40px rgba(15, 23, 45, 0.24);
      overflow: hidden;
      z-index: 1;
    }

    .highlight-player-frame::before {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 20px;
      background:
        radial-gradient(circle at 50% 0%, rgba(126, 196, 255, 0.56), transparent 28%),
        linear-gradient(180deg, #14345b, #091827 68%, #0b1524);
    }

    .highlight-badge {
      position: absolute;
      left: 28px;
      top: 28px;
      min-height: 34px;
      padding: 0 14px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      background: #f4c6ff;
      color: #6e2ab1;
      font-size: 13px;
      font-weight: 800;
      z-index: 2;
    }

    .stadium-lights {
      position: absolute;
      inset: 26px 24px auto;
      height: 68px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 18% 42%, rgba(255,255,255,0.92), transparent 12%),
        radial-gradient(circle at 50% 30%, rgba(255,255,255,0.92), transparent 12%),
        radial-gradient(circle at 82% 42%, rgba(255,255,255,0.92), transparent 12%);
      opacity: 0.75;
      z-index: 1;
    }

    .highlight-player {
      position: relative;
      width: 170px;
      height: 224px;
      margin: 40px auto 20px;
      z-index: 2;
    }

    .highlight-player .head {
      position: absolute;
      left: 82px;
      top: 18px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 35%, #f6d3ae, #c08357);
    }

    .highlight-player .helmet {
      position: absolute;
      left: 74px;
      top: 6px;
      width: 50px;
      height: 24px;
      border-radius: 18px 18px 8px 8px;
      background: linear-gradient(180deg, #164d98, #0d2f61);
    }

    .highlight-player .body {
      position: absolute;
      left: 58px;
      top: 46px;
      width: 54px;
      height: 96px;
      border-radius: 20px 20px 16px 16px;
      background: linear-gradient(180deg, #1f69bf, #0f407f);
      transform: skewX(-10deg);
    }

    .highlight-player .arm {
      position: absolute;
      width: 18px;
      height: 72px;
      border-radius: 999px;
      background: linear-gradient(180deg, #1f69bf, #0f407f);
      top: 48px;
    }

    .highlight-player .arm.left {
      left: 40px;
      transform: rotate(42deg);
      transform-origin: bottom center;
    }

    .highlight-player .arm.right {
      left: 102px;
      transform: rotate(-54deg);
      transform-origin: bottom center;
    }

    .highlight-player .leg {
      position: absolute;
      width: 24px;
      height: 102px;
      border-radius: 999px;
      top: 118px;
      background: linear-gradient(180deg, #1c5aa8, #0d3565);
    }

    .highlight-player .leg.left {
      left: 64px;
      transform: rotate(12deg);
    }

    .highlight-player .leg.right {
      left: 100px;
      transform: rotate(-8deg);
    }

    .highlight-player .bat {
      position: absolute;
      left: 106px;
      top: 18px;
      width: 18px;
      height: 132px;
      border-radius: 10px;
      background: linear-gradient(180deg, #f6ddb0, #d1a25b);
      transform: rotate(54deg);
      transform-origin: bottom center;
      box-shadow: 0 10px 20px rgba(205, 156, 73, 0.18);
    }

    .highlight-player .bat::before {
      content: "";
      position: absolute;
      left: 5px;
      top: -22px;
      width: 8px;
      height: 28px;
      border-radius: 8px;
      background: linear-gradient(180deg, #1d6ac8, #14529c);
    }

    .highlight-player .shadow {
      position: absolute;
      left: 32px;
      right: 20px;
      bottom: -4px;
      height: 18px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.22);
      filter: blur(8px);
    }

    .highlight-play {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 86px;
      height: 86px;
      margin: -44px 0 0 -43px;
      border-radius: 50%;
      border: 3px solid rgba(255,255,255,0.88);
      background: rgba(16, 26, 46, 0.32);
      z-index: 3;
    }

    .highlight-play::before {
      content: "";
      position: absolute;
      left: 34px;
      top: 25px;
      width: 0;
      height: 0;
      border-top: 14px solid transparent;
      border-bottom: 14px solid transparent;
      border-left: 20px solid #fff;
    }

    .highlight-progress {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 8px;
    }

    .progress-bar {
      position: relative;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.48);
      overflow: hidden;
    }

    .progress-bar::before {
      content: "";
      position: absolute;
      inset: 0 42% 0 0;
      border-radius: inherit;
      background: linear-gradient(90deg, #d46bff, #ae55f0);
    }

    .progress-time {
      display: flex;
      justify-content: space-between;
      color: rgba(255,255,255,0.88);
      font-size: 13px;
      font-weight: 700;
    }

    .highlight-thumbs {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 8px;
    }

    .highlight-thumb {
      border-radius: 14px;
      padding: 44px 10px 10px;
      min-height: 86px;
      color: rgba(255,255,255,0.9);
      font-size: 12px;
      font-weight: 800;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        linear-gradient(180deg, #14345b, #0b1524);
      border: 1px solid rgba(204, 176, 255, 0.32);
      position: relative;
      overflow: hidden;
    }

    .highlight-thumb::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 12%, rgba(126, 196, 255, 0.46), transparent 22%),
        linear-gradient(180deg, rgba(255,255,255,0), rgba(0,0,0,0.1));
      opacity: 0.88;
    }

    .highlight-thumb span {
      position: relative;
      z-index: 1;
    }

    .journey-visual {
      position: relative;
      flex: 1;
      min-height: 370px;
      margin-top: 4px;
    }

    .journey-ring {
      position: absolute;
      left: 50%;
      top: 8px;
      width: 286px;
      height: 286px;
      margin-left: -143px;
      border-radius: 50%;
      background:
        radial-gradient(circle at center, rgba(255,255,255,0.96) 0 31%, transparent 32%),
        conic-gradient(#11a653 0 84%, rgba(17,166,83,0.12) 84% 100%);
      box-shadow: inset 0 0 0 14px rgba(255,255,255,0.74);
    }

    .journey-ring::before {
      content: "";
      position: absolute;
      inset: 20px;
      border-radius: 50%;
      background: linear-gradient(180deg, #1eb55e, #11974f);
      opacity: 0.96;
    }

    .journey-center {
      position: absolute;
      left: 50%;
      top: 86px;
      width: 210px;
      margin-left: -105px;
      color: #fff;
      text-align: center;
      z-index: 2;
    }

    .journey-center strong {
      display: block;
      margin-top: 10px;
      font-size: 18px;
    }

    .journey-center .trophy-number {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 8px;
      font-size: 26px;
      font-weight: 900;
    }

    .journey-center .unlock-label {
      font-size: 14px;
      opacity: 0.94;
    }

    .journey-stat {
      position: absolute;
      min-width: 160px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.95);
      border: 1px solid rgba(221, 232, 242, 0.98);
      box-shadow: 0 16px 28px rgba(18, 43, 79, 0.08);
      z-index: 3;
    }

    .journey-stat small {
      display: block;
      color: #16a755;
      font-size: 12px;
      font-weight: 800;
    }

    .journey-stat strong {
      display: block;
      margin-top: 4px;
      color: #102a4a;
      font-size: 24px;
      letter-spacing: -0.04em;
    }

    .journey-stat.top-left { left: 6px; top: 120px; }
    .journey-stat.top-right { right: 6px; top: 120px; }

    .journey-stat.performance {
      left: 22px;
      bottom: 102px;
      min-width: 250px;
    }

    .journey-stat.consistency {
      right: 8px;
      bottom: 112px;
      min-width: 148px;
      text-align: center;
    }

    .performance-list {
      display: grid;
      gap: 8px;
      margin-top: 10px;
      color: #102a4a;
      font-weight: 700;
      font-size: 14px;
    }

    .performance-list div,
    .consistency-chart {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .consistency-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #16a755;
      font-size: 28px;
      background: linear-gradient(180deg, #f0fbf5, #e6f7ef);
    }

    .consistency-chart {
      justify-content: center;
      gap: 12px;
      margin-top: 12px;
      color: #102a4a;
      font-size: 14px;
      font-weight: 800;
    }

    .consistency-line {
      width: 70px;
      height: 22px;
      background:
        linear-gradient(180deg, rgba(17,166,83,0.15), transparent),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 28'%3E%3Cpath d='M3 22 L18 11 L33 18 L47 8 L62 14 L76 3 L87 8' fill='none' stroke='%2316a755' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    }

    .journey-links {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      margin-top: auto;
    }

    .journey-link {
      text-align: center;
      color: #102a4a;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.45;
    }

    .journey-link strong {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      margin: 0 auto 10px;
      border-radius: 14px;
      color: #13a856;
      font-size: 24px;
      background: linear-gradient(180deg, #eefbf4, #e1f7ec);
    }

    .showcase-list,
    .showcase-actions,
    .journey-links {
      gap: 12px;
    }

    .showcase-list span,
    .showcase-actions span {
      font-size: 14px;
      line-height: 1.4;
    }

    .showcase-list span::before,
    .showcase-actions span::before {
      content: "\2713";
      width: 22px;
      height: 22px;
      font-size: 12px;
    }

    .showcase-card.highlights .showcase-actions {
      gap: 12px 20px;
    }

    .showcase-button {
      min-height: 62px;
      border-radius: 16px;
      font-size: 16px;
      box-shadow: 0 14px 26px rgba(17, 61, 145, 0.16);
    }

    .highlights-visual {
      min-height: 370px;
      margin-top: 8px;
    }

    .highlights-glow {
      right: 14px;
      bottom: 10px;
      width: 230px;
      height: 230px;
      border-radius: 28px;
    }

    .highlight-player-frame {
      border-radius: 26px;
      padding: 12px;
    }

    .highlight-player-frame::before {
      inset: 12px;
      border-radius: 18px;
    }

    .highlight-badge {
      left: 24px;
      top: 22px;
      min-height: 32px;
      padding: 0 13px;
      border-radius: 11px;
    }

    .stadium-lights {
      height: 72px;
    }

    .highlight-player {
      width: 176px;
      height: 232px;
      margin: 42px auto 18px;
    }

    .highlight-play {
      width: 84px;
      height: 84px;
      margin: -42px 0 0 -42px;
    }

    .highlight-play::before {
      left: 33px;
      top: 24px;
    }

    .highlight-progress {
      gap: 10px;
    }

    .progress-bar {
      height: 8px;
    }

    .progress-time {
      font-size: 12px;
    }

    .highlight-thumbs {
      gap: 8px;
      margin-top: 6px;
    }

    .highlight-thumb {
      min-height: 82px;
      border-radius: 12px;
      padding: 46px 10px 10px;
      font-size: 11px;
    }

    .journey-visual {
      min-height: 394px;
      margin-top: 10px;
    }

    .journey-ring {
      width: 292px;
      height: 292px;
      margin-left: -146px;
    }

    .journey-center {
      top: 90px;
      width: 214px;
      margin-left: -107px;
    }

    .journey-center strong {
      font-size: 17px;
    }

    .journey-center .trophy-number {
      margin-top: 10px;
      font-size: 27px;
    }

    .journey-stat {
      min-width: 162px;
      padding: 15px 18px;
      border-radius: 16px;
    }

    .journey-stat strong {
      font-size: 22px;
    }

    .journey-stat.top-left { top: 124px; }
    .journey-stat.top-right { top: 124px; }

    .journey-stat.performance {
      left: 18px;
      bottom: 100px;
      min-width: 246px;
    }

    .journey-stat.consistency {
      right: 6px;
      min-width: 152px;
    }

    .performance-list {
      font-size: 13px;
    }

    .consistency-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      font-size: 24px;
    }

    .consistency-chart {
      font-size: 13px;
    }

    .journey-links {
      gap: 14px;
    }

    .journey-link {
      font-size: 12px;
    }

    .journey-link strong {
      width: 42px;
      height: 42px;
      margin: 0 auto 8px;
      border-radius: 12px;
      font-size: 22px;
    }

    .button-icon {
      font-size: 18px;
      line-height: 1;
    }

    .image-card {
      padding: 14px 14px 18px;
      gap: 14px;
      min-height: 0;
      justify-content: space-between;
    }

    .image-card::after {
      display: none;
    }

    .showcase-art {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 20px;
    }

    .showcase-frame {
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(227, 235, 246, 0.96);
      box-shadow: 0 14px 28px rgba(18, 43, 79, 0.06);
    }

    .showcase-card.highlights {
      justify-content: flex-start;
    }

    .showcase-card.highlights .showcase-frame {
      margin-top: 2px;
    }

    .showcase-card.highlights .showcase-actions {
      gap: 10px 16px;
      margin-top: 2px;
    }

    .showcase-card.journey {
      justify-content: flex-start;
    }

    .showcase-card.journey .showcase-frame {
      margin-top: 6px;
      box-shadow: none;
      border: none;
      background: transparent;
    }

    .showcase-card.analytics .showcase-art,
    .showcase-card.journey .showcase-art {
      width: calc(100% - 8px);
      margin: 0 auto;
    }

    .showcase-card.journey .showcase-art {
      width: 100%;
      margin-top: 0;
    }

    footer {
      background: linear-gradient(180deg, #0d6f50, #04453a);
      color: rgba(255, 255, 255, 0.92);
      margin-top: 24px;
    }

    .footer {
      align-items: flex-start;
      padding: 20px 0 22px;
    }

    .footer-brand {
      max-width: 270px;
    }

    .footer-brand .brand {
      font-size: 22px;
      color: #fff;
    }

    .footer-brand .brand span:last-child {
      color: #5fe28f;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(120px, 1fr));
      gap: 26px;
      flex: 1;
    }

    .footer-col {
      display: grid;
      gap: 10px;
      font-size: 14px;
    }

    .footer-col strong {
      font-size: 15px;
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .social {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.14);
      display: grid;
      place-items: center;
      font-size: 14px;
    }

    .copyright {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 0 20px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.76);
    }

    @media (max-width: 1260px) {
      .hero,
      .community,
      .tournament-showcase {
        grid-template-columns: 1fr;
      }

      .community-panel {
        min-height: auto;
      }

      .feature-strip,
      .drs-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .phone-wrap {
        order: 2;
      }

      .side-cards {
        order: 3;
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .menu-toggle {
      display: none;
    }

    @media (max-width: 900px) {
      .topbar {
        position: relative;
        top: auto;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--line);
      }

      .nav {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 0;
        flex-wrap: wrap;
        gap: 16px;
      }

      .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        order: 1;
      }

      .brand {
        order: 2;
      }

      .menu-toggle span {
        width: 100%;
        height: 2px;
        background-color: var(--text);
        transition: all 0.3s ease;
        border-radius: 2px;
      }

      .nav.open .menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      .nav.open .menu-toggle span:nth-child(2) {
        opacity: 0;
      }
      .nav.open .menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 16px;
        border-top: 1px solid var(--line);
        margin-top: 14px;
        align-items: stretch;
        gap: 8px;
        order: 3;
      }

      .links a {
        display: block;
        padding: 10px 14px;
        border-radius: 8px;
        width: 100%;
      }

      .links a:hover, .links a.active {
        background: var(--green-light);
        color: var(--green-dark) !important;
      }

      .links a.active::after {
        display: none;
      }

      .actions {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 14px;
        gap: 10px;
        order: 4;
      }

      .actions .btn {
        width: 100%;
        justify-content: center;
      }

      .nav.open .links,
      .nav.open .actions {
        display: flex;
      }

      .shell {
        width: min(100% - 32px, 1122px);
      }

      .hero {
        text-align: center;
      }

      .hero-actions {
        justify-content: center;
      }

      .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
      }

      .stat {
        background: rgba(255, 255, 255, 0.75);
        border: 1px solid rgba(17, 38, 71, 0.05);
        border-radius: 12px;
        padding: 12px;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 2px 10px;
        text-align: left;
        box-shadow: 0 4px 10px rgba(39, 77, 129, 0.03);
      }

      .stat-icon {
        grid-row: span 2;
        font-size: 20px;
        width: 32px;
        height: 32px;
        background: rgba(17, 38, 71, 0.03);
        border-radius: 6px;
        display: grid;
        place-items: center;
      }

      .stat strong {
        grid-column: 2;
        font-size: 15px;
        line-height: 1.1;
      }

      .stat span {
        grid-column: 2;
        font-size: 11px;
        line-height: 1.1;
      }

      .feature-strip,
      .drs-grid {
        grid-template-columns: 1fr;
      }

      .side-cards {
        grid-template-columns: 1fr;
        justify-self: center;
        margin: 0 auto;
      }

      .phone-wrap {
        width: min(100%, 360px);
        justify-self: center;
        margin: 0 auto;
      }

      .phone {
        width: 100%;
        margin: 0 auto;
      }

      .community,
      .tournament-showcase,
      .feature-strip,
      .drs-grid {
        margin-top: 20px;
      }

      h1 {
        font-size: 42px;
      }

      .section-title {
        font-size: 32px;
      }

      .footer {
        flex-direction: column;
        gap: 40px;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        max-width: 100%;
      }

      .showcase-card {
        min-height: auto;
      }

      .journey-links,
      .showcase-card.highlights .showcase-actions {
        grid-template-columns: repeat(2, 1fr);
      }

      .copyright {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 34px;
      }

      .hero-actions {
        flex-direction: column;
        width: 100%;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
      }

      .showcase-card.highlights .showcase-actions {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .journey-links {
        grid-template-columns: 1fr;
        gap: 10px;
      }
    }

    @media (max-width: 480px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .post-image.real-post {
        padding: 10px !important;
      }

      .post-image.real-post > div:nth-child(2) {
        margin: 12px 0 !important;
        gap: 6px !important;
      }

      .post-image.real-post > div:nth-child(2) strong {
        font-size: 13px !important;
      }

      .post-image.real-post > div:nth-child(2) span {
        font-size: 10px !important;
      }

      .post-image.real-post > div:nth-child(2) > div > div:first-child {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
      }

      .showcase-button {
        width: 100%;
        justify-content: center;
      }
    }

    .hero-thumb {
      width: 285px;
      height: 166px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow);
      background-color: #fff;
      background-repeat: no-repeat;
      
      background-size: cover;
    }

    .hero-thumb.drs {
      background-image: url("images/hero-drs-review.png");
    }

    .hero-thumb.track {
      background-image: url("images/hero-ball-tracking.png");
    }

    .hero-thumb.social {
      background-image: url("images/hero-social-community.png");
    }

    .drs-crop {
      background-color: #fff;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    }

    .drs-crop.lbw-shot {
      background-image: url("images/drs-lbw-review.png");
    }

    .drs-crop.track-shot {
      background-image: url("images/drs-ball-tracking-ai.png");
    }

    .drs-crop.edge-shot {
      background-image: url("images/drs-edge-detection.png");
    }

    .drs-crop.runout-shot {
      background-image: url("images/drs-run-out-review.png");
    }

    .drs-crop.noball-shot {
      background-image: url("images/drs-no-ball-check.png");
    }

    .drs-crop.fulltoss-shot {
      background-image: url("images/drs-missed-full-toss.png");
    }

  
