/* Night Time Zone – Luxury Casino & Hotel */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7B2E;
  --black: #0A0A0A;
  --dark-blue: #0D1B2A;
  --navy: #1B2838;
  --white: #F5F5F0;
  --gray: #8A8A8A;
  --gray-light: #C4C4C4;
  --overlay: rgba(10, 10, 10, 0.85);
  --transition: 0.3s ease;
  --radius: 4px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--gold-light);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
}

.section-header p {
  color: var(--gray-light);
  max-width: 600px;
  margin: 0.5rem auto 0;
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-filled {
  background: var(--gold);
  color: var(--black);
}

.btn-filled:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
}

.btn-small {
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo svg {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-text span {
  color: var(--white);
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.main-nav a {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(13, 27, 42, 0.8) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 1.5rem 4rem;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

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

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  transform: translate(12px, 12px);
  border-radius: var(--radius);
  z-index: -1;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--gray-light);
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.feature-item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* Games Section */
.games-section {
  background: var(--dark-blue);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.game-card {
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.game-card .game-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.game-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.game-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* Hotel & Restaurant */
.hotel-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
}

.hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hotel-card {
  background: rgba(27, 40, 56, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.hotel-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.hotel-card p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.hotel-card ul {
  list-style: none;
}

.hotel-card li {
  padding: 0.5rem 0;
  color: var(--gray-light);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.hotel-card li::before {
  content: '◆';
  color: var(--gold);
  margin-right: 0.75rem;
  font-size: 0.6rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Visit CTA */
.visit-cta {
  text-align: center;
  padding: 5rem 0;
  background: var(--dark-blue);
  position: relative;
}

.visit-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.visit-cta h2 {
  margin-bottom: 1rem;
}

.visit-cta p {
  color: var(--gray-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.visit-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* Map */
.map-section {
  padding: 0;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border: none;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) contrast(1.1);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
}

.contact-card .contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--dark-blue);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold);
}

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

.footer-bottom p {
  color: var(--gray);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--gray);
  font-size: 0.8rem;
}

.cookie-settings-btn {
  background: none;
  border: 1px solid var(--gray);
  color: var(--gray);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.cookie-settings-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Page Header */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.page-header p {
  color: var(--gray-light);
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* Careers */
.jobs-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.job-card {
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}

.job-card:hover {
  border-color: var(--gold);
}

.job-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.job-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.job-meta span {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.job-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.job-requirements {
  list-style: none;
  margin-bottom: 1.5rem;
}

.job-requirements li {
  color: var(--gray-light);
  font-size: 0.9rem;
  padding: 0.3rem 0;
}

.job-requirements li::before {
  content: '✓';
  color: var(--gold);
  margin-right: 0.5rem;
}

/* Forms */
.form-section {
  background: var(--dark-blue);
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--black);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.5;
}

/* Partnership */
.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.partner-card {
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.partner-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.partner-card .partner-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.partner-card h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.partner-card p {
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* About Page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
}

.value-card .value-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.value-card p {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(201, 168, 76, 0.3);
  margin: 2rem 0;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}

.timeline-item h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--gold);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  color: var(--gray-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-content ul {
  color: var(--gray-light);
  margin: 0 0 1rem 1.5rem;
  font-size: 0.95rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--dark-blue);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: transform var(--transition);
  box-shadow: var(--shadow);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal h2 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.modal p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.modal .responsible-link {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.modal .responsible-link a {
  color: var(--gold);
  text-decoration: underline;
}

.modal-info {
  background: var(--navy);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin: 1rem 0;
  text-align: left;
}

.modal-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.modal-info strong {
  color: var(--gold);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-blue);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  color: var(--gray-light);
  font-size: 0.85rem;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-settings-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.cookie-settings-panel.active {
  display: block;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.cookie-toggle label {
  color: var(--gray-light);
  font-size: 0.85rem;
}

.cookie-toggle input[type="checkbox"] {
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
}

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.active {
  display: block;
}

.form-success h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partnership-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-blue);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(201, 168, 76, 0.2);
  }

  .main-nav.active {
    right: 0;
  }

  .about-grid,
  .hotel-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 280px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .form-section {
    padding: 2rem 1.5rem;
  }
}

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

  .hero-buttons,
  .visit-buttons,
  .modal-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
