
  

  
  

  
  
  
  
    


@layer base {
  
  body, :host {
    /* Color */
    --grey-50: #FAFAFA;
--grey-100: #F5F5F5;
--grey-200: #E5E5E5;
--grey-300: #D4D4D4;
--grey-400: #A3A3A3;
--grey-500: #737373;
--grey-600: #525252;
--grey-700: #404040;
--grey-800: #262626;
--grey-900: #171717;
--red-50: #FEF2F2;
--red-100: #FEE2E2;
--red-200: #FECACA;
--red-300: #FCA5A5;
--red-400: #F87171;
--red-500: #EF4444;
--red-600: #DC2626;
--red-700: #B91C1C;
--red-800: #991B1B;
--red-900: #7F1D1D;
--blue-50: #EFF6FF;
--blue-100: #DBEAFE;
--blue-200: #BFDBFE;
--blue-300: #93C5FD;
--blue-400: #60A5FA;
--blue-500: #3B82F6;
--blue-600: #2563EB;
--blue-700: #1D4ED8;
--blue-800: #1E40AF;
--blue-900: #1E3A8A;
--lime-50: #F7FEE7;
--lime-100: #ECFCCB;
--lime-200: #D9F99D;
--lime-300: #BEF264;
--lime-400: #A3E635;
--lime-500: #84CC16;
--lime-600: #65A30D;
--lime-700: #4D7C0F;
--lime-800: #3F6212;
--lime-900: #365314;
--pink-50: #FDF2F8;
--pink-100: #FCE7F3;
--pink-200: #FBCFE8;
--pink-300: #F9A8D4;
--pink-400: #F472B6;
--pink-500: #EC4899;
--pink-600: #DB2777;
--pink-700: #BE185D;
--pink-800: #9D174D;
--pink-900: #831843;
--teal-50: #F0FDFA;
--teal-100: #CCFBF1;
--teal-200: #99F6E4;
--teal-300: #5EEAD4;
--teal-400: #2DD4BF;
--teal-500: #14B8A6;
--teal-600: #0D9488;
--teal-700: #0F766E;
--teal-800: #115E59;
--teal-900: #134E4A;
--green-50: #ECFDF5;
--green-100: #D1FAE5;
--green-200: #A7F3D0;
--green-300: #6EE7B7;
--green-400: #34D399;
--green-500: #10B981;
--green-600: #059669;
--green-700: #047857;
--green-800: #065F46;
--green-900: #064E3B;
--purple-50: #F5F3FF;
--purple-100: #EDE9FE;
--purple-200: #DDD6FE;
--purple-300: #C4B5FD;
--purple-400: #A78BFA;
--purple-500: #8B5CF6;
--purple-600: #7C3AED;
--purple-700: #6D28D9;
--purple-800: #5B21B6;
--purple-900: #4C1D95;
--yellow-50: #FFFBEB;
--yellow-100: #FEF3C7;
--yellow-200: #FDE68A;
--yellow-300: #FCD34D;
--yellow-400: #FBBF24;
--yellow-500: #F59E0B;
--yellow-600: #D97706;
--yellow-700: #B45309;
--yellow-800: #92400E;
--yellow-900: #78350F;
    /* Fonts */
    --font-sans: 'Inter',sans-serif;

    /* Font size */
    --font-size-xxs: 0.625rem;
--font-size-xs: 0.75rem;
--font-size-sm: 0.875rem;
--font-size-base: 1rem;
--font-size-lg: 1.125rem;
--font-size-xl: 1.25rem;
--font-size-2xl: 1.5rem;
--font-size-3xl: 1.875rem;
--font-size-4xl: 2.25rem;
--font-size-5xl: 3rem;
    /* Font weight */
    --font-weight-thin: 100;
--font-weight-lighter: 200;
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-normal: 500;
--font-weight-bold: 700;
--font-weight-semi-bold: 600;
--font-weight-bolder: 800;
--font-weight-black: 900;
    /* Shadows */
    --shadow-sm:  0 1px 2px 0 rgba(0, 0, 0, 0.25);
--shadow-base:  0 1px 3px 0 rgba(0, 0, 0, 0.25), 0 1px 2px 0 rgba(0, 0, 0, 0.25);
--shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.25), 0 2px 4px -1px rgba(0, 0, 0, 0.25);
--shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.25), 0 4px 6px -2px rgba(0, 0, 0, 0.25);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.25);
--shadow-2xl:  0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Border radius */
    
    /* Spacing */
    
    /* Z-index */
    
  }
  @keyframes animation-spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes animation-fade-in {
    from {
      opacity:0;
    }
    to {
      opacity:1;
    }
  }
  @keyframes animation-fade-out {
    from {
      opacity:1;
    }
    to {
      opacity:0;
    }
  }
}


    .bihKBY {
      width:6px;
      height:6px;
      animation:pulse 2s infinite ease-in-out;
      background:#fff;
      border-radius:50%;
    }

    @keyframes pulse {
        0% {
          opacity: 0.4;
        }

        0% {
          transform: scale(0.8);
        }

        50% {
          opacity: 1;
        }

        50% {
          transform: scale(1.2);
        }

        100% {
          opacity: 0.4;
        }

        100% {
          transform: scale(0.8);
        }
    }

    .bkFwTB {
      color:var(--tab-color);
      border:none;
      cursor:pointer;
      padding:12px 0;
      position:relative;
      font-size:14px;
      background:none;
      transition:color 0.2s ease;
      font-weight:700;
      letter-spacing:1px;
      text-transform:uppercase;
    }

    .bkFwTB::after {
      left:0px;
      width:100%;
      bottom:-1px;
      height:2px;
      content:"";
      position:absolute;
      background:var(--indicator-color);
      transition:background 0.2s ease;
    }

    .bkFwTB:hover {
      color:#ffffff;
    }

    .Jpalo {
      gap:8px;
      display:flex;
      flex-direction:column;
    }

    .ciMUKx {
      width:100%;
      height:100%;
      padding:var(--img-padding);
      object-fit:contain;
      transition:transform 0.3s ease;
    }

    .cKSAOl {
      top:0px;
      left:0px;
      width:100%;
      border:1px solid #ffffff0a;
      bottom:0px;
      cursor:pointer;
      content:"";
      display:flex;
      opacity:1;
      overflow:hidden;
      position:relative;
      background:linear-gradient(145deg, #1c1d22 0%, #15161a 100%);
      min-height:var(--card-height);
      transition:all 0.3s ease;
      border-radius:16px;
      flex-direction:row;
      text-decoration:none;
      borderbackground:#1c1d22;
      backgroundbackground:linear-gradient(145deg, #1c1d22 0%, #15161a 100%);
    }

    .cKSAOl:hover {
      opacity:1;
      transform:translateY(-4px);
      background:linear-gradient(145deg, #23242a 0%, #1c1d22 100%);
      box-shadow:0 10px 30px -10px #000;
      border-color:#168bf733;
    }

    .cKSAOl::before {
      top:0px;
      left:0px;
      width:4px;
      bottom:0px;
      content:"";
      opacity:var(--accent-opacity);
      z-index:1;
      position:absolute;
      background:#168bf7;
      transition:opacity 0.3s ease;
    }

    @media (max-width: 900px) {

    .cKSAOl {
      min-height:auto;
      flex-direction:column;
    }
    }

    .itHfp {
      color:#ffffff;
      margin:0px;
      font-size:var(--title-size);
      font-weight:800;
      line-height:1.2;
      letter-spacing:-0.5px;
    }

    @media (max-width: 768px) {

    .itHfp {
      font-size:20px;
    }
    }

    .dVNVkS {
      gap:6px;
      top:12px;
      color:#fff;
      right:12px;
      display:flex;
      padding:4px 10px;
      z-index:2;
      position:absolute;
      font-size:10px;
      max-width:80px;
      background:#ff4444;
      box-shadow:0 0 10px #ff44444d;
      align-items:center;
      font-weight:800;
      border-radius:4px;
      flex-direction:row;
      letter-spacing:0.5px;
      text-transform:uppercase;
      justify-content:space-evenly;
    }

    .dVNVkS::before {
      width:6px;
      height:6px;
      content:"";
      animation:pulse 1.5s infinite;
      background:#fff;
      border-radius:50%;
    }


    @keyframes badge-pulse {
        0% {
          opacity: 1;
        }

        0% {
          transform: scale(0.9);
        }

        50% {
          opacity: 0.5;
        }

        50% {
          transform: scale(1.3);
        }

        100% {
          opacity: 1;
        }

        100% {
          transform: scale(0.9);
        }
    }

    .brJIEW {
      color:#ffffff;
      margin:0px;
      font-size:48px;
      font-weight:900;
      letter-spacing:-1px;
      text-transform:uppercase;
    }

    @media (max-width: 768px) {

    .brJIEW {
      font-size:32px;
    }
    }

    .dnePtD {
      gap:32px;
      display:flex;
      border-top:1px solid #ffffff0d;
      align-items:center;
      padding-top:16px;
      border-style:none;
      padding-left:0px;
      padding-right:0px;
      flex-direction:row;
      padding-bottom:4px;
      border-top-color:#ffffff0d;
      border-top-style:solid;
      border-top-width:1px;
      grid-template-columns:repeat(4, 1fr);
    }

    @media (max-width: 600px) {

    .dnePtD {
      gap:16px;
      display:grid;
      grid-template-columns:repeat(2, 1fr);
    }
    }

    .dNcPFz {
      gap:24px;
      width:100%;
      display:flex;
      flex-direction:column;
      grid-template-columns:repeat(auto-fill, minmax(340px, 1fr));
    }

    .aOEHp {
      width:var(--banner-width);
      height:var(--banner-height);
      display:flex;
      overflow:hidden;
      position:relative;
      background:radial-gradient(circle at center, #1a1b21 0%, #0d0e12 100%);
      align-items:center;
      flex-shrink:0;
      border-right:1px solid #ffffff0a;
      backgroundwidth:240px;
      justify-content:center;
      backgroundbackground:radial-gradient(circle at center, #1a1b21 0%, #0d0e12 100%);
    }

    @media (max-width: 900px) {

    .aOEHp {
      width:100%;
      height:180px;
      border-right:none;
      border-bottom:1px solid #ffffff0a;
    }
    }

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

    .fkcXvl {
      gap:var(--details-gap);
      flex:1;
      display:flex;
      padding:var(--detail-padding);
      flex-direction:column;
      justify-content:center;
    }

    @media (max-width: 768px) {

    .fkcXvl {
      gap:20px;
      padding:20px;
    }
    }

    .uusLC {
      color:#858585;
      font-size:10px;
      font-weight:600;
      letter-spacing:1px;
      text-transform:uppercase;
    }

    .fkNphj {
      color:#858585;
      font-size:11px;
      font-weight:600;
      letter-spacing:0.5px;
      text-transform:uppercase;
    }

    .cqGDmK {
      color:#ffffff;
      font-size:var(--date-size);
      font-weight:700;
    }

    .cdwOxr {
      color:#168bf7;
      font-size:12px;
      font-weight:700;
    }

    .lXHue {
      gap:32px;
      display:flex;
      border-bottom:1px solid #ffffff1a;
      flex-direction:row;
    }

    @media (max-width: 768px) {

    .lXHue {
      gap:20px;
    }
    }

    .dkMgQI {
      gap:6px;
      color:#858585;
      display:flex;
      font-size:14px;
      align-items:flex-start;
      font-weight:500;
      justify-content:space-between;
    }

    .blPpQX {
      color:#ffffff;
      font-size:14px;
      font-weight:700;
    }

    .jazWd {
      gap:32px;
      flex:1;
      width:100%;
      margin:0 auto;
      display:flex;
      padding:40px 20px;
      max-width:1200px;
      flex-direction:column;
    }

    @media (max-width: 768px) {

    .jazWd {
      gap:24px;
      padding:24px 16px;
    }
    }

    .cFifHl {
      flex:0 1 0%;
      width:auto;
      height:auto;
      display:flex;
      row-gap:12px;
      flex-wrap:nowrap;
      min-width:320px;
      background:#030303;
      column-gap:12px;
      max-height:55px;
      min-height:55px;
      align-items:center;
      padding-left:16px;
      padding-right:16px;
      flex-direction:row;
      justify-content:space-between;
    }

    .cdzhMj {
      color:#ffffff;
      font-size:16px;
      font-family:Inter;
      font-weight:600;
      padding-top:8px;
      padding-left:16px;
      padding-right:16px;
      padding-bottom:8px;
    }

    .fOmPV {
      height:55px;
      display:flex;
      row-gap:5px;
      flex-grow:0;
      max-width:960px;
      column-gap:5px;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
      border-left-color:#191A1F;
      border-left-style:solid;
      border-left-width:1px;
    }

    @media (max-width: 1160px) {

    .fOmPV {
      display:none;
    }
    }

    .dDzJaN {
      width:fit-content;
      display:flex;
      min-width:0px;
      min-height:51px;
      align-items:flex-start;
      justify-content:center;
    }

    .dDzJaN:hover {
      border-top-color:#030303;
      border-top-style:solid;
      border-top-width:2px;
      border-bottom-color:#188af8;
      border-bottom-style:solid;
      border-bottom-width:2px;
    }

    .bgFYbq {
      color:white;
      width:100vw;
      display:flex;
      font-size:16px;
      background:#030303;
      align-items:center;
      font-family:Inter Tight;
      font-weight:var(--font-weight-regular);
      padding-top:16px;
      padding-left:16px;
      border-bottom:1px solid var(--grey-800);
      padding-right:16px;
      flex-direction:row;
      padding-bottom:16px;
      justify-content:space-between;
    }

    @media (min-width: 960px) {

    .bgFYbq {
      width:100%;
    }
    }

    .eRFehh {
      color:#ffffff;
      font-size:14px;
      font-family:Inter;
      font-weight:600;
      padding-top:8px;
      padding-left:16px;
      padding-right:16px;
      padding-bottom:8px;
    }

    .dnGfeo {
      color:#ffffff;
      font-size:16px;
      font-family:Inter;
      font-weight:600;
      padding-top:8px;
      padding-left:16px;
      padding-right:16px;
      padding-bottom:8px;
    }

    .fGUmIk {
      gap:12px;
      font:var(--font-weight-regular) 16px Inter Tight;
      color:white;
      width:fit-content;
      height:40px;
      display:flex;
      align-items:center;
      padding-top:8px;
      padding-left:12px;
      border-radius:6px;
      padding-right:12px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:center;
    }

    .fGUmIk:hover {
      color:white;
    }

    .fGUmIk.menuShown {
      color:white;
    }

    .fGUmIk.menuShown:hover {
      color:white;
    }

    .cTqWEF {
      color:#ffffff;
      height:55px;
      display:flex;
      font-size:14px;
      min-width:60px;
      align-items:center;
      font-weight:600;
      padding-left:8px;
      padding-right:8px;
      justify-content:center;
    }

    .cTqWEF:hover {
      color:#1a89f8;
      border-top-color:#030303;
      border-top-style:solid;
      border-top-width:2px;
      border-bottom-color:#1a89f8;
      border-bottom-style:solid;
      border-bottom-width:2px;
    }

    .cEIFEM {
      color:#ffffff;
      height:55px;
      display:flex;
      row-gap:5px;
      flex-grow:0;
      max-width:960px;
      column-gap:5px;
      align-items:center;
      padding-left:16px;
      padding-right:16px;
      flex-direction:row;
      justify-content:flex-start;
      border-left-color:#191A1F;
      border-left-style:solid;
      border-left-width:1px;
    }

    @media (min-width: 1160px) {

    .cEIFEM {
      display:none;
    }
    }

    .fzIopY {
      color:#ffffff;
      height:55px;
      display:flex;
      font-size:14px;
      min-width:60px;
      align-items:center;
      padding-left:8px;
      padding-right:8px;
      justify-content:center;
    }

    .fgYZhG {
      width:100vw;
      row-gap:8px;
      flex-grow:1;
      column-gap:8px;
      flex-basis:0px;
      overflow-y:scroll;
      flex-shrink:1;
      padding-bottom:96px;
      scrollbar-width:none;
    }

    .fgYZhG::-webkit-scrollbar {
    width: 0;
    }

    @media (min-width: 960px) {

    .fgYZhG {
      width:100%;
    }
    }

    .cmvWBz {
      width:100vw;
      height:100vh;
      background: #00000080;
    }

    .erjXnk {
      display:flex;
      max-width:50px;
      max-height:fit-content;
      align-items:center;
      justify-content:center;
    }

    .cjbNIb {
      color:#ffffff;
      width:fit-content;
      height:fit-content;
      display:flex;
      align-items:center;
      flex-direction:column;
      justify-content:center;
    }

    .fqiAhQ {
      color:#ffffff;
      font-size:12px;
      font-family:Inter;
      font-weight:700;
      padding-top:8px;
      padding-left:16px;
      padding-right:16px;
      padding-bottom:8px;
    }

    .qdlAL {
      width:auto;
      display:flex;
      flex-grow:1;
      flex-wrap:wrap;
      min-width:150px;
      align-items:center;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:center;
    }

    .eJYbZH {
      color:#ffffff;
      display:flex;
      row-gap:8px;
      flex-wrap:wrap;
      column-gap:8px;
      align-items:flex-start;
      padding-top:8px;
      padding-left:8px;
      padding-right:8px;
      flex-direction:row;
      padding-bottom:8px;
      justify-content:flex-start;
    }

    .bshwfx {
      color:#ffffff;
      height:32px;
      display:flex;
      font-size:12px;
      min-width:60px;
      background:#1a89f9;
      align-items:center;
      font-family:Inter;
      font-weight:700;
      margin-left:8px;
      padding-left:16px;
      padding-right:16px;
      justify-content:center;
      border-top-left-radius:4px;
      border-top-right-radius:4px;
      border-bottom-left-radius:4px;
      border-bottom-right-radius:4px;
    }

    .ntnIo {
      right:0px;
      width:100vw;
      height:100%;
      display:flex;
      z-index:2;
      position:fixed;
      background:#191a1f;
      box-shadow:-16px 0px 16px 0px #00000040;
      overflow-x:hidden;
      overflow-y:hidden;
      transition:margin-right 300ms ease  ;
      align-items:start;
      border-left:1px solid var(--grey-800);
      margin-right:-960px;
      justify-content:space-between;
    }

    @media (min-width: 960px) {

    .ntnIo {
      width:640px;
      transition:margin-right 300ms ease  ;
    }
    }

    .ntnIo.shown {
      transition:margin-right 300ms ease  ;
      margin-right:0px;
    }

    .faaoqV {
      height:auto;
      max-width:210px;
      min-width:40px;
    }

    .cheaFb {
      top:0px;
      left:0px;
      z-index:8;
      position:fixed;
      flex-direction:row;
    }

    .dVTPlq {
      gap:16px;
      color:white;
      right:0px;
      width:100vw;
      bottom:0px;
      display:flex;
      position:relative;
      flex-wrap:wrap;
      border-top:1px solid var(--grey-800);
      align-items:center;
      padding-top:24px;
      padding-left:24px;
      padding-right:24px;
      flex-direction:column;
      padding-bottom:96px;
      justify-content:space-between;
    }

    @media (min-width: 960px) {

    .dVTPlq {
      width:640px;
      display:flex;
      flex-direction:row;
      padding-bottom:24px;
    }
    }

    .header\:gk4ctFtQlDi-nRAsPebLg {
      width:30px;
      height:26px;
    }

    .cCtzAQ {
      max-width:fit-content;
      max-height:30px;
      aspect-ratio:5859/1109;
    }

    .edwwQA {
      height:55px;
      display:flex;
      row-gap:5px;
      flex-grow:1;
      max-width:960px;
      column-gap:5px;
      align-items:center;
      flex-direction:row;
      justify-content:flex-start;
      border-left-color:#191A1F;
      border-left-style:solid;
      border-left-width:1px;
    }

    @media (max-width: 1160px) {

    .edwwQA {
      display:none;
    }
    }

    .ZMJIa {
      height:90px;
      display:flex;
      background:#030303;
      align-items:flex-start;
      justify-content:center;
    }

    .IMcdC {
      font-size:12px;
    }

    .cUbIrd {
      flex:1;
      display:flex;
      flex-direction:row;
      justify-content:space-between;
    }

    .dSLZws {
      width:100%;
      cursor:default;
      height:100%;
      overflow-x:scroll;
      overflow-y:hidden;
      align-items:start;
      flex-direction:row;
      justify-content:start;
      scroll-behavior:smooth;
      scrollbar-width:none;
      scroll-snap-type:x mandatory;
    }

    .dSLZws::-webkit-scrollbar {
    width: 0;
    }

    .dSLZws.dragging {
      cursor:grabbing;
      scroll-behavior:auto;
      scroll-snap-type:none;
    }

    .RhqYw {
      gap:16px;
      flex-wrap:nowrap;
      padding-top:24px;
      padding-left:24px;
      align-content:start;
      padding-right:24px;
      flex-direction:row;
      padding-bottom:24px;
      background-color:var(--container-bg, #a689faff);
    }

    .bpiOpn {
      color:var(--grey-400, #A3A3A3);
      width:168px;
      height:256px;
      font-size:16px;
      box-shadow:4px 4px 0px 0px #00000044;
      align-items:start;
      font-family:'Inter';
      font-weight:700;
      padding-top:16px;
      user-select:none;
      border-color:#000000;
      border-style:solid;
      border-width:4px;
      padding-left:16px;
      border-radius:12px;
      padding-right:16px;
      padding-bottom:16px;
      justify-content:end;
      background-color:var(--grey-50, #FAFAFA);
      scroll-snap-align:center;
    }

    .match-header\:8yul0yRIPRDaMJaCOayHP {
      display:flex;
      row-gap:4px;
      column-gap:4px;
      align-items:center;
      padding-left:4px;
      padding-right:4px;
      flex-direction:row;
      justify-content:flex-start;
    }

    .cvnKAc {
      color:#ffffff;
    }

    .WuZgb {
      color:#ffffff;
      font-weight:700;
    }

    .STUTt {
      width:180px;
      height:74px;
      display:flex;
      background:#191a1f;
      padding-top:4px;
      padding-left:12px;
      padding-right:12px;
      padding-bottom:4px;
      justify-content:space-between;
      border-top-left-radius:8px;
      border-top-right-radius:8px;
      border-bottom-left-radius:8px;
      border-bottom-right-radius:8px;
    }

    .STUTt:hover {
      background:#262626;
    }

    .dsmgtA {
      color:#ffffff;
      width:74px;
      height:74px;
      display:flex;
      font-size:12px;
      background:linear-gradient(to bottom right, #191a1f8c 0%, #191a1f 100%) scroll padding-box border-box repeat repeat 0% 0% / auto;
      overflow-x:clip;
      overflow-y:clip;
      align-items:flex-start;
      font-weight:700;
      padding-top:4px;
      padding-left:4px;
      padding-right:4px;
      padding-bottom:4px;
      justify-content:flex-end;
    }

    .dsmgtA:hover {
      background:linear-gradient(#191a1fbf 0%, #191a1f 100%) scroll padding-box border-box repeat repeat 0% 0% / auto, url("https://dkjhsvjwmmioncztcwzh.supabase.co/storage/v1/object/public/logos/LFGG/CDL.png") scroll padding-box border-box repeat repeat center center / 150px 150px;
      border-top-left-radius:8px;
      border-top-right-radius:8px;
      border-bottom-left-radius:8px;
      border-bottom-right-radius:8px;
    }

    .eRpQXf {
      width:20px;
      height:20px;
    }

    .cSkZQc {
      display:flex;
      row-gap:8px;
      column-gap:8px;
      flex-direction:row;
    }

    .beiVef {
      width:74px;
      height:74px;
      display:flex;
      background:url("https://dkjhsvjwmmioncztcwzh.supabase.co/storage/v1/object/public/logos/LFGG/CDL.png") center center / 150px 150px #191a1f;
      overflow-x:clip;
      overflow-y:clip;
      align-items:center;
      margin-left:4px;
      justify-content:center;
      border-top-left-radius:8px;
      border-top-right-radius:8px;
      border-bottom-left-radius:8px;
      border-bottom-right-radius:8px;
    }

    .beiVef:hover {
      background:#262626;
    }

    .dMfGlF {
      display:flex;
    }

    .eLFFCe {
      color:var(--sl-color-neutral-600);
      display:inline-block;
    }

    .cwcgpI {
      display:inline;
      font-size:inherit;
      font-family:inherit;
      font-weight:inherit;
    }

    .cwcgpI:hover {
      color:#1789f8;
    }

    .fIaMP {
      height:200px;
      display:flex;
      row-gap:16px;
      background:#030303;
      column-gap:16px;
      align-items:center;
      flex-direction:column;
      justify-content:center;
    }

    .dUewoM {
      color:#ffffff;
      display:flex;
      row-gap:8px;
      column-gap:8px;
      align-items:center;
      flex-direction:row;
      justify-content:center;
    }

    .eJHgfE {
      color:#ffffff;
      display:flex;
      row-gap:24px;
      column-gap:24px;
      align-items:center;
      flex-direction:row;
      justify-content:center;
    }

    .eKWZzu {
      display:flex;
      align-items:center;
      justify-content:flex-start;
    }

    .bjNnva {
      border:1px solid #168bf733;
      display:flex;
      padding:4px 10px;
      align-self:flex-start;
      background:#168bf71a;
      align-items:center;
      border-radius:6px;
      justify-content:center;
    }