<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary-color: #ff7e07;
  --success-color: #14ae5c;
  --danger-color: #ec221f;
  --info-color: #4444ec;
  --secondary-color: #1a1a1a;
  --text-color: #000;
  --text-primary-color: #333333;
  --text-secondary-color: #eec982;
  --text-gray: #9a9a9a;
  --background-dark: #fff;
  --nav-link-background-color: #e95f0c;
  --nav-link-hover-color: #d05003;
  --header-background-color: #201f1f;
  --card-featured-background-color: linear-gradient(
    180deg,
    rgba(150, 96, 19, 0) 0%,
    rgba(252, 161, 32, 0.3) 100%
  );

  --card-background-color: #2c3039;
  --border-radius-lg: 12px;
  --border-radius-md: 8px;
  --border-radius-sm: 8px;
  --container-max-width: 1100px;
  --mobile-header-height: 60px;
  --desktop-header-height: 90px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: var(--background-dark);
  color: var(--text-color);
  line-height: 1.6;
}

a {
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  text-decoration: none;
}

a.underline:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

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

.align-items-center {
  align-items: center;
}

.gap-1 {
  gap: 0.5rem;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 24px !important;
}

.mt-4 {
  margin-top: 32px !important;
}

.mt-7 {
  margin-top: 56px !important;
}

.mt-8 {
  margin-top: 64px !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-gray {
  color: var(--text-gray) !important;
}

.text-secondary {
  color: var(--text-secondary-color) !important;
}

.text-caption {
  font-size: 0.75rem !important;
}

.text-white {
  color: #fff !important;
}

.font-bold {
  font-weight: bold;
}

.vertical-divider {
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 1rem;
}

.btn {
  padding: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: bold;
  transition: 0.3s;
  min-width: 128px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon {
  margin-right: 0.875rem;
  width: 20px;
  height: 20px;
}

/* LOGO */

.logo-section {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  padding: 1rem;
}

.logo {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo a {
  display: inline-block;
  line-height: 0;
}

.logo img {
  margin-left: 25px;
  height: calc(var(--mobile-header-height) - 28px);
}

/* Navbar */
/* .navbar {
  background-color: var(--secondary-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin: 0 auto;
  max-width: var(--container-max-width);
}

.navbar-left,
.navbar-right {
  display: flex;
  align-items: center;
}

.navbar-right {
  gap: 0.5rem;
  align-items: flex-start;
}

.navbar-right .menu-toggle {
  margin-top: 0.5rem;
}

.navbar-right a {
  flex: 1;
}

.navbar-right a button {
  width: 100%;
}

.nav-text {
  display: none;
} */

.auth-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-register,
.btn-login,
.btn-bet-now,
.btn-review {
  white-space: nowrap;
  width: 180px;
  text-transform: uppercase;
  min-width: unset;
  color: #fff;
  border: none;
  background-color: transparent;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.btn-success {
  background-color: var(--success-color) !important;
}

.btn-register {
  background-color: var(--primary-color);
}

.btn-login {
  background-color: var(--success-color);
}

.btn-bet-now {
  background-color: var(--danger-color);
}

.btn-review {
  background-color: var(--info-color);
}

.nav-links {
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  font-weight: bold;
  display: none;
  list-style: none;
  background-color: var(--nav-link-background-color);
  z-index: 9999;
}

.nav-links a {
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.nav-links a:hover,
.nav-links .active {
  background-color: var(--nav-link-hover-color);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: 0.3s;
}

/* Mobile Menu */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--mobile-header-height);
  left: 0;
  right: 0;
  background-color: var(--nav-link-background-color);
  padding: 0;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  padding-left: 1rem;
  list-style-type: none;
  display: none;
}

.dropdown svg {
  margin-left: 0.5rem;
}

/* Hero Section */
.hero {
  padding: 2rem 1rem;
  text-align: center;
}

.hero-content {
  margin: 0 auto;
}

.hero-title {
  font-size: 2rem;
  padding: 0;
  margin: 0 auto;
  line-height: 1.1875;
}

.hero-text {
  font-size: 0.875rem;
  padding: 0;
  margin: 0 auto;
  font-weight: 500;
}

main {
  padding: 0 1rem;
  background-image: url("../imgs/banner.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 200%;
  background-color: #fff;
}

/* Betting Sites */
.betting-sites {
  max-width: var(--container-max-width);
  margin: 3rem auto 0;
  padding: 0;
}

.betting-sites-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.site-card {
  background-color: rgb(255 126 7 / 10%);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-lg);
}

.game .site-card {
  background-color: var(--primary-color);
}


.site-card + .site-card {
  margin-top: 0.75rem;
}

.site-card.featured {
  background: var(--card-featured-background-color);
  background-color: #fff;
  border: 1px solid var(--primary-color);
}

.site-header {
  width: 100%;
  display: flex;
  overflow: hidden;
  align-items: center;
  padding: 0 16px;
  font-size: 1rem;
  background-color: var(--primary-color);
}

.site-header h2 {
  display: flex;
  justify-content: center;
  flex: 1;
  text-align: center;
  font-size: 1rem;
  line-height: 42px;
  padding: 0 15%;
}

.site-header .premium-container {
  display: flex;
  justify-content: center;
}

.site-header .premium-container {
  position: relative;
}

.site-header .premium {
  overflow: hidden;
  display: flex;
  width: 42px;
  height: 42px;
  transform: translateX(-6px);
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-header .premium p {
  overflow: hidden;
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: -2px;
  line-height: 42px;
}

.site-body {
  position: relative;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured .site-body {
  padding-top: 56px;
  padding-bottom: 1.5rem;
}

.site-info {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-rank {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 100%;
}

.site-info .top-1 {
  align-self: center;
  width: 36px;
}

.site-info .top-1 img {
  width: 100%;
}

.site-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-image {
  width: 192px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.featured .site-image {
  border-radius: 16px;
  padding: 20px 16px;
  background-color: var(--primary-color);
}

.site-image img {
  max-width: 100%;
}

.featured .site-image {
  margin-top: 1rem;
}

.site-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-size: 1rem;
}

.site-rating h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.2;
}

.game .site-rating h3 {
  color: #fff;
}

.site-rating .rating {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.site-features {
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  list-style-type: none;
  color: var(--text-color);
}

.game .site-features {
  color: #fff;
}

.site-features li {
  display: flex;
  align-items: center;
  width: 100%;
}

.site-features img {
  margin-right: 0.5rem;
}

.featured .site-features {
  color: var(--text-color);
}

.site-actions {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  gap: 1rem;
}

.site-actions a {
  width: 100%;
}

.site-actions button {
  width: 100%;
}

.site-footer {
  position: relative;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 4fr;
  gap: 1rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 1px;
  width: calc(100% - 2rem);
  background-color: var(--primary-color);
}

.site-footer-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1rem;
  border-radius: var(--border-radius-md);
  color: #fff;
  padding: 1rem 1.25rem;
  background-repeat: no-repeat;
  background-size: 110%;
  background-position-x: center;
  background-position-y: 25%;
}

.site-footer-item h3 {
  font-size: 1.5rem;
  line-height: 1;
}

.site-footer a:nth-child(1) .site-footer-item {
  background-image: url("../imgs/bg-1.png");
}

.site-footer a:nth-child(2) .site-footer-item {
  background-image: url("../imgs/bg-2.png");
}

.site-footer a:nth-child(3) .site-footer-item {
  background-image: url("../imgs/bg-3.png");
}

.site-footer a:nth-child(4) .site-footer-item {
  background-image: url("../imgs/bg-4.png");
}

.site-footer-item .badge {
  text-transform: uppercase;
  font-weight: bold;
}

.badge {
  display: inline-flex;
  background-color: var(--primary-color);
  border-radius: 0.25rem;
  padding: 0.3125rem 0.875rem;
  color: var(--text-color);
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
}

.badge:hover {
  text-decoration: none;
}

.featured .site-actions .btn-bet {
  background-color: var(--accent-color);
  border-color: #ff0000;
  color: white;
  flex: 1;
}

.site-actions .btn-bet {
  font-weight: bold;
  background-color: var(--text-secondary-color);
  border: 1px solid var(--text-secondary-color);
  color: var(--text-primary-color);
  text-transform: uppercase;
}

.site-actions .btn-details {
  border-color: var(--text-gray);
  color: var(--text-gray);
}

/* Secure bet */
.secure-bet-banner {
  background-image: url("../imgs/bg-5.png");
  background-size: cover;
  background-position-x: 70%;
  background-repeat: no-repeat;
  color: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2rem 1rem;
}

.secure-bet-banner br {
  display: none;
}

/* Game */
.game {
  background-color: #f2f2f2;
  padding: 64px 16px;
  margin-left: -16px;
  margin-right: -16px;
  width: 100vw;
}

.game .betting-sites {
  margin-top: 0;
}

/* Game Categories */
.game-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.game-card {
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* Game Grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.game-grid a:hover {
  text-decoration: none;
}

.game-item {
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}

.game-item:hover {
  transform: scale(1.05);
}

.game-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.game-item span {
  position: absolute;
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  bottom: 2rem;
  left: 0;
  width: 100%;
}

.game-card a {
  width: 100%;
  display: inline-block;
}

.game-card a:hover {
  text-decoration: none;
}

.game-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.game-card span {
  position: absolute;
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
  bottom: 2rem;
  left: 0;
  width: 100%;
  color: #fff;
}

/* Intro section */

.intro-section {
  border-radius: 20px;
  overflow: hidden;
}

.intro-section .about {
  position: relative;
  background-image: url("../imgs/bg-6.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.intro-section .about::before {
  content: " ";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 126, 7, 0.55) 0%,
    rgba(255, 126, 7, 0) 100%
  );
}

.intro-section .about-info {
  color: #fff;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.intro-section .about-info h3 {
  font-size: 1.5rem;
}

.intro-section .about-detail {
  display: grid;
  grid-template-columns: 94px 1fr;
  grid-template-rows: repeat(9, fit-content);
  grid-column-gap: 1rem;
  grid-row-gap: 0.5rem;
}

.intro-section &gt; a {
  display: flex;
}

.intro-section .content {
  color: #000;
  max-height: 500px;
  position: relative;
  overflow-y: scroll;
  padding: 1.5rem;
  background: linear-gradient(
    0deg,
    rgb(255, 126, 7, 0.2) 0%,
    rgba(255, 126, 7, 0) 100%
  );
}

.intro-section .see-more {
  color: #000;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.intro-section .see-more p {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.25rem;
  line-height: 1;
}

/* Blog Section */
.blog-section {
  position: relative;
  margin: 0 auto;
  max-width: var(--container-max-width);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--primary-color);
  background: linear-gradient(
    180deg,
    rgba(255, 126, 7, 0.1) 0%,
    rgba(255, 126, 7, 0.1) 100%
  );
  background-color: #fff;
  overflow: hidden;
}

.blog-section::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(178, 180, 189, 0.2);
}

.blog-section:last-child:after {
  display: none;
}

.blog-section h2 {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  padding: 0.25rem 0;
}

.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  padding: 1rem;
}

.blog-card {
  overflow: hidden;
  transition: transform 0.3s;
}

.blog-card &gt; a {
  width: 100%;
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-card h3 {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.blog-card h3 a {
  color: var(--text-color);
  line-height: 1.4;
}

.pagination-container {
  padding: 0 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
}

.pagination-item.active {
  background-color: var(--primary-color);
  color: #fff;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
}

.blog-detail {
  max-width: var(--container-max-width);
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--primary-color);
  background: linear-gradient(
    180deg,
    rgba(255, 126, 7, 0.1) 0%,
    rgba(255, 126, 7, 0.1) 100%
  );
  background-color: #fff;
  padding: 1.5rem;
}

/* Footer */
.footer {
  background-color: #393939;
  padding: 4rem 1rem 1rem;
  margin-top: 4rem;
}

.footer h6 {
  font-size: 1.5rem;
  text-align: center;
}

.contact-info a {
  padding: 0 0.25rem;
}

.contact-info .vertical-divider {
  display: none;
}

.another-footer {
  background-color: #2d2d2d;
  padding: 1.25rem 1rem;
}

.another-footer &gt; div {
  gap: 2rem;
  justify-content: space-between;
}

.another-footer .footer-arrow-icon {
  line-height: 0;
  margin-right: 0.5rem;
}

.another-footer .left-group,
.another-footer .right-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.another-footer .right-group .vertical-divider {
  display: none;
}

.hashtags {
  color: var(--primary-color);
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* .main-detail {
  margin-top: 60px;
} */

.navigation {
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation a {
  white-space: nowrap;
  color: var(--text-color);
  text-decoration: none;
}

.navigation svg {
  margin-top: -4px;
}

.navigation a:hover {
  text-decoration: underline;
}

.custom-scroll::-webkit-scrollbar {
  width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: rgba(255, 126, 7, 10%);
}

.custom-scroll::-webkit-scrollbar-thumb {
  width: 8px;
  border-radius: 8px;
  background-color: var(--primary-color);
}

#scrollTopBtn {
  display: none;
  position: fixed;
  width: 48px;
  height: 48px;
  bottom: 160px;
  right: 24px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 100%;
  background-color: var(--primary-color);
  backdrop-filter: blur(70px);
  box-shadow: 4px 8px 8px hsl(0deg 0% 0% / 0.38);
}

#scrollTopBtn svg {
  fill: white;
}

@media (min-width: 576px) {
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

  .auth-buttons {
    flex-direction: row;
  }
  
  @media only screen and (max-width: 766px){
      .hidemobile{
          display:none !important
      }
      .hero-title{
          font-size: 22px !important;
      }
      .site-rating h3{
          font-size: 22px !important;
      }
  }
/* Desktop Styles */
@media (min-width: 768px) {
  main {
    background-size: contain;
    padding: 0 1rem;
  }

  .navbar {
    padding: 0 1rem;
  }

  .navbar-container {
    display: flex;
    max-width: var(--container-max-width);
    flex-wrap: wrap;
    margin: auto;
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 1.685rem;
    padding: 0;
    margin: 0 auto;
  }

  .hero-text {
    max-width: calc(100% - 64px);
  }


  .betting-sites {
    padding: 0;
  }

  .site-actions {
    flex-direction: row;
  }

  /* Secure bet */
  .secure-bet-banner br {
    display: inline;
  }

  /* Game categories */
  .game-categories {
    grid-template-columns: repeat(6, 1fr);
  }

  /* Game grid */

  .game-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(
      auto-fit,
      minmax(calc((1100px - 3 * 1.5rem - 64px) / 4), 1fr)
    );
  }

  .footer h6 br {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .logo img {
    margin-left: 0;
    height: calc(var(--desktop-header-height) - 32px);
  }

  .menu-toggle {
    display: none;
  }

  .main-navbar div {
    background-color: var(--nav-link-background-color);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
  }

  .nav-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
  }

  .nav-links a {
    padding: 1rem;
    white-space: nowrap;
  }

  .dropdown-content {
    padding-left: 0;
    list-style-type: none;
    display: none;
    position: absolute;
    background-color: var(--nav-link-background-color);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .dropdown:hover .dropdown-content {
    display: block;
    top: 100%;
    padding-top: 8px;
  }

  .dropdown-content a {
    padding: 0.5rem 1rem;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
  }
}

@media screen and (min-width: 1100px) {
  main {
    padding: 0;
  }

  .navbar {
    padding: 0 1rem;
  }

  .navbar-container {
    padding: 1rem 0;
  }

  .navbar-left .nav-text {
    display: block;
    padding-left: 4rem;
    position: relative;
  }
  .navbar-left .nav-text::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    transform: translateX(32px);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-links {
    width: var(--container-max-width);
  }

  .betting-sites {
    padding: 0;
  }

  .site-rank {
    top: 0;
    left: 0;
  }

  .featured .site-rank {
    left: 7.5rem;
  }

  .site-header .premium-container {
    transform: translateX(2px);
    width: auto;
    margin-right: 0;
  }

  .site-body {
    padding: 1.5rem;
    flex-direction: row;
    gap: 2rem;
  }

  .site-content {
    display: flex;
    flex: 1;
    gap: 1rem;
  }

  .site-rating {
    align-items: flex-start;
  }

  .site-rating h3 {
    text-align: left;
  }

  .featured .site-rating {
    flex-shrink: unset;
  }

  .site-features {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-actions {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .site-actions button {
    width: 180px;
  }

  .site-footer {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.5rem;
  }

  .featured .site-actions {
    display: flex;
  }

  .site-image-container {
    margin-top: 0;
  }

  /* Game grid */
  .game-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer .introduce {
    text-align: center;
  }

  .footer .contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-info .vertical-divider {
    display: block;
  }

  .another-footer .left-group,
  .another-footer .right-group {
    flex-direction: row;
    align-items: center;
  }

  .another-footer .right-group .vertical-divider {
    display: block;
  }
}
</pre></body></html>