.elementor-9 .elementor-element.elementor-element-d85d0b1{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-e2643c5 */@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700;800&display=swap');
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
  
  :root {
    --orange: #f26c20;
    --green: #34b233;
    --black: #000;
    --dark: #111;
    --dark2: #181818;
    --dark3: #222;
    --gray: #2a2a2a;
    --border: #333;
    --light: #fff;
  }

  /* GLOBAL */
  * {
    font-family: 'Lato', sans-serif;
  }

  /* TOP ORANGE BAR */
  .top-bar {
    height: .75rem;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1rem;
    font-size: 0.875rem;
  }

  /* DESKTOP HEADER - INCREASED SIZES */
  .header {
    background: #000;
    min-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
  }
  .logo img {
    height: 4rem;
    max-width: 100%;
  }
  .header-left .tagline {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    opacity: .75;
    white-space: nowrap;
    font-weight: 700;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  .search-box {
    position: relative;
    min-width: 18rem;
    max-width: 24rem;
    flex: 1;
  }
  .search-box input {
    width: 100%;
    height: 3rem;
    border-radius: 0.375rem;
    border: none;
    background: #222;
    padding: 0 1rem 0 3.5rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
  }
  .search-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.25rem;
  }
  .btn-login, .btn-register {
    border-radius: 2.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  .btn-login { 
    background: var(--orange); 
    color: #fff; 
  }
  .btn-register { 
    background: var(--green); 
    color: #fff; 
  }
  .btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }

  /* DESKTOP SPORTS STRIP - LARGER */
  .sports-strip {
    height: 3.5rem;
    background: #111;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 1rem;
  }
  .sports-strip::-webkit-scrollbar { height: 6px; }
  .sports-strip::-webkit-scrollbar-thumb { 
    background: #444; 
    border-radius: 3px; 
  }
  .sport-pill {
    display: inline-flex;
    align-items: center;
    margin: 0 0.625rem;
    padding: 0 1.25rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    border: 2px solid transparent;
    font-size: 0.875rem;
    text-transform: uppercase;
    color: #eee;
    flex-shrink: 0;
    font-weight: 600;
  }
  .sport-pill img {
    height: 1.5rem;
    margin-right: 0.625rem;
  }
  .sport-pill.active {
    border-color: var(--orange);
    box-shadow: 0 0 0.75rem rgba(242, 108, 32, 0.4);
    background: linear-gradient(145deg, #333, #222);
  }

  /* ---------- MOBILE VIEW - LARGER ---------- */
  .mobile-only { display: none; }

  @media (max-width: 768px) {
    body { background: #111; }

    .top-bar { display: none; }
    .header { display: none; }
    .sports-strip { display: none; }

    .mobile-only { display: block; }

    /* MOBILE HEADER - LARGER */
    .m-header {
        background: #000;
        padding: 0.75rem 1rem 0.5rem;
    }
    .m-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .m-left {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .m-burger {
        font-size: 1.5rem;
        color: #fff;
        padding: 0.5rem;
    }
    .m-logo img { 
        height: 2.75rem; 
    }
    .m-right {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .m-login, .m-register {
        border-radius: 1.5rem;
        padding: 0.625rem 1.5rem;
        border: none;
        font-size: 0.875rem;
        font-weight: 700;
        min-width: 5.5rem;
    }
    .m-login { 
        background: var(--orange); 
        color: #fff; 
    }
    .m-register { 
        background: var(--green); 
        color: #fff; 
    }
    .m-search { 
        margin-top: 0.75rem; 
    }
    .m-search-wrap { 
        position: relative; 
    }
    .m-search input {
        width: 100%;
        height: 2.75rem;
        border-radius: 0.5rem;
        border: none;
        background: #222;
        padding: 0 1rem 0 3rem;
        color: #fff;
        font-size: 0.875rem;
        font-weight: 500;
    }
    .m-search i {
        position: absolute;
        left: 1.125rem;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
        font-size: 1.125rem;
    }

    /* MOBILE SPORT TABS - LARGER */
    .m-sports-strip {
        background: #222;
        display: flex;
        overflow-x: auto;
        padding: 0.75rem 0;
    }
    .m-sports-strip::-webkit-scrollbar { display: none; }
    .m-sport {
        min-width: 6.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.75rem;
        text-transform: uppercase;
        font-weight: 600;
        padding: 0.5rem;
    }
    .m-sport-icon {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 0.75rem;
        background: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #444;
        margin-bottom: 0.375rem;
    }
    .m-sport-icon img { 
        height: 1.75rem; 
    }
    .m-sport.active .m-sport-icon {
        border-color: var(--orange);
        background: rgba(242, 108, 32, 0.15);
        box-shadow: 0 0 0.5rem rgba(242, 108, 32, 0.3);
    }
  }

  /* ZOOM RESPONSIVE - LARGER */
  @media (max-width: 1200px) {
    .header {
        padding: 1rem 1.5rem;
    }
    .search-box {
        max-width: 20rem;
    }
    .sport-pill {
        font-size: 0.813rem;
        padding: 0 1rem;
    }
  }/* End custom CSS */