:root {
    --primary: #1550b7;
    --primary-light: #1e7dfb;
    --secondary: #eb4d4b;
    --bg: #f6f8fa;
    --card-bg: #fff;
    --card-border: #e1e4e8;
    --text: #23272f;
    --muted: #67768a;
    --accent: #218c74;
    --shadow: 0 2px 16px rgba(22,40,80,.04);
  }
  html { box-sizing: border-box; }
  *,*:before,*:after { box-sizing: inherit; }
  body.site-body {
    margin: 0;
    font-family: 'Outfit', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.7;
    scroll-behavior: smooth;
  }

  /* Hero Section */
  .hero-section {
    background: linear-gradient(rgba(15,32,54, .6), rgba(21,80,183, .5)), url('images/background-main.webp') center/cover;
    padding: 64px 0 48px 0;
    color: #fff;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* title will be outside hero-content now, so allow for vertical stacking */
    text-align: center;
  }

  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 1.1em;
    font-weight: 700;
    text-shadow: 0 8px 28px rgba(0,0,0,.18);
    letter-spacing: .01em;
    /* out of .hero-content, so center here */
    text-align: center;
  }

  .hero-content {
    background: rgba(28,49,84, .55);
    border-radius: 20px;
    padding: 2.5rem 2.2rem;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.2rem;
    text-align: left;
  }

  .hero-description {
    font-size: 1.13rem;
    color: #e3e8ee;
    margin: 0;
    /* for visual alignment in flex */
    flex: 1;
  }

  .hero-btn {
    font-size: 1.08rem;
    padding: .7em 2.5em;
    border: none;
    border-radius: 30px;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(30, 128, 255, .18);
    transition: background .2s;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .5px;
    margin: 0 0 0 1.5em;
    white-space: nowrap;
    align-self: center;
  }
  .hero-btn:hover,
  .hero-btn:focus {
    background: #d43a30;
  }

  @media (max-width: 700px) {
    .hero-content {
      flex-direction: column;
      gap: 1.1rem;
      align-items: stretch;
      padding: 2rem 1rem;
      text-align: center;
    }
    .hero-btn {
      margin: 1em 0 0 0;
      width: 100%;
    }
    .hero-description {
      text-align: center;
    }
  }

  /* Championship Menu */
  .championship-menu {
    background: #fff;
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 14px;
    padding: 0 22px;
    margin-top: -32px;
    position: relative;
    z-index: 2;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    /* Добавляем flex для кнопки справа */
  }
  .team-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0.7em 0;
    flex-wrap: wrap;
    flex-direction: row;
    max-height: 64px;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
    will-change: max-height;
    flex: 1 1 auto;
  }
  .team-list.expanded {
    max-height: 500px;
  }
  .team-item {
    display: flex;
    align-items: center;
    gap: 0.55em;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.01rem;
    background: none;
    border-radius: 8px;
    padding: 6px 12px;
    transition: background .15s;
    justify-content: center;
  }
  .team-item:hover, .team-item:focus {
    background: #eef3fa;
    cursor: pointer;
  }
  .team-link {
    display: flex;
    align-items: center;
    gap: 0.55em;
    text-decoration: none;
    color: inherit;
    width: 100%;
    justify-content: center;
  }
  .team-link:hover,
  .team-link:focus {
    text-decoration: none;
    color: inherit;
  }
  .team-logo {
    height: 32px;
    width: 32px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(21, 80, 183, .05);
    border: 1px solid #e3e8ee;
    object-fit: contain;
    margin-right: 3px;
  }
  .team-name {
    white-space: nowrap;
    text-align: center;
  }

  /* Квадратная кнопка раскрытия справа */
  .team-list-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background: #f1f5fa;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    margin-left: 18px;
    transition: background .14s, box-shadow .14s;
    box-shadow: 0 1px 4px rgba(20,54,128,0.08);
    position: relative;
    outline: none;
  }
  .team-list-toggle:hover,
  .team-list-toggle:focus {
    background: #e8eef8;
    box-shadow: 0 2px 8px rgba(21,80,183,0.09);
  }
  .team-list-toggle__icon {
    display: inline-block;
    width: 17px;
    height: 17px;
    pointer-events: none;
    transition: transform 0.3s;
    fill: var(--primary);
  }
  .team-list-toggle.expanded .team-list-toggle__icon {
    transform: rotate(180deg);
  }

  @media (max-width: 600px) {
    .championship-menu {
      flex-direction: column;
      align-items: stretch;
    }
    .team-list {
      gap: 1.1rem;
      max-height: 72px;
    }
    .team-list.expanded {
      max-height: 800px;
    }
    .team-logo {
      height: 28px;
      width: 28px;
    }
    .team-item {
      font-size: .97rem;
      padding: 4px 7px;
    }
    .team-list-toggle {
      align-self: flex-end;
      margin-left: 0;
      margin-top: 7px;
    }
  }

  /* Main Content Layout */
  .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 40px;
  }

  /* Feature Article Rows */
  .feature-article {
    margin: 0 0 36px 0;
  }
  .feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
    padding: 32px 30px 18px 30px;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .feature-text-block {
    flex: 1 1 60%;
    min-width: 240px;
  }
  .feature-image {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
  }
  .section-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 0 .7em 0;
    font-weight: 700;
    letter-spacing: .01em;
  }
  .feature-text-block h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 1.4em 0 .8em 0;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.4;
  }

  /* Feature Gallery */
  .feature-gallery {
    background: var(--card-bg);
    margin: 0 auto 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px 30px 26px 30px;
    max-width: 980px;
  }
  .gallery-title {
    color: var(--secondary);
    margin-bottom: 1.2em;
    font-size: 1.18rem;
    letter-spacing: .01em;
    font-weight: 600;
  }
  .gallery-images {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.1em;
  }
  .gallery-item {
    flex-basis: 200px;
    flex-grow: 1;
    max-width: 31%;
    background: #f5f7f9;
    border-radius: 12px;
    box-shadow: 0 2px 7px rgba(40,75,96,.05);
    overflow: hidden;
    text-align: center;
    padding: 10px 0 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gallery-item img {
    margin-bottom: 8px;
  }
  .gallery-item figcaption {
    font-size: .98em;
    color: var(--muted);
    font-style: italic;
    margin-top: 3px;
  }

  .btn {
    display: inline-block;
    border: none;
    outline: none;
    font-family: inherit;
    cursor: pointer;
    font-size: 1.03em;
    border-radius: 22px;
    padding: 0.62em 1.75em;
    margin: .6em 0 0 0;
    font-weight: 600;
    transition: background .2s, color .2s, border .2s;
    text-decoration: none;
    box-shadow: 0 2px 14px rgba(45,68,108,.07);
  }
  .btn--primary {
    background: var(--primary);
    color: #fff;
    border: 1.5px solid var(--primary);
  }
  .btn--primary:hover,
  .btn--primary:focus {
    background: var(--primary-light);
    color: #fff;
    border-color: var(--primary-light);
  }
  .btn--secondary {
    background: var(--secondary);
    color: #fff;
    border: 1.5px solid var(--secondary);
  }
  .btn--secondary:hover,
  .btn--secondary:focus {
    background: #c2342a;
  }
  .btn--tertiary {
    background: #71afff;
    color: #1e3566;
    border: 1.5px solid #56aaff;
  }
  .btn--tertiary:hover,
  .btn--tertiary:focus {
    background: #3075c0;
    color: #fff;
    border-color: #3075c0;
  }
  .btn--outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
  }
  .btn--outline:hover {
    background: var(--primary);
    color: #fff;
  }
  .btn--gallery {
    background: var(--accent);
    color: #fff;
    border: 1.5px solid var(--accent);
    margin-top: .75em;
    font-size: 1em;
  }
  .btn--gallery:hover {
    background: #076e50;
    border-color: #076e50;
  }

  /* Player Stars List */
  .stars-list {
    list-style: none;
    padding: 0 0 .1em 0;
    margin: 0 0 .6em 0;
  }
  .star-player-item {
    font-weight: 500;
    margin-bottom: .4em;
    color: var(--muted);
    font-size: 1.05em;
  }

  /* Criteria List */
  .criteria-list {
    list-style: none;
    padding: 0;
    margin: 1.2em 0 1.4em 0;
  }
  .criteria-list li {
    margin-bottom: 1.3em;
    padding-left: 1.2em;
    padding-top: 0.3em;
    border-left: 3px solid var(--primary);
    line-height: 1.7;
  }
  .criteria-list li:last-child {
    margin-bottom: 0;
  }
  .criteria-list li strong {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05em;
    display: block;
    margin-bottom: 0.4em;
  }
  .criteria-list li span {
    color: var(--text);
    display: block;
  }

  /* Club Cards Section */
  .clubs-section {
    margin-top: 24px;
    background: var(--card-bg);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 30px 24px;
  }
  .clubs-section-title {
    color: var(--primary);
    margin-bottom: 1.9em;
    font-weight: 700;
    letter-spacing: .01em;
    font-size: 1.25rem;
    text-align: center;
  }
  .clubs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .club-card {
    flex: 1 1 270px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(21,80,183,.06);
    padding: 26px 18px 21px 18px;
    min-width: 222px;
    max-width: 323px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
    border: 1.7px solid var(--card-border);
    transition: box-shadow .19s, transform .17s;
  }
  .club-card:hover,.club-card:focus {
    box-shadow: 0 4px 32px rgba(21,80,183,.10);
    transform: translateY(-6px) scale(1.03);
    border-color: #b1cbf3;
  }
  .club-logo-wrap {
    background: #f2f7fb;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(86,170,255,.07);
    padding: 18px;
    margin-bottom: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 77px;
    width: 77px;
  }
  .club-logo {
    max-width: 48px;
    max-height: 48px;
  }
  .club-name {
    color: var(--primary);
    font-size: 1.12em;
    font-weight: 700;
    margin: .1em 0 .75em 0;
    letter-spacing: .01em;
  }
  .club-btn {
    text-align: center;
    width: 100%;
    margin: .7em 0 1em 0;
    padding: .6em 0;
    font-size: 1em;
  }
  .club-fixtures {
    list-style: none;
    padding: 0;
    color: var(--muted);
    font-size: .99em;
    margin: 0;
    width: 100%;
  }
  .club-fixtures li {
    margin-bottom: 5px;
    padding-left: 0.3em;
    border-left: 3px solid var(--primary);
  }
  .club-fixtures li:last-child {
    margin-bottom: 0;
  }

  /* Responsive Layout Adjustments */
  @media (max-width: 900px) {
    .feature-row, .feature-row--reverse {
      flex-direction: column !important;
      gap: 24px;
      padding: 22px 10px 14px 10px;
    }
    .feature-gallery, .clubs-section {
      padding: 16px 6px;
    }
    .main-content {
      padding: 0 4px 32px;
    }
  }
  @media (max-width: 650px) {
    .hero-content {
      padding: 1.3rem .65rem;
      max-width: 97vw;
    }
    .hero-title {
      font-size: 1.35rem;
    }
    .gallery-images, .clubs-list {
      flex-direction: column;
      gap: 13px;
    }
    .gallery-item, .club-card {
      max-width: 100%;
    }
    .feature-row,.feature-row--reverse {
      padding: 10px 2vw 8px 2vw;
    }
    .clubs-section-title {
      font-size: 1.04rem;
    }
  }
  @media (max-width:450px){
    .championship-menu {
      padding: 0 3vw;
      border-radius: 0;
    }
    .main-content,
    .clubs-section,
    .feature-gallery{
      padding-left: 2vw;
      padding-right: 2vw;
    }
  }


  /* Header */
  .site-header {
    background: linear-gradient(90deg, var(--primary), var(--primary-light) 85%);
    box-shadow: var(--shadow);
    color: #fff;
    position: sticky;
    z-index: 20;
    top: 0;
    width: 100%;
  }
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 2.2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70px;
  }
  .header-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
  }
  .logo-img {
    height: 60px;
    width: 60px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(21,80,183,.08);
  }
  .logo-text {
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: #fff;
    text-shadow: 0 3px 14px rgba(22,40,80,.11);
  }

  .main-nav {
    flex: 1;
    margin-left: 2.7rem;
  }
  .nav-list {
    display: flex;
    gap: 2.1rem;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-item {}

  .nav-link {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: .025em;
    padding: 0.2em 0.2em 0.2em 0.2em;
    transition: color .24s;
  }
  .nav-link::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: var(--secondary);
    border-radius: 2px;
    transition: width .26s cubic-bezier(.5,.7,.53,1.6);
    margin: 2.5px auto 0 auto;
  }
  .nav-link:hover, .nav-link:focus {
    color: var(--secondary);
  }
  .nav-link:hover::after, .nav-link:focus::after {
    width: 90%;
  }

  .btn--header, .watch-btn {
    background: var(--secondary);
    color: #fff;
    border: none;
    font-size: 1.01rem;
    font-weight: 600;
    border-radius: 30px;
    padding: 0.65em 1.44em;
    margin-left: 2rem;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(235, 77, 75, 0.13);
    transition: background .18s, transform .15s;
    outline: none;
  }
  .btn--header:hover, .btn--header:focus, .watch-btn:hover, .watch-btn:focus {
    background: #e13d3b;
    transform: translateY(-2px) scale(1.035);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
    margin-left: 1rem;
  }
  .nav-toggle-bar {
    display: block;
    width: 28px;
    height: 3.5px;
    margin: 4px 0;
    background: #fff;
    border-radius: 2.5px;
    transition: all 0.33s;
  }

  @media (max-width: 990px) {
    .header-container {
      padding: 0.7rem 1.1rem;
      min-height: 56px;
    }
    .main-nav {
      margin-left: 1.1rem;
    }
    .btn--header, .watch-btn {
      padding: 0.5em 1.05em;
      margin-left: 1.1rem;
    }
  }
  @media (max-width: 770px) {
    .header-container {
      flex-wrap: wrap;
      justify-content: center;
    }
    .main-nav {
      order: 3;
      width: 100%;
      margin-left: 0;
      margin-top: 0.85em;
      display: none;
    }
    .main-nav.open {
      display: block;
      background: rgba(22, 42, 70, .98);
      border-radius: 0 0 12px 12px;
      box-shadow: 0 8px 18px rgba(21,80,183,.05);
      padding: 1.2rem .5rem .7rem .5rem;
      position: absolute;
      left: 0; right: 0; top: 100%;
      z-index: 22;
    }
    .nav-list {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25em;
    }
    .nav-toggle {
      display: flex;
    }
    .btn--header, .watch-btn {
      margin-left: 0.5rem;
      font-size: 0.97rem;
      padding: 0.5em 1em;
      margin-right: 0.5rem;
      margin-bottom: 0.8rem;
    }
  }
  @media (max-width: 480px) {
    .logo-text {
      font-size: 1.05rem;
    }
    .logo-img {
      height: 34px;
      width: 34px;
    }
    .header-container {
      padding: 0.25rem 0.6rem;
      min-height: 46px;
    }
    .btn--header, .watch-btn {
      padding: .42em .85em;
      font-size: 0.915rem;
    }
  }

  /* Footer */
  .site-footer {
    background: linear-gradient(90deg, var(--primary), var(--primary-light) 85%);
    color: #fff;
    box-shadow: 0 -2px 18px rgba(21,80,183,0.08);
    padding: 0;
    position: relative;
    font-size: 1rem;
  }
  .footer-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.2rem 2rem 1.2rem 2rem;
    gap: 2.6rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer-col {
    flex: 1;
    min-width: 210px;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.3rem;
  }
  .footer-branding {
    align-items: flex-start;
    max-width: 270px;
    gap: .6rem;
  }
  .footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
  }
  .footer-logo-img {
    height: 41px;
    width: 41px;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(21,80,183,0.08);
  }
  .footer-logo-text {
    font-size: 1.18rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 10px rgba(28,49,84,0.09);
  }
  .footer-copy {
    color: var(--bg);
    font-size: .98rem;
    margin-top: .42rem;
    opacity: 0.86;
    letter-spacing: .015em;
  }

  .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .8em;
  }
  .footer-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: .03em;
    position: relative;
    transition: color .18s;
    padding: .02em 0;
  }
  .footer-nav-link::after {
    content: '';
    display: inline-block;
    height: 2px;
    width: 0;
    background: var(--secondary);
    border-radius: 2px;
    transition: width .21s cubic-bezier(.5,.7,.53,1.6);
    margin-left: 5px;
    vertical-align: middle;
  }
  .footer-nav-link:hover, .footer-nav-link:focus {
    color: var(--secondary);
  }
  .footer-nav-link:hover::after, .footer-nav-link:focus::after {
    width: 24px;
  }

  .footer-social {
    align-items: flex-start;
    gap: 0.65rem;
    display: flex;
    flex-direction: column;
  }
  .footer-social-label {
    font-size: 1rem;
    font-weight: 600;
    color: #f6f8fa;
    margin-bottom: .6em;
    opacity: .87;
    letter-spacing: .01em;
  }
  .footer-social-link {
    margin-right: .6em;
    display: inline-flex;
    align-items: center;
    transition: transform .14s;
    border-radius: 50%;
    outline: none;
  }
  .footer-social-link img {
    height: 29px;
    width: 29px;
    background: #fff;
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(21,80,183,.09);
    transition: filter 0.2s, box-shadow 0.14s;
  }
  .footer-social-link:hover img, .footer-social-link:focus img {
    filter: brightness(0.95) drop-shadow(0px 3px 7px #eb4d4b33);
    box-shadow: 0 4px 18px rgba(235, 77, 75, 0.13);
    background: var(--secondary);
  }

  @media (max-width: 900px) {
    .footer-container {
      flex-direction: column;
      gap: 1.7rem;
      padding: 1.2rem 0.9rem 0.9rem 0.9rem;
      align-items: stretch;
    }
    .footer-col {
      min-width: 0;
      margin-bottom: .8rem;
    }
    .footer-branding {
      max-width: none;
      align-items: flex-start;
    }
  }

  @media (max-width: 520px) {
    .footer-container {
      padding: 0.86rem 2vw 0.7rem 2vw;
      gap: 0.97rem;
    }
    .footer-logo-text {
      font-size: 0.97rem;
    }
    .footer-logo-img {
      height: 33px;
      width: 33px;
    }
    .footer-copy {
      font-size: .89rem;
    }
    .footer-nav-list {
      gap: .67em;
    }
    .footer-social-label {
      font-size: 0.91rem;
    }
    .footer-social-link img {
      height: 22px;
      width: 22px;
      padding: 2px;
    }
  }


  /* Sports Events Section */
.sports-events-section {
  background: #fff;
  margin: 2.2rem auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 88%;
  max-width: 1200px;
  padding: 2rem 1.5rem;
}

.sports-events-section h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.event-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .event-cards {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .event-cards {
      grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  color: #000;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.event-card h3 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.event-card .tournament {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.event-card .teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.event-card .team {
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-card .team-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.event-card .team-name {
  font-size: 16px;
  font-weight: 500;
}

.event-card .vs-separator {
  color: #999;
  font-weight: bold;
  margin: 0 5px;
}

.event-card .event-date-time {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.event-card .event-date,
.event-card .event-time {
  font-size: 14px;
  color: #444;
}

.event-card .bet-btn {
  margin-top: 15px;
  background: #d3e512;
  color: #000000;
  border: 2px solid #d3e512;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}

.event-card .bet-btn:hover {
  background: transparent;
  color: #000;
}

@media screen and (max-width: 480px) {
  .event-card .teams {
      flex-direction: column;
  }
  
  .event-card h3 {
      font-size: 16px;
  }
}