@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cinzel-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-700.woff2') format('woff2');
}

:root {
  --fm-primary-navy: #091326;
  --fm-secondary-navy: #11203f;
  --fm-deep-ocean: #172a53;
  --fm-accent-gold: #c8973e;
  --fm-accent-gold-light: #e5b967;
  --fm-accent-gold-dark: #a67524;
  --fm-gold-gradient: linear-gradient(135deg, #dfb466 0%, #b8852d 100%);
  --fm-gold-glow: 0 4px 20px rgba(200, 151, 62, 0.25);
  --fm-dark-bg: #070d1a;
  --fm-dark-surface: #0e192f;
  --fm-dark-card: #13223f;
  --fm-dark-border: rgba(200, 151, 62, 0.2);
  --fm-light-bg: #f8fafc;
  --fm-light-surface: #ffffff;
  --fm-light-border: #e2e8f0;
  --fm-text-main: #0f172a;
  --fm-text-muted: #64748b;
  --fm-text-light: #f8fafc;
  --fm-text-light-muted: #94a3b8;
  --fm-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fm-font-serif: 'Cinzel', Georgia, serif;
  --fm-transition: all 0.25s ease-in-out;
  --fm-radius-sm: 6px;
  --fm-radius-md: 10px;
  --fm-radius-lg: 16px;
  --fm-radius-full: 9999px;
  --fm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --fm-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --fm-shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --fm-shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.4);
}

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

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

body {
  font-family: var(--fm-font-sans);
  background-color: var(--fm-light-bg);
  color: var(--fm-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.fm-container {
  width: 100%;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.fm-container-narrow {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.fm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(9, 19, 38, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 151, 62, 0.3);
}

.fm-header-top {
  background-color: rgba(4, 9, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5px 0;
  font-size: 0.78125rem;
  color: var(--fm-text-light-muted);
}

.fm-header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.fm-header-notice {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fm-notice-badge {
  background-color: rgba(200, 151, 62, 0.18);
  color: var(--fm-accent-gold-light);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--fm-radius-sm);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fm-header-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fm-lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fm-lang-btn {
  color: var(--fm-text-light-muted);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  transition: var(--fm-transition);
}

.fm-lang-btn.active, .fm-lang-btn:hover {
  color: var(--fm-accent-gold-light);
  background-color: rgba(200, 151, 62, 0.2);
}

.fm-header-main {
  padding: 10px 0;
}

.fm-header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fm-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.fm-brand-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fm-brand-text {
  display: flex;
  flex-direction: column;
}

.fm-brand-title {
  font-family: var(--fm-font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fm-text-light);
  letter-spacing: 0.8px;
  line-height: 1.1;
  white-space: nowrap;
}

.fm-brand-title span {
  color: var(--fm-accent-gold-light);
}

.fm-brand-sub {
  font-size: 0.625rem;
  color: var(--fm-text-light-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

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

.fm-nav-list {
  display: flex;
  align-items: center;
  gap: 3px;
}

.fm-nav-item {
  position: relative;
  flex-shrink: 0;
}

.fm-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  color: var(--fm-text-light);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--fm-radius-sm);
  transition: var(--fm-transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.fm-nav-link:hover, .fm-nav-link.active {
  color: var(--fm-accent-gold-light);
  background-color: rgba(255, 255, 255, 0.08);
}

.fm-nav-link-badge {
  background: var(--fm-gold-gradient);
  color: var(--fm-primary-navy);
  font-weight: 800;
  font-size: 0.625rem;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 4px;
  text-transform: uppercase;
  line-height: 1.2;
}

.fm-header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.fm-burger-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--fm-radius-sm);
  padding: 7px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.fm-burger-line {
  width: 20px;
  height: 2px;
  background-color: var(--fm-text-light);
  transition: var(--fm-transition);
}

.fm-burger-btn.active .fm-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.fm-burger-btn.active .fm-burger-line:nth-child(2) {
  opacity: 0;
}

.fm-burger-btn.active .fm-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.fm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--fm-radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--fm-transition);
  text-align: center;
  white-space: nowrap;
}

.fm-btn-primary {
  background: var(--fm-gold-gradient);
  color: var(--fm-primary-navy);
  box-shadow: var(--fm-gold-glow);
  font-weight: 700;
}

.fm-btn-primary:hover {
  background: linear-gradient(135deg, #f0c97e 0%, #c99538 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 151, 62, 0.4);
}

.fm-btn-outline-gold {
  background: transparent;
  color: var(--fm-accent-gold-light);
  border-color: var(--fm-accent-gold);
}

.fm-btn-outline-gold:hover {
  background: rgba(200, 151, 62, 0.15);
  color: #ffffff;
  transform: translateY(-2px);
}

.fm-btn-outline-light {
  background: transparent;
  color: var(--fm-text-light);
  border-color: rgba(255, 255, 255, 0.25);
}

.fm-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.fm-btn-dark {
  background-color: var(--fm-secondary-navy);
  color: var(--fm-text-light);
  border-color: rgba(255, 255, 255, 0.1);
}

.fm-btn-dark:hover {
  background-color: var(--fm-deep-ocean);
  border-color: var(--fm-accent-gold);
  color: var(--fm-accent-gold-light);
}

.fm-btn-sm {
  padding: 7px 14px;
  font-size: 0.8125rem;
}

.fm-btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.fm-btn-full {
  width: 100%;
}

.fm-hero {
  position: relative;
  background-color: var(--fm-primary-navy);
  color: var(--fm-text-light);
  overflow: hidden;
  padding: 70px 0 90px;
}

.fm-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(9, 19, 38, 0.75) 0%, rgba(9, 19, 38, 0.95) 100%);
  z-index: 1;
}

.fm-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.fm-hero-content {
  position: relative;
  z-index: 2;
}

.fm-hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
}

.fm-hero-text-col {
  flex: 1 1 560px;
  max-width: 680px;
}

.fm-hero-card-col {
  flex: 1 1 400px;
  max-width: 480px;
}

.fm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(200, 151, 62, 0.15);
  border: 1px solid rgba(200, 151, 62, 0.35);
  color: var(--fm-accent-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: var(--fm-radius-full);
  margin-bottom: 18px;
}

.fm-hero-title {
  font-family: var(--fm-font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
}

.fm-hero-title .fm-gold-text {
  background: var(--fm-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fm-hero-desc {
  font-size: 1.0625rem;
  color: var(--fm-text-light-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.fm-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.fm-stats-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-stat-item {
  flex: 1 1 110px;
}

.fm-stat-value {
  font-family: var(--fm-font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fm-accent-gold-light);
  line-height: 1.1;
}

.fm-stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: var(--fm-text-light-muted);
  letter-spacing: 1px;
  margin-top: 3px;
}

.fm-hero-card {
  background: rgba(14, 25, 47, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 151, 62, 0.3);
  border-radius: var(--fm-radius-lg);
  padding: 28px;
  box-shadow: var(--fm-shadow-dark);
}

.fm-hero-card-header {
  margin-bottom: 18px;
}

.fm-hero-card-title {
  font-family: var(--fm-font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.fm-hero-card-desc {
  font-size: 0.8125rem;
  color: var(--fm-text-light-muted);
}

.fm-page-header {
  background-color: var(--fm-primary-navy);
  color: var(--fm-text-light);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 151, 62, 0.2);
}

.fm-page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.fm-page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.fm-page-badge {
  display: inline-flex;
  background-color: rgba(200, 151, 62, 0.15);
  border: 1px solid rgba(200, 151, 62, 0.3);
  color: var(--fm-accent-gold-light);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: var(--fm-radius-full);
  margin-bottom: 14px;
}

.fm-page-title {
  font-family: var(--fm-font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.fm-page-subtitle {
  font-size: 1rem;
  color: var(--fm-text-light-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.fm-breadcrumb-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.8125rem;
  color: var(--fm-text-light-muted);
}

.fm-breadcrumb-nav a {
  color: var(--fm-accent-gold-light);
}

.fm-breadcrumb-nav a:hover {
  text-decoration: underline;
}

.fm-breadcrumb-separator {
  color: rgba(255, 255, 255, 0.3);
}

.fm-section {
  padding: 70px 0;
}

.fm-section-dark {
  background-color: var(--fm-dark-bg);
  color: var(--fm-text-light);
}

.fm-section-navy {
  background-color: var(--fm-primary-navy);
  color: var(--fm-text-light);
}

.fm-section-light {
  background-color: var(--fm-light-bg);
  color: var(--fm-text-main);
}

.fm-section-white {
  background-color: #ffffff;
  color: var(--fm-text-main);
}

.fm-section-header {
  text-align: center;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}

.fm-section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fm-accent-gold);
  margin-bottom: 8px;
}

.fm-section-title {
  font-family: var(--fm-font-serif);
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.fm-section-title.text-light {
  color: #ffffff;
}

.fm-section-desc {
  font-size: 0.9375rem;
  color: var(--fm-text-muted);
}

.fm-section-dark .fm-section-desc, .fm-section-navy .fm-section-desc {
  color: var(--fm-text-light-muted);
}

.fm-flex-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.fm-col-12 { flex: 0 0 100%; max-width: 100%; padding: 0 10px; margin-bottom: 20px; }
.fm-col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; padding: 0 10px; margin-bottom: 20px; }
.fm-col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; padding: 0 10px; margin-bottom: 20px; }
.fm-col-6 { flex: 0 0 50%; max-width: 50%; padding: 0 10px; margin-bottom: 20px; }
.fm-col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; padding: 0 10px; margin-bottom: 20px; }
.fm-col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; padding: 0 10px; margin-bottom: 20px; }
.fm-col-3 { flex: 0 0 25%; max-width: 25%; padding: 0 10px; margin-bottom: 20px; }

.fm-card-grid-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.fm-card-grid-item-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.fm-card-grid-item-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.fm-spec-card {
  background-color: var(--fm-light-surface);
  border: 1px solid var(--fm-light-border);
  border-radius: var(--fm-radius-lg);
  padding: 24px;
  transition: var(--fm-transition);
  height: 100%;
  box-shadow: var(--fm-shadow-sm);
  display: flex;
  flex-direction: column;
}

.fm-section-dark .fm-spec-card, .fm-section-navy .fm-spec-card {
  background-color: var(--fm-dark-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.fm-spec-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fm-shadow-md);
  border-color: var(--fm-accent-gold);
}

.fm-spec-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: var(--fm-radius-md);
  background-color: rgba(200, 151, 62, 0.12);
  border: 1px solid rgba(200, 151, 62, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--fm-accent-gold);
}

.fm-spec-card-title {
  font-family: var(--fm-font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fm-section-dark .fm-spec-card-title, .fm-section-navy .fm-spec-card-title {
  color: #ffffff;
}

.fm-spec-card-desc {
  font-size: 0.875rem;
  color: var(--fm-text-muted);
  flex-grow: 1;
}

.fm-section-dark .fm-spec-card-desc, .fm-section-navy .fm-spec-card-desc {
  color: var(--fm-text-light-muted);
}

.fm-spec-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--fm-accent-gold);
  text-transform: uppercase;
  margin-top: 14px;
  letter-spacing: 0.5px;
}

.fm-media-card {
  background-color: var(--fm-light-surface);
  border-radius: var(--fm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--fm-light-border);
  box-shadow: var(--fm-shadow-sm);
  transition: var(--fm-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.fm-section-dark .fm-media-card, .fm-section-navy .fm-media-card {
  background-color: var(--fm-dark-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.fm-media-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fm-shadow-lg);
  border-color: var(--fm-accent-gold);
}

.fm-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.fm-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.fm-media-card:hover .fm-card-img-wrap img {
  transform: scale(1.04);
}

.fm-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(9, 19, 38, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(200, 151, 62, 0.4);
  color: var(--fm-accent-gold-light);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--fm-radius-sm);
  text-transform: uppercase;
}

.fm-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fm-card-title {
  font-family: var(--fm-font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fm-section-dark .fm-card-title, .fm-section-navy .fm-card-title {
  color: #ffffff;
}

.fm-card-desc {
  font-size: 0.875rem;
  color: var(--fm-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.fm-section-dark .fm-card-desc, .fm-section-navy .fm-card-desc {
  color: var(--fm-text-light-muted);
}

.fm-card-footer-action {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--fm-light-border);
}

.fm-section-dark .fm-card-footer-action, .fm-section-navy .fm-card-footer-action {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.fm-card-link {
  color: var(--fm-accent-gold);
  font-weight: 700;
  font-size: 0.8125rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fm-card-link:hover {
  color: var(--fm-accent-gold-light);
  transform: translateX(3px);
}

.fm-casino-hero-block {
  background: linear-gradient(135deg, rgba(14, 25, 47, 0.95) 0%, rgba(9, 19, 38, 0.98) 100%);
  border: 1px solid rgba(200, 151, 62, 0.35);
  border-radius: var(--fm-radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--fm-shadow-dark);
}

.fm-gaming-table-item {
  background: rgba(19, 34, 63, 0.7);
  border: 1px solid rgba(200, 151, 62, 0.2);
  border-radius: var(--fm-radius-md);
  padding: 16px;
  transition: var(--fm-transition);
  margin-bottom: 10px;
}

.fm-gaming-table-item:hover {
  background: rgba(23, 42, 83, 0.9);
  border-color: var(--fm-accent-gold);
}

.fm-gaming-table-title {
  font-family: var(--fm-font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fm-accent-gold-light);
  margin-bottom: 4px;
}

.fm-gaming-table-desc {
  font-size: 0.8125rem;
  color: var(--fm-text-light-muted);
}

.fm-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fm-itinerary-stop {
  display: flex;
  background-color: var(--fm-light-surface);
  border: 1px solid var(--fm-light-border);
  border-radius: var(--fm-radius-lg);
  overflow: hidden;
  box-shadow: var(--fm-shadow-sm);
  transition: var(--fm-transition);
}

.fm-section-dark .fm-itinerary-stop, .fm-section-navy .fm-itinerary-stop {
  background-color: var(--fm-dark-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.fm-itinerary-stop:hover {
  border-color: var(--fm-accent-gold);
}

.fm-stop-day-col {
  background-color: var(--fm-primary-navy);
  color: var(--fm-accent-gold-light);
  padding: 20px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(200, 151, 62, 0.25);
}

.fm-stop-day-number {
  font-family: var(--fm-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.fm-stop-day-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fm-text-light-muted);
  margin-top: 3px;
}

.fm-stop-content-col {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.fm-stop-port-title {
  font-family: var(--fm-font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fm-text-main);
  margin-bottom: 4px;
}

.fm-section-dark .fm-stop-port-title, .fm-section-navy .fm-stop-port-title {
  color: #ffffff;
}

.fm-stop-port-country {
  font-size: 0.8125rem;
  color: var(--fm-accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fm-stop-times {
  display: flex;
  gap: 16px;
  font-size: 0.8125rem;
}

.fm-stop-time-item {
  display: flex;
  flex-direction: column;
}

.fm-time-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  color: var(--fm-text-muted);
}

.fm-time-val {
  font-weight: 700;
  color: var(--fm-text-main);
}

.fm-section-dark .fm-time-val, .fm-section-navy .fm-time-val {
  color: #ffffff;
}

.fm-form-group {
  margin-bottom: 16px;
}

.fm-form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fm-text-main);
}

.fm-section-dark .fm-form-label, .fm-section-navy .fm-form-label {
  color: var(--fm-text-light);
}

.fm-form-control {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--fm-radius-md);
  border: 1px solid var(--fm-light-border);
  background-color: var(--fm-light-surface);
  color: var(--fm-text-main);
  font-size: 0.875rem;
  transition: var(--fm-transition);
}

.fm-section-dark .fm-form-control, .fm-section-navy .fm-form-control {
  background-color: rgba(14, 25, 47, 0.8);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.fm-form-control:focus {
  outline: none;
  border-color: var(--fm-accent-gold);
  box-shadow: 0 0 0 3px rgba(200, 151, 62, 0.2);
}

.fm-form-control.is-invalid {
  border-color: #ef4444;
}

.fm-form-error {
  display: none;
  font-size: 0.6875rem;
  color: #ef4444;
  margin-top: 4px;
}

.is-invalid + .fm-form-error {
  display: block;
}

.fm-form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}

.fm-form-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 6px;
}

.fm-calculator-summary-box {
  background: rgba(14, 25, 47, 0.9);
  border: 1px solid rgba(200, 151, 62, 0.3);
  border-radius: var(--fm-radius-lg);
  padding: 24px;
  color: var(--fm-text-light);
}

.fm-calc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
}

.fm-calc-price-row.total {
  border-bottom: none;
  padding-top: 14px;
}

.fm-calc-price-total {
  font-family: var(--fm-font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fm-accent-gold-light);
}

.fm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fm-faq-item {
  background-color: var(--fm-light-surface);
  border: 1px solid var(--fm-light-border);
  border-radius: var(--fm-radius-md);
  overflow: hidden;
  transition: var(--fm-transition);
}

.fm-section-dark .fm-faq-item, .fm-section-navy .fm-faq-item {
  background-color: var(--fm-dark-card);
  border-color: rgba(255, 255, 255, 0.08);
}

.fm-faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--fm-font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fm-text-main);
  transition: var(--fm-transition);
}

.fm-section-dark .fm-faq-question, .fm-section-navy .fm-faq-question {
  color: #ffffff;
}

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

.fm-faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fm-accent-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.fm-faq-item.active .fm-faq-icon {
  transform: rotate(180deg);
}

.fm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
}

.fm-faq-item.active .fm-faq-answer {
  padding: 0 20px 16px 20px;
  max-height: 600px;
}

.fm-faq-answer-inner {
  font-size: 0.875rem;
  color: var(--fm-text-muted);
  line-height: 1.6;
}

.fm-section-dark .fm-faq-answer-inner, .fm-section-navy .fm-faq-answer-inner {
  color: var(--fm-text-light-muted);
}

.fm-legal-content {
  background-color: var(--fm-light-surface);
  border: 1px solid var(--fm-light-border);
  border-radius: var(--fm-radius-lg);
  padding: 40px;
  box-shadow: var(--fm-shadow-sm);
}

.fm-legal-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.fm-legal-item {
  display: flex;
  flex-direction: column;
}

.fm-legal-clause-num {
  display: inline-block;
  align-self: flex-start;
  background-color: rgba(200, 151, 62, 0.12);
  color: var(--fm-accent-gold-dark);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: var(--fm-radius-sm);
  margin-bottom: 8px;
}

.fm-legal-clause-title {
  font-family: var(--fm-font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fm-text-main);
}

.fm-legal-clause-body {
  font-size: 0.875rem;
  color: var(--fm-text-muted);
  line-height: 1.75;
}

.fm-legal-clause-body p {
  margin-bottom: 10px;
}

.fm-legal-clause-body ul {
  padding-left: 18px;
  list-style: disc;
  margin-bottom: 10px;
}

.fm-legal-clause-body li {
  margin-bottom: 5px;
}

.fm-site-footer {
  background-color: #050a14;
  color: var(--fm-text-light);
  border-top: 1px solid rgba(200, 151, 62, 0.25);
  padding: 60px 0 24px;
}

.fm-footer-layout {
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
  margin-bottom: 40px;
}

.fm-footer-col-main {
  flex: 0 0 35%;
  max-width: 35%;
  padding: 0 14px;
  margin-bottom: 24px;
}

.fm-footer-col-nav {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 14px;
  margin-bottom: 24px;
}

.fm-footer-col-contact {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 14px;
  margin-bottom: 24px;
}

.fm-footer-desc {
  font-size: 0.8125rem;
  color: var(--fm-text-light-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.fm-footer-title {
  font-family: var(--fm-font-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--fm-accent-gold-light);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fm-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fm-footer-link {
  font-size: 0.8125rem;
  color: var(--fm-text-light-muted);
  transition: var(--fm-transition);
}

.fm-footer-link:hover {
  color: var(--fm-accent-gold-light);
  transform: translateX(3px);
}

.fm-footer-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--fm-radius-md);
  padding: 20px;
  margin-bottom: 30px;
  font-size: 0.75rem;
  color: var(--fm-text-light-muted);
  line-height: 1.65;
}

.fm-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--fm-text-light-muted);
}

.fm-footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.fm-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background-color: rgba(9, 19, 38, 0.98);
  border: 1px solid rgba(200, 151, 62, 0.4);
  border-radius: var(--fm-radius-lg);
  padding: 20px;
  box-shadow: var(--fm-shadow-dark);
  z-index: 9999;
  display: none;
  color: var(--fm-text-light);
}

.fm-cookie-banner.show {
  display: block;
}

.fm-cookie-title {
  font-family: var(--fm-font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fm-accent-gold-light);
  margin-bottom: 6px;
}

.fm-cookie-desc {
  font-size: 0.8125rem;
  color: var(--fm-text-light-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.fm-cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fm-alert-success-box {
  display: none;
  background-color: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  padding: 14px;
  border-radius: var(--fm-radius-md);
  margin-bottom: 18px;
  font-size: 0.875rem;
}

.fm-alert-success-box.show {
  display: block;
}

.fm-responsible-gaming-bar {
  background: linear-gradient(90deg, #1c1408 0%, #2b1f0c 100%);
  border: 1px solid rgba(200, 151, 62, 0.3);
  border-radius: var(--fm-radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.fm-rg-title {
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--fm-accent-gold-light);
}

.fm-rg-desc {
  font-size: 0.75rem;
  color: var(--fm-text-light-muted);
}

.fm-table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--fm-radius-md);
  border: 1px solid var(--fm-light-border);
}

.fm-custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.fm-custom-table th {
  background-color: var(--fm-primary-navy);
  color: var(--fm-accent-gold-light);
  font-family: var(--fm-font-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(200, 151, 62, 0.25);
}

.fm-custom-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--fm-light-border);
  font-size: 0.875rem;
}

.fm-section-dark .fm-custom-table td, .fm-section-navy .fm-custom-table td {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  color: var(--fm-text-light-muted);
}

.fm-custom-table tr:hover td {
  background-color: rgba(200, 151, 62, 0.04);
}

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

  .fm-main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background-color: rgba(9, 19, 38, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid rgba(200, 151, 62, 0.2);
  }

  .fm-main-nav.active {
    transform: translateX(0);
  }

  .fm-nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }

  .fm-nav-item {
    width: 100%;
  }

  .fm-nav-link {
    font-size: 1rem;
    padding: 10px 14px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .fm-header-cta-group .fm-btn {
    display: none;
  }

  .fm-card-grid-item-4, .fm-card-grid-item-6,
  .fm-col-8, .fm-col-7, .fm-col-6, .fm-col-5, .fm-col-4, .fm-col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .fm-footer-col-main, .fm-footer-col-nav, .fm-footer-col-contact {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .fm-header-top {
    display: none;
  }

  .fm-container, .fm-container-narrow {
    padding-left: 14px;
    padding-right: 14px;
  }

  .fm-section {
    padding: 40px 0;
  }

  .fm-hero {
    padding: 40px 0 55px;
  }

  .fm-hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .fm-hero-desc {
    font-size: 0.9375rem;
    margin-bottom: 20px;
  }

  .fm-page-header {
    padding: 36px 0;
  }

  .fm-page-title {
    font-size: 1.75rem;
  }

  .fm-page-subtitle {
    font-size: 0.875rem;
  }

  .fm-section-header {
    margin-bottom: 28px;
  }

  .fm-section-title {
    font-size: 1.5rem;
  }

  .fm-section-desc {
    font-size: 0.875rem;
  }

  .fm-spec-card, .fm-card-body, .fm-hero-card, .fm-calculator-summary-box, .fm-casino-hero-block {
    padding: 16px;
  }

  .fm-legal-content {
    padding: 18px 14px;
  }

  .fm-legal-clause-title {
    font-size: 1rem;
  }

  .fm-legal-clause-body {
    font-size: 0.8125rem;
  }

  .fm-footer-col-main, .fm-footer-col-nav, .fm-footer-col-contact {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .fm-form-col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .fm-stop-day-col {
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(200, 151, 62, 0.25);
    padding: 12px;
  }

  .fm-stop-content-col {
    padding: 14px;
  }

  .fm-itinerary-stop {
    flex-direction: column;
  }

  .fm-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }

  .fm-stat-value {
    font-size: 1.375rem;
  }

  .fm-stat-label {
    font-size: 0.625rem;
  }
}