<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: "Montserrat";
  src: url(/fonts/Montserrat/Montserrat-VariableFont_wght.ttf);
}

/* Base Styles */
:root {
  --primary-color: #0091EA;
  --secondary-color: #00C853;
  --accent-color: #FFC107;
  --dark-color: #000000;
  --light-color: #FFFFFF;
  --grey-color: #333333;
  --dark-grey: #161616;
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--light-color);
  background-color: var(--dark-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 1.6rem;
  color: var(--accent-color);
}

p {
  margin-bottom: 15px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #0078c1;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background-color: var(--dark-grey);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 1px solid var(--primary-color);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

/* Header &amp; Navigation */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: white;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-menu a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: white;
}

/* Hero Section */
.hero {
  background-color: var(--dark-grey);
  padding: 120px 0 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.hero-text {
  text-align: left;
  margin-bottom: 20px;
}

.hero-text h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h2 {
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
}

.grid-item {
  overflow: hidden;
  border-radius: 5px;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Overview Section */
.overview {
  background-color: var(--dark-color);
  padding: 60px 0;
}

.overview-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.overview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Rankings Section */
.rankings {
  background-color: var(--dark-grey);
}

.sports-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.sports-bar-card {
  background-color: var(--dark-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: var(--transition);
  border: 1px solid #222;
}

.sports-bar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.sports-bar-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.sports-bar-card p {
  margin-bottom: 20px;
  color: #ccc;
}

.bar-more {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  position: relative;
  padding-right: 20px;
}

.bar-more:after {
  content: "â†’";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.bar-more:hover {
  color: var(--primary-color);
}

.bar-more:hover:after {
  right: -5px;
}

/* Bar Detail Section */
.bar-detail {
  background-color: var(--dark-color);
  padding: 80px 0;
  border-top: 1px solid #222;
}

.bar-detail-content {
  background-color: var(--dark-grey);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto;
}

.bar-rating {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.bar-detail h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.bar-offers {
  margin: 25px 0;
}

.bar-offers h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--light-color);
}

.bar-offers ul {
  list-style: none;
}

.bar-offers li {
  margin-bottom: 10px;
}

.bar-website {
  margin: 20px 0;
  font-size: 1.1rem;
}

.bar-website a {
  color: var(--primary-color);
  text-decoration: underline;
}

.bar-website a:hover {
  color: var(--accent-color);
}

.bar-image {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.bar-image img {
  width: 100%;
  height: auto;
}

/* Why Choose Section */
.why-choose {
  background-color: var(--dark-grey);
  padding: 80px 0;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-choose-text h2 {
  color: var(--primary-color);
  margin-bottom: 25px;
}

.why-choose-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.benefits {
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  margin-bottom: 20px;
}

.benefit-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.why-choose-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-choose-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Contact Section */
.contact {
  background-color: var(--dark-color);
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-text h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-text h3 {
  color: var(--light-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.contact-text p {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #333;
  border-radius: var(--border-radius);
  background-color: var(--dark-grey);
  color: var(--light-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* Footer */
.footer {
  background-color: var(--dark-grey);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.footer-logo a {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.footer-nav h3 {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: var(--light-color);
}

.footer-nav h3:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-disclaimer,
.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 10px;
}

.age-badge {
  display: inline-block;
  background-color: #f44336;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  h1 {
      font-size: 2.4rem;
  }
  
  h2 {
      font-size: 1.9rem;
  }
  
  section {
      padding: 60px 0;
  }
  
  .hero-grid {
      grid-template-rows: repeat(2, 180px);
  }
  
  .why-choose-content,
  .contact-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .why-choose-images {
      order: -1;
  }
}

@media (max-width: 768px) {
  .hamburger {
      display: block;
  }
  
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 70px;
      flex-direction: column;
      background-color: rgba(0, 0, 0, 0.95);
      width: 100%;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
      z-index: 1000;
  }
  
  .nav-menu.active {
      left: 0;
  }
  
  .nav-menu li {
      margin: 15px 0;
  }
  
  h1 {
      font-size: 2rem;
  }
  
  h2 {
      font-size: 1.7rem;
  }
  
  .hero-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(3, 150px);
  }
  
  .bar-detail-content {
      padding: 20px;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
  }
  
  .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 1.7rem;
  }
  
  h2 {
      font-size: 1.4rem;
  }
  
  .hero-grid {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(6, 150px);
  }
  
  .bar-detail-content {
      padding: 15px;
  }
  
  .why-choose-images {
      grid-template-columns: 1fr;
  }
}</pre></body></html>