/* Base Styles */
:root {
  --primary-color: #0077b6;
  --primary-dark: #03045e;
  --primary-light: #90e0ef;
  --secondary-color: #f48c06;
  --tertiary-color: #38b000;
  --text-color: #333333;
  --text-light: #6c757d;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  --border-color: #dee2e6;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --success-color: #38b000;
  --warning-color: #ffaa00;
  --error-color: #e63946;
  --font-family: 'Montserrat', sans-serif;
  --font-family-heading: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--primary-dark);
}

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

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

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  line-height: 1.3;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--border-color);
  color: var(--text-color);
}

.hidden {
  display: none !important;
}

/* Header styles */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

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

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.discrete-link {
  font-size: 0.9em;
  opacity: 0.9;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin-bottom: 5px;
  border-radius: 2px;
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  nav.active {
    height: auto;
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 15px 0;
  }
}

/* Hero section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 150px 0;
  margin-top: -80px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Neon button effect */
.neon-button {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  letter-spacing: 4px;
  background-color: transparent;
  border: 2px solid var(--primary-light);
  border-radius: var(--border-radius);
  box-shadow: 0 0 5px var(--primary-light),
              0 0 15px var(--primary-light),
              0 0 30px var(--primary-light);
}

.neon-button:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 0 10px var(--primary-light),
              0 0 30px var(--primary-light),
              0 0 60px var(--primary-light);
}

/* What You'll Learn section */
.what-you-learn {
  background-color: var(--bg-light);
  text-align: center;
}

.what-you-learn h2 {
  margin-bottom: 50px;
}

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

.learn-item {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.learn-item:hover {
  transform: translateY(-10px);
}

.learn-item .icon {
  background-color: var(--primary-light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.learn-item .icon svg {
  color: var(--primary-dark);
}

.learn-item h3 {
  margin-bottom: 15px;
}

/* Hotel Types section */
.hotel-types {
  text-align: center;
}

.hotel-types h2 {
  margin-bottom: 50px;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.hotel-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.hotel-card:hover {
  transform: translateY(-10px);
}

.hotel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hotel-card h3 {
  margin: 20px 0 10px;
  padding: 0 20px;
}

.hotel-card p {
  padding: 0 20px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.hotel-card .btn {
  margin: 0 20px 20px;
}

/* Featured Posts section */
.featured-posts {
  background-color: var(--bg-light);
  text-align: center;
}

.featured-posts h2 {
  margin-bottom: 50px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.post-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-10px);
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  margin-bottom: 10px;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover::after {
  margin-left: 10px;
}

.view-all {
  margin-top: 40px;
}

/* Interactive Map section */
.interactive-map {
  text-align: center;
}

.map-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.7);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: white;
}

.map-overlay p {
  max-width: 600px;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

/* Newsletter section */
.newsletter {
  background-color: var(--primary-dark);
  color: white;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter-form button {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: #e67e00;
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
    padding: 15px 0;
  }
}

/* Footer styles */
footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
}

.social-icons svg {
  color: white;
}

.footer-links h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact svg {
  margin-right: 10px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none; /* Hidden by default, controlled by JS */
}

.cookie-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-accept {
  background-color: var(--success-color);
  color: white;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
}

.btn-customize {
  background-color: var(--bg-light);
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.btn-reject {
  background-color: transparent;
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.cookie-learn-more {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
}

/* Blog page styles */
.page-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/10.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.page-banner h1 {
  color: white;
  margin-bottom: 20px;
}

.blog-filters {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 200px;
}

.filter-group label {
  margin-bottom: 5px;
  font-weight: 500;
}

.filter-group select {
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
}

.filter-btn {
  align-self: flex-end;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .filter-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-btn {
    width: 100%;
    margin-top: 10px;
  }
}

.blog-posts {
  padding: 60px 0;
}

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

.blog-card {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.blog-image {
  flex: 0 0 40%;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  flex: 1;
  padding: 30px;
}

.blog-meta {
  display: flex;
  margin-bottom: 15px;
}

.blog-category {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 15px;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.blog-content h2 {
  margin-bottom: 15px;
}

.blog-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
  }
  
  .blog-image {
    height: 200px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  gap: 10px;
}

.pagination .current-page,
.pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 500;
}

.pagination .current-page {
  background-color: var(--primary-color);
  color: white;
}

.pagination .page-link {
  background-color: var(--bg-light);
  color: var(--text-color);
}

.pagination .page-link:hover {
  background-color: var(--primary-light);
}

.pagination .next {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
}

/* Hotel Types page styles */
.hotel-type-nav {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 80px;
  z-index: 99;
}

.type-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
}

.type-tabs li {
  flex: 0 0 auto;
}

.type-tabs a {
  display: block;
  padding: 15px 20px;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.type-tabs a.active {
  color: var(--primary-color);
}

.type-tabs a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.hotel-type-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-color);
}

.hotel-type-section:last-child {
  border-bottom: none;
}

.type-header {
  margin-bottom: 40px;
}

.type-meta {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.price-range,
.best-for {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.price-range svg,
.best-for svg {
  margin-right: 5px;
}

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

.type-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.type-description h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.region-tags span {
  background-color: var(--bg-light);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .type-content {
    grid-template-columns: 1fr;
  }
}

.featured-examples h3 {
  margin-bottom: 30px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.example-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.example-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.example-card h4 {
  margin: 15px 15px 5px;
  font-size: 1.1rem;
}

.example-card p {
  margin: 0 15px 15px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.compare-types {
  background-color: var(--bg-light);
  text-align: center;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-color);
  color: white;
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}

/* Contact page styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 30px;
}

.info-card {
  display: flex;
  margin-bottom: 30px;
}

.info-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.info-icon svg {
  color: var(--primary-dark);
}

.info-details h3 {
  margin-bottom: 5px;
}

.info-details p {
  margin-bottom: 5px;
  color: var(--text-light);
}

.social-connect {
  margin-top: 40px;
}

.social-connect h3 {
  margin-bottom: 15px;
}

.contact-form-container h2 {
  margin-bottom: 30px;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  margin: 0;
  font-weight: normal;
  font-size: 0.9rem;
  color: var(--text-light);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.map-section {
  background-color: var(--bg-light);
  text-align: center;
}

.map-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 30px;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.map-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: left;
}

.faq-item h3 {
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.popup-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.popup-icon {
  width: 70px;
  height: 70px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.popup-icon svg {
  color: white;
}

.popup h2 {
  margin-bottom: 15px;
}

.popup p {
  margin-bottom: 25px;
}

.close-btn {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
}

/* Casino Hotels page styles */
.age-verification {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}

.age-verification-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  max-width: 600px;
  text-align: center;
}

.age-icon {
  width: 80px;
  height: 80px;
  background-color: var(--warning-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.age-icon svg {
  color: white;
}

.age-verification-content h2 {
  margin-bottom: 20px;
}

.age-verification-content p {
  margin-bottom: 30px;
}

.verification-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.casino-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/41.jpg');
}

.responsible-gambling-notice {
  background-color: #f8f9fa;
}

.notice-content {
  display: flex;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  border-left: 5px solid var(--warning-color);
}

.notice-icon {
  flex: 0 0 60px;
  display: flex;
  align-items: flex-start;
  margin-right: 20px;
}

.notice-icon svg {
  color: var(--warning-color);
}

.notice-text h2 {
  margin-bottom: 15px;
}

.support-links {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.support-links h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.support-links ul {
  margin-bottom: 0;
}

.support-links a {
  color: var(--primary-color);
  text-decoration: underline;
}

.casino-hotels-regions {
  text-align: center;
}

.region-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.region-tab {
  background-color: var(--bg-light);
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.region-tab.active {
  background-color: var(--primary-color);
  color: white;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.hotel-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
}

.hotel-image {
  position: relative;
}

.hotel-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hotel-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hotel-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hotel-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.stars {
  display: flex;
  color: #ffaa00;
}

.price {
  color: var(--text-light);
  font-weight: 600;
}

.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hotel-features span {
  background-color: var(--bg-light);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.hotel-content .btn {
  margin-top: auto;
}

.casino-features {
  background-color: var(--bg-light);
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  color: var(--primary-dark);
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.casino-responsible-tips {
  text-align: center;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tip-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: left;
}

.tip-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.tip-card p {
  margin-bottom: 0;
}

/* About Us page styles */
.about-story {
  padding: 80px 0;
}

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

.story-content h2 {
  margin-bottom: 30px;
}

.story-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

.about-mission {
  background-color: var(--bg-light);
  text-align: center;
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto 50px;
}

.lead-text {
  font-size: 1.5rem;
  line-height: 1.5;
  font-family: var(--font-family-heading);
  color: var(--primary-dark);
}

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

.value-card {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  color: var(--primary-dark);
}

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.team-intro {
  max-width: 800px;
  margin: 0 auto 50px;
}

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

.team-member {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  margin: 20px 20px 5px;
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 15px;
  color: var(--text-light);
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  background-color: var(--bg-light);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links svg {
  color: var(--primary-color);
}

.about-approach {
  background-color: var(--bg-light);
}

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

.approach-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.step {
  display: flex;
  margin-bottom: 30px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex: 0 0 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 20px;
}

.step-content h3 {
  margin-bottom: 10px;
}

.step-content p {
  margin-bottom: 0;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .approach-content {
    grid-template-columns: 1fr;
  }
}

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

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

.stat-card {
  background-color: var(--primary-dark);
  color: white;
  padding: 30px;
  border-radius: var(--border-radius);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: var(--font-family-heading);
}

.stat-card p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.testimonials {
  background-color: var(--bg-light);
  text-align: center;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.testimonial {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  text-align: left;
}

.testimonial-content {
  position: relative;
  padding-top: 30px;
}

.testimonial-content::before {
  content: """;
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 5rem;
  color: var(--primary-light);
  font-family: serif;
  line-height: 1;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin-bottom: 0;
}

.author-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .testimonial {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .testimonial {
    flex: 0 0 100%;
  }
}

.partners {
  text-align: center;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.partner {
  flex: 0 0 calc(20% - 32px);
  filter: grayscale(1);
  opacity: 0.7;
  transition: var(--transition);
}

.partner:hover {
  filter: grayscale(0);
  opacity: 1;
}

.partner img {
  max-height: 60px;
  width: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .partner {
    flex: 0 0 calc(33.333% - 27px);
  }
}

@media (max-width: 576px) {
  .partner {
    flex: 0 0 calc(50% - 20px);
  }
}

/* Blog Post page styles */
.blog-post {
  margin-bottom: 80px;
}

.post-hero {
  height: 500px;
  overflow: hidden;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-header {
  margin: 60px 0 40px;
  text-align: center;
}

.post-meta {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.post-category,
.post-date,
.post-author {
  margin: 0 10px;
}

.post-category {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.post-date,
.post-author {
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-header h1 {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 2.8rem;
}

.post-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.post-social a {
  background-color: var(--bg-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-social svg {
  color: var(--primary-color);
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.post-section {
  margin-bottom: 60px;
}

.post-section h2 {
  margin-bottom: 25px;
}

.post-section img {
  width: 100%;
  border-radius: var(--border-radius);
  margin-bottom: 25px;
}

.post-section h3 {
  margin: 30px 0 15px;
}

.hotel-specs {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 30px;
}

.spec {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.spec:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
}

.conclusion {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
}

.conclusion h2 {
  margin-bottom: 20px;
}

.conclusion ul {
  margin-bottom: 25px;
}

.author-box {
  display: flex;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 60px 0;
}

.author-image {
  flex: 0 0 100px;
  margin-right: 20px;
}

.author-image img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.author-info h4 {
  margin-bottom: 10px;
}

.author-info p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.author-social {
  display: flex;
  gap: 10px;
}

@media (max-width: 576px) {
  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .author-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.post-navigation {
  display: flex;
  margin: 60px 0;
}

.post-nav-box {
  flex: 1;
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: var(--border-radius);
}

.post-nav-box.prev {
  margin-right: 15px;
}

.post-nav-box.next {
  margin-left: 15px;
  text-align: right;
}

.nav-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.post-nav-box a {
  font-weight: 600;
}

.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  margin-bottom: 30px;
  text-align: center;
}

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

.related-post {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h4 {
  padding: 15px;
  margin: 0;
  font-size: 1.1rem;
}

.related-post h4 a {
  color: var(--text-color);
}

.related-post h4 a:hover {
  color: var(--primary-color);
}
