/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
}

/* Container */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Header Styles */
.main-header {
  width: 100%;
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

/* Header Top Section */
.header-top {
  background-color: #0b3774;
  padding: 0;
  height: 86.28px;
  display: flex;
  align-items: center;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 10px 20px;
  width: 100%;
}

/* Logo Symbol */
.logo-symbol {
  flex: 0 0 auto;
  margin-right: 10px;
}

@media (min-width: 769px) {
  .logo-symbol {
    display: none;
  }
}


.symbol-container {
  width: 35.4px;
  height: 37.4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.symbol {
  color: white;
  font-size: 22px;
  font-weight: bold;
}

/* Main Logo */
.main-logo {
  flex: 0 0 auto;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image {
  height: 66.28px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* Header Actions */
.header-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  margin-left: auto;
}

/* Button Styles */
.btn {
  padding: 17px 40px;
  border: none;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 44px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: #1a5485;
  color: white;
  min-width: 284.19px;
}

.header-actions .btn-primary {
  font-size: 15px;
  font-weight: 500;
  font-family: "Roboto";
}

.header-actions .btn-secondary {
  font-size: 15px;
  font-weight: 500;
  font-family: "Roboto";
}

.btn-primary:hover {
  background-color: #2463a0;
}

.btn-secondary {
  background-color: #e4f0ff;
  color: #000000;
  min-width: 272.5px;
}

.btn-secondary:hover {
  background-color: #d1e7ff;
}

/* Header Navigation Section */
.header-nav {
  background-color: transparent;
  padding: 10px 0;
  height: 66px;
  display: flex;
  align-items: center;
}

.header-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* Navigation */
.main-nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.nav-item {
  display: flex;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12.5px 20px;
  text-decoration: none;
  color: #111111;
  transition: all 0.3s ease;
  height: 46px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

.nav-link.active {
  color: #0b3774;
  font-weight: 600;
}

.nav-link:hover {
  color: #0b3774;
}

/* Specific widths for nav items to match Figma */
.nav-item:nth-child(1) .nav-link {
  width: 90px;
  justify-content: center;
}

.nav-item:nth-child(2) .nav-link {
  width: 246px;
  justify-content: flex-start;
}

.nav-item:nth-child(3) .nav-link {
  width: 278px;
  justify-content: flex-start;
}

/* Hero Section */
.hero-section {
  width: 100%;
  height: 558px;
  position: relative;
  overflow: hidden;
}

.hero-background {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Symbol Section */
.symbol-section {
  background-color: #0b3774;
  height: 55.19px;
  padding: 9px 0;
}

.symbol-section .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.symbol-container-small {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.symbol-text {
  color: #e4f0ff;
  font-size: 24px;
  line-height: 30px;
}

/* Hot Games Section */
.hot-games-section {
  padding: 50px 0;
  min-height: 530.16px;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.section-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fire-icon {
  color: #0b3774;
  font-size: 38px;
  line-height: 50px;
}

.hot-games-section .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #272626;
  font-family: "Oswald", sans-serif;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 10px;
}

/* Game Card */
.game-card {
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Game Image */
.game-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20.66px;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Game Content */
.game-content {
  padding: 30px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.game-title {
  font-size: 24px;
  font-weight: 600;
  color: #272626;
  margin: 0 0 30px 0;
  line-height: 34px;
  font-family: "Oswald";
  text-decoration-line: underline;
  text-decoration-style: solid;
}

.game-description {
  font-size: 16px;
  line-height: 1.6;
  color: #272626;
  margin: 0 0 30px 0;
  padding: 0 20px;
  flex: 1;
  font-family: Arial, sans-serif;
}

/* Game Button */
/* .game-button {
  background-color: #0b3774;
  color: white;
  border: none;
  padding: 17px 40px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 147px;
  height: 49px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.game-button {
  background-color: #0b3774;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 147px;
  height: 49px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Inter", sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.game-button:hover {
  background-color: #1a5485;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: 60vh;
}

/* .content-container {
    width: 100%;
    max-width: 100%;
}

.text-container {
    margin-bottom: 30px;
}

.text-container p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #272626;
}

.highlight {
    color: #0b3774;
    font-weight: 600;
}

.strong {
    font-weight: 700;
}

.main-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #272626;
    margin: 30px 0 20px;
}

.main-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #272626;
    margin: 25px 0 15px;
}

.main-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.main-content li {
    margin-bottom: 10px;
    color: #272626;
}

.image-container {
    margin: 30px 0;
    text-align: center;
} */

.image-container img {
    max-width: 100%;
    height: auto;
}

/* Add these styles for the Singapore Pool Odds section */
.singapore-pool-section {
  padding: 60px 0;
  height: 175px;
  display: flex;
  align-items: center;
}

.pool-content {
  display: flex;
  width: 100%;
  height: 105px;
}

.section-icon-container {
  width: 65px;
  height: 50px;
  flex-shrink: 0;
}

.section-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
}

.section-icon-inner {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-icon-text {
  color: #0b3774;
  font-size: 38px;
  width: 63px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pool-text-content {
  /* width: 1085px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pool-title {
  font-size: 28px;
  font-weight: 700;
  color: #272626;
  font-family: "Oswald", sans-serif;
  line-height: 40px;
  margin: 0;
}

.pool-description {
  font-size: 16px;
  line-height: 1.6;
  color: #272626;
  margin: 0;
  font-family: Arial, sans-serif;
}

.section-content {
            width: 1170px;
            margin: 0 auto;
            padding: 50px 0;
            font-family: Arial, sans-serif;
            color: #272626;
        }
        
        .content-container {
            width: 100%;
           font-family: Arial, sans-serif;
        }
        
       .section-content h1, h2, h3, h4 {
            font-weight: bold;
            margin-bottom: 20px;
        }
        
      .section-content  h1 {
            font-size: 28px;
            line-height: 44px;
        }
        
        h2 {
            font-size: 24px;
            line-height: 36px;
        }
        
        h3 {
            font-size: 20px;
            line-height: 30px;
        }
        
        h4 {
            font-size: 18px;
            line-height: 27px;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 24px;
            color: #272626;
            line-height: 27px;
        }
        
        .highlight {
            color: #272626;
            font-weight: bold;
        }
        
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        
        .image-container img {
            max-width: 100%;
            height: auto;
        }
        
       .section-content ul {
            list-style-type: none;
            padding-left: 15px;
        }
        
       .section-content ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 10px;
        }
        
      .section-content  ul li:before {
            content: "•";
            color: #2F5AAF;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .strong {
            font-weight: bold;
        }

        .sub-container {
            max-width: 70%;
            /* margin: 0 auto; */
        }

        .list {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 3.5px;
        }
        
        .list-item {
            width: 100%;
            height: auto;
            display: flex;
            flex-direction: row;
            align-items: center;
        }
        
        .bullet-container {
            width: 28.75px;
            height: 23px;
            margin-right: 0;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
        }
        
        .bullet {
            width: 23px;
            height: 23px;
            font-size: 16px;
            text-align: center;
            line-height: 23px;
            color: #000000;
        }
        
        .text-container {
            height: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .item-text {
            font-size: 16px;
            line-height: 28px;
            color: #111111;
            margin-left: 5px;
        }

        .header-row {
            margin-top: 25px;
            display: flex;
            flex-direction: row;
            width: 100%;
        }
        
        .icon-container {
            width: 52px;
            height: 37px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .header-top .container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn {
    min-width: auto;
    padding: 12px 20px;
  }

  .nav-list {
    flex-direction: column;
    gap: 5px;
  }

  .nav-item .nav-link {
    width: auto;
    min-width: 200px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 32px;
  }

  /* Responsive styles for Singapore Pool Odds section */
  .pool-content {
    flex-direction: column;
    height: auto;
    align-items: center;
    text-align: center;
  }

  .section-icon-container {
    margin-bottom: 15px;
  }

  .singapore-pool-section {
    height: auto;
    padding: 40px 0;
  }

    .sub-container {
        max-width: 85%;
    }
}

/* Mobile Menu Styles */
.mobile-menu {
  display: none;
}

.side-nav {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background-color: #0b3774;
  z-index: 2000;
  transition: left 0.3s ease;
  padding: 20px 0;
  overflow-y: auto;
}

.side-nav.open {
  left: 0;
}

.side-nav-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.side-nav-list {
  list-style: none;
  padding: 0;
  margin: 50px 0 0 0;
}

.side-nav-item {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: block;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
}

.overlay.open {
  display: block;
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    .header-top {
        height: auto;
        /* padding: 15px 0; */
        position: relative;
    }
    
    .header-top .container {
        flex-direction: column;
        text-align: center;
        /* gap: 15px; */
    }
    
    .logo-symbol {
        display: block;
        position: absolute;
        top: 15px;
        left: 15px;
        margin: 0;
        cursor: pointer;
        z-index: 100;
    }
    
    .main-logo {
        /* margin: 40px auto 15px; */
        /* display: flex;
        justify-content: flex-start; */
    }
    
    .header-actions {
        margin: 0 auto 15px;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 15px;
        height: 40px;
        min-width: 120px;
        font-size: 14px;
    }
    
    .header-nav {
        display: none;
    }
    
    .hero-section {
        height: 250px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        /* justify-content: center; */
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .sub-container {
        max-width: 100%;
    }
    
    .footer-section {
        height: auto;
    }
    
    .footer-banner {
        height: auto;
        padding: 15px 10px;
    }
    
    .footer-banner-image {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
        /* .btn-primary {
  background-color: #1a5485;
  color: white;
  min-width: 300.19px;
}
.btn-secondary {
  background-color: #e4f0ff;
  color: #000000;
  min-width: 295.5px;
} */
    .header-actions {
        flex-direction: row;
        width: 100%;
        gap: 10px;
    }
    
    .btn {
        width: 60%;
        max-width: 200px;
        font-size: 13px;
        padding: 8px 10px;
    }
    
    .nav-list {
        width: 100%;
    }
    
    .nav-item .nav-link {
        width: 100%;
        text-align: center;
        min-width: auto;
    }
    
    .game-content {
        padding: 20px;
    }
    
    .game-title {
        font-size: 24px;
    }
    
    .game-description {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .pool-title {
        font-size: 24px;
    }
    
    .pool-description {
        font-size: 14px;
    }
}

/* Footer Section */
.footer-section {
  background-color: #e3e3e3;
  padding: 0;
  height: 196.19px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-banner {
  /* padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 119px; */
}

.footer-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-copyright {
  padding: 0 10px;
  height: 57.19px;
  display: flex;
  align-items: center;
}

.copyright-text {
  width: 100%;
  text-align: center;
  color: #545454;
  font-size: 14px;
  line-height: 28px;
  margin: 0;
}

/* Responsive styles for footer */
@media (max-width: 1200px) {
  .footer-banner-image {
    width: 90%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .footer-section {
    height: auto;
  }
  
  .footer-banner {
    height: auto;
    padding: 15px 10px;
  }
  
  .footer-banner-image {
    width: 100%;
  }
}

/* Sports Grid Styles */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.sport-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sport-card h4 {
  color: #0b3774;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.sport-card p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}

/* Odds Table Styles */
.odds-table {
  width: 100%;
  margin: 20px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

/* Responsive styles for sports grid */
@media (max-width: 992px) {
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sports-grid {
    grid-template-columns: 1fr;
  }
}

/* Partnership Section Override */
.hot-games-section:last-of-type {
  padding: 30px 0 !important;
  min-height: auto !important;
  background-color: #f5f5f5 !important;
}

.hot-games-section:last-of-type .section-header {
  margin-bottom: 30px !important;
  /* justify-content: center !important; */
}

.hot-games-section:last-of-type .games-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 15px !important;
  padding: 0 !important;
  grid-template-columns: none !important;
}

.hot-games-section:last-of-type .game-card {
  flex: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 5px !important;
  margin: 5px !important;
  width: auto !important;
  height: auto !important;
}

.hot-games-section:last-of-type .partner-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
}

.hot-games-section:last-of-type .partner-logo a {
  display: inline-block !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
  text-decoration: none !important;
}

.hot-games-section:last-of-type .partner-logo a:hover {
  transform: translateY(-3px) scale(1.05) !important;
  opacity: 0.8 !important;
}

.hot-games-section:last-of-type .partner-logo a img {
  display: block !important;
}

  .partnership-logos-section {
    padding: 0 0 60px 0;
    background-color: #f5f5f5;
  }

.partnership-logos {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.partner-row {
  text-align: center;
  margin-bottom: 20px;
  line-height: 0;
}

.partner-row:last-child {
  margin-bottom: 0;
}

.partner-logo {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  line-height: 1;
}

.partner-logo:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.partner-img {
  max-width: 240px;
  max-height: 80px;
  object-fit: contain;
  width: 140px;
  height: 80px;
  vertical-align: middle;
}

/* Responsive Design for Partnership Section */
@media (max-width: 768px) {
  .hot-games-section:last-of-type {
    padding: 20px 0 !important;
  }
  
  .hot-games-section:last-of-type .section-header {
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    gap: 5px !important;
  }
  
  .hot-games-section:last-of-type .section-icon {
    margin: 0 auto !important;
  }
  
  .hot-games-section:last-of-type .section-title {
    text-align: center !important;
    width: 100% !important;
    margin: 0 !important;
  }
  
  .hot-games-section:last-of-type .games-grid {
    gap: 10px !important;
  }
  
  .hot-games-section:last-of-type .game-card {
    margin: 3px !important;
  }
  
  .partner-img {
    max-width: 110px !important;
    max-height: 60px !important;
    width: 110px !important;
    height: 60px !important;
  }
  
  .hot-games-section:last-of-type .section-title {
    font-size: 24px !important;
  }
}

@media (max-width: 576px) {
  .hot-games-section:last-of-type .games-grid {
    gap: 8px !important;
  }
  
  .partner-img {
    max-width: 90px !important;
    max-height: 50px !important;
    width: 90px !important;
    height: 50px !important;
  }
}
