<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Responsive Styles */

/* Large Devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  
  .service-card {
    flex: 0 0 calc(33.333% - var(--spacing-lg));
  }
  
  .newsletter-form input {
    width: 250px;
  }
}

/* Medium Devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text, .about-images {
    width: 100%;
  }
  
  .service-card {
    flex: 0 0 calc(50% - var(--spacing-lg));
  }
  
  .hotel-grid, .casino-hotel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-container {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-content {
    margin-bottom: var(--spacing-md);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
  
  #header .container {
    padding: 0 var(--spacing-sm);
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-xl) var(--spacing-md);
    transition: left 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav ul li {
    margin: 0 0 var(--spacing-md) 0;
  }
  
  .mobile-menu-toggle {
    display: block;
    z-index: 1002;
  }
  
  .search-bar {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .service-card {
    flex: 0 0 100%;
  }
  
  .hotel-grid, .casino-hotel-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
    border-radius: 30px;
    margin-bottom: var(--spacing-sm);
  }
  
  .newsletter-form .btn-subscribe {
    border-radius: 30px;
    width: 100%;
  }
}

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .container {
    width: 100%;
    padding: 0 var(--spacing-md);
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    margin-bottom: var(--spacing-md);
  }
  
  .image-container img {
    height: 200px;
  }
  
  .hotel-image, .casino-hotel-image {
    height: 200px;
  }
}</pre></body></html>