:root {
  --mtv-bg-main: #ffffff;
  --mtv-bg-subtle: #f8fafc;
  --mtv-bg-pearl: #f0f7fa;
  --mtv-bg-warm: #fdfbf7;
  --mtv-bg-navy: #07162c;
  --mtv-bg-navy-dark: #030b17;
  --mtv-bg-navy-card: #0c233f;
  --mtv-bg-casino: #120826;
  --mtv-bg-casino-card: #1c0e3a;
  --mtv-primary: #07162c;
  --mtv-primary-hover: #0f2747;
  --mtv-accent-azure: #0284c7;
  --mtv-accent-azure-light: #e0f2fe;
  --mtv-accent-teal: #0d9488;
  --mtv-accent-teal-light: #ccfbf1;
  --mtv-gold: #d97706;
  --mtv-gold-light: #fef3c7;
  --mtv-gold-bright: #fbbf24;
  --mtv-gold-dark: #92400e;
  --mtv-gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --mtv-azure-gradient: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  --mtv-casino-gradient: linear-gradient(145deg, #1b0a38 0%, #2a1154 50%, #0d1b2a 100%);
  --mtv-hero-gradient: radial-gradient(circle at 75% 30%, #153e68 0%, #07162c 55%, #020912 100%);
  --mtv-text-dark: #0f172a;
  --mtv-text-muted: #334155;
  --mtv-text-light: #64748b;
  --mtv-text-white: #ffffff;
  --mtv-border: #e2e8f0;
  --mtv-border-light: #f1f5f9;
  --mtv-border-dark: #cbd5e1;
  --mtv-border-gold: rgba(251, 191, 36, 0.4);
  --mtv-border-azure: rgba(56, 189, 248, 0.35);
  --mtv-shadow-sm: 0 2px 5px rgba(7, 22, 44, 0.05);
  --mtv-shadow-md: 0 8px 20px -3px rgba(7, 22, 44, 0.08), 0 3px 8px -2px rgba(7, 22, 44, 0.04);
  --mtv-shadow-lg: 0 18px 38px -6px rgba(7, 22, 44, 0.14), 0 8px 16px -3px rgba(7, 22, 44, 0.06);
  --mtv-shadow-xl: 0 26px 52px -12px rgba(3, 11, 23, 0.28);
  --mtv-shadow-glow-gold: 0 0 28px rgba(245, 158, 11, 0.35);
  --mtv-shadow-glow-azure: 0 0 28px rgba(2, 132, 199, 0.3);
  --mtv-radius-sm: 8px;
  --mtv-radius-md: 14px;
  --mtv-radius-lg: 22px;
  --mtv-radius-xl: 30px;
  --mtv-radius-full: 9999px;
  --mtv-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --mtv-font-heading: 'Playfair Display', Georgia, serif;
  --mtv-transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--mtv-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--mtv-text-dark);
  background-color: var(--mtv-bg-subtle);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--mtv-bg-subtle);
  color: var(--mtv-text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

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

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

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

.mtv-top-bar {
  background: #020912;
  color: var(--mtv-text-white);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.mtv-top-bar-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mtv-top-bar-notice {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: var(--mtv-gold-bright);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mtv-top-bar-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.mtv-top-bar-link {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.mtv-top-bar-link:hover {
  color: #ffffff;
}

.mtv-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--mtv-border);
  box-shadow: var(--mtv-shadow-sm);
  transition: var(--mtv-transition);
}

.mtv-header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 82px;
}

.mtv-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mtv-brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #07162c 0%, #153e68 100%);
  box-shadow: 0 4px 14px rgba(7, 22, 44, 0.3);
  border: 1px solid var(--mtv-border-gold);
}

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

.mtv-brand-name {
  font-family: var(--mtv-font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--mtv-primary);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.mtv-brand-tagline {
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mtv-gold);
}

.mtv-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 20px;
  margin-right: auto;
}

.mtv-nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.mtv-nav-item {
  position: relative;
}

.mtv-nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
  padding: 8px 12px;
  border-radius: var(--mtv-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.mtv-nav-link:hover {
  color: var(--mtv-accent-azure);
  background-color: var(--mtv-accent-azure-light);
}

.mtv-nav-link.active {
  color: var(--mtv-primary);
  background-color: #f1f5f9;
  border-bottom: 2px solid var(--mtv-gold);
}

.mtv-nav-dropdown {
  position: relative;
}

.mtv-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--mtv-border);
  border-radius: var(--mtv-radius-md);
  box-shadow: var(--mtv-shadow-lg);
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 100;
}

.mtv-nav-dropdown:hover .mtv-nav-dropdown-menu {
  display: flex;
}

.mtv-nav-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mtv-burger-btn {
  display: none;
  background: #f8fafc;
  border: 1px solid var(--mtv-border-dark);
  border-radius: var(--mtv-radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--mtv-primary);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.mtv-burger-btn:hover {
  background-color: #e2e8f0;
}

.mtv-burger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.mtv-burger-line {
  height: 2.5px;
  background-color: var(--mtv-primary);
  border-radius: 2px;
  transition: var(--mtv-transition);
}

.mtv-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(3, 11, 23, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mtv-mobile-drawer.open {
  display: flex;
  flex-direction: column;
}

.mtv-mobile-drawer-content {
  background-color: #ffffff;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  min-height: 100%;
  padding: 28px 24px;
  border-left: 4px solid var(--mtv-gold);
  box-shadow: -12px 0 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.mtv-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mtv-mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--mtv-text-dark);
  padding: 12px 16px;
  border-radius: var(--mtv-radius-sm);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--mtv-border-light);
}

.mtv-mobile-nav-link:hover,
.mtv-mobile-nav-link.active {
  background-color: var(--mtv-accent-azure-light);
  color: var(--mtv-primary);
  border-left: 4px solid var(--mtv-gold);
}

.mtv-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 10px;
}

@keyframes mtvHeroPulse {
  0% {
    transform: translateY(0px) scale(1) rotate(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(217, 119, 6, 0.2);
  }

  50% {
    transform: translateY(-10px) scale(1.02) rotate(0.2deg);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.65), 0 0 45px rgba(251, 191, 36, 0.45);
  }

  100% {
    transform: translateY(0px) scale(1) rotate(0deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(217, 119, 6, 0.2);
  }
}

.mtv-hero {
  position: relative;
  background: var(--mtv-hero-gradient);
  color: var(--mtv-text-white);
  padding: 90px 0 110px 0;
  overflow: hidden;
  border-bottom: 4px solid var(--mtv-gold);
}

.mtv-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.mtv-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.mtv-hero-text {
  flex: 1 1 54%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mtv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid var(--mtv-border-gold);
  border-radius: var(--mtv-radius-full);
  color: var(--mtv-gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}

.mtv-hero-title {
  font-family: var(--mtv-font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.mtv-hero-title-highlight {
  color: #fbbf24;
  font-style: italic;
}

.mtv-hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.7;
  max-width: 620px;
}

.mtv-hero-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.mtv-hero-stats {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.mtv-hero-stat-item {
  display: flex;
  flex-direction: column;
}

.mtv-hero-stat-num {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fbbf24;
  font-family: var(--mtv-font-heading);
  line-height: 1.1;
}

.mtv-hero-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.mtv-hero-media {
  flex: 1 1 46%;
  position: relative;
}

.mtv-hero-card-frame {
  position: relative;
  border-radius: var(--mtv-radius-xl);
  overflow: hidden;
  border: 3px solid var(--mtv-border-gold);
  background-color: var(--mtv-bg-navy-dark);
  animation: mtvHeroPulse 6s ease-in-out infinite;
}

.mtv-hero-card-frame img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.mtv-hero-card-frame:hover img {
  transform: scale(1.05);
}

.mtv-hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(3, 11, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--mtv-border-gold);
  padding: 16px 20px;
  border-radius: var(--mtv-radius-md);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.mtv-floating-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.mtv-floating-subtitle {
  font-size: 0.82rem;
  color: var(--mtv-gold-bright);
}

.mtv-page-header {
  background: radial-gradient(circle at 80% 20%, #153e68 0%, #07162c 60%, #020912 100%);
  color: var(--mtv-text-white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--mtv-gold);
}

.mtv-page-header-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
}

.mtv-page-breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

.mtv-page-breadcrumbs a {
  color: #cbd5e1;
}

.mtv-page-breadcrumbs a:hover {
  color: var(--mtv-gold-bright);
}

.mtv-page-breadcrumbs span {
  color: #64748b;
}

.mtv-page-title {
  font-family: var(--mtv-font-heading);
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.mtv-page-desc {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.65;
}

.mtv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--mtv-radius-sm);
  cursor: pointer;
  transition: var(--mtv-transition);
  text-align: center;
  border: 1px solid transparent;
  line-height: 1.3;
}

.mtv-btn-gold {
  background: var(--mtv-gold-gradient);
  color: #030b17;
  border-color: #d97706;
  box-shadow: 0 4px 18px rgba(217, 119, 6, 0.4);
}

.mtv-btn-gold:hover {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.55);
}

.mtv-btn-primary {
  background: linear-gradient(135deg, #07162c 0%, #153e68 100%);
  color: var(--mtv-text-white);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.mtv-btn-primary:hover {
  background: linear-gradient(135deg, #0f2747 0%, #1d5289 100%);
  transform: translateY(-2px);
  box-shadow: var(--mtv-shadow-glow-azure);
}

.mtv-btn-azure {
  background: var(--mtv-azure-gradient);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.35);
}

.mtv-btn-azure:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.5);
}

.mtv-btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.mtv-btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.mtv-btn-outline-primary {
  background-color: transparent;
  color: var(--mtv-primary);
  border-color: var(--mtv-primary);
}

.mtv-btn-outline-primary:hover {
  background-color: var(--mtv-primary);
  color: var(--mtv-text-white);
}

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

.mtv-btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

.mtv-btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.mtv-section {
  padding: 85px 0;
}

.mtv-section-white {
  background-color: #ffffff;
}

.mtv-section-subtle {
  background-color: var(--mtv-bg-subtle);
}

.mtv-section-pearl {
  background-color: var(--mtv-bg-pearl);
}

.mtv-section-warm {
  background-color: var(--mtv-bg-warm);
}

.mtv-section-navy {
  background: radial-gradient(circle at top, #112d4e 0%, #07162c 60%, #030b17 100%);
  color: var(--mtv-text-white);
}

.mtv-section-casino {
  background: var(--mtv-casino-gradient);
  color: var(--mtv-text-white);
}

.mtv-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mtv-section-header.left-aligned {
  text-align: left;
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
}

.mtv-section-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #92400e;
  background-color: var(--mtv-gold-light);
  padding: 5px 16px;
  border-radius: var(--mtv-radius-full);
  display: inline-block;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.mtv-section-navy .mtv-section-tag,
.mtv-section-casino .mtv-section-tag {
  background-color: rgba(251, 191, 36, 0.18);
  color: var(--mtv-gold-bright);
  border: 1px solid var(--mtv-border-gold);
}

.mtv-section-title {
  font-family: var(--mtv-font-heading);
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--mtv-primary);
}

.mtv-section-navy .mtv-section-title,
.mtv-section-casino .mtv-section-title {
  color: #ffffff;
}

.mtv-section-desc {
  font-size: 1.05rem;
  color: var(--mtv-text-muted);
  line-height: 1.7;
}

.mtv-section-navy .mtv-section-desc,
.mtv-section-casino .mtv-section-desc {
  color: #cbd5e1;
}

.mtv-flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
}

.mtv-col-3 {
  flex: 0 0 calc(33.333% - 18.666px);
  display: flex;
  flex-direction: column;
}

.mtv-col-4 {
  flex: 0 0 calc(25% - 21px);
  display: flex;
  flex-direction: column;
}

.mtv-col-2 {
  flex: 0 0 calc(50% - 14px);
  display: flex;
  flex-direction: column;
}

.mtv-col-12 {
  flex: 0 0 100%;
}

.mtv-card {
  background-color: #ffffff;
  border: 1px solid var(--mtv-border);
  border-radius: var(--mtv-radius-lg);
  overflow: hidden;
  box-shadow: var(--mtv-shadow-sm);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, border-color 0.45s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mtv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 42px -10px rgba(7, 22, 44, 0.16), 0 0 20px rgba(2, 132, 199, 0.12);
  border-color: rgba(2, 132, 199, 0.4);
}

.mtv-card-media {
  position: relative;
  overflow: hidden;
  height: 250px;
  background-color: var(--mtv-bg-navy-dark);
}

.mtv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
  will-change: transform;
}

.mtv-card:hover .mtv-card-media img {
  transform: scale(1.09) translateY(-3px);
  filter: brightness(1.06) contrast(1.03);
}

.mtv-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(3, 11, 23, 0.88);
  color: var(--mtv-gold-bright);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--mtv-radius-full);
  border: 1px solid var(--mtv-border-gold);
  backdrop-filter: blur(6px);
}

.mtv-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 auto;
}

.mtv-card-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--mtv-accent-azure);
  font-weight: 700;
}

.mtv-card-title {
  font-family: var(--mtv-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mtv-primary);
  line-height: 1.25;
}

.mtv-card-text {
  font-size: 0.93rem;
  color: var(--mtv-text-muted);
  line-height: 1.65;
}

.mtv-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0;
}

.mtv-card-feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--mtv-text-dark);
}

.mtv-card-feature-icon {
  width: 16px;
  height: 16px;
  color: var(--mtv-gold);
  flex-shrink: 0;
}

.mtv-card-footer {
  padding: 18px 26px;
  background-color: var(--mtv-bg-subtle);
  border-top: 1px solid var(--mtv-border-light);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.mtv-specs-banner {
  background-color: #ffffff;
  border-radius: var(--mtv-radius-lg);
  border: 1px solid var(--mtv-border);
  box-shadow: var(--mtv-shadow-md);
  padding: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.mtv-spec-item {
  flex: 1 1 calc(20% - 16px);
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  border-left: 4px solid var(--mtv-gold);
  background-color: var(--mtv-bg-pearl);
  border-radius: 0 var(--mtv-radius-sm) var(--mtv-radius-sm) 0;
  transition: var(--mtv-transition);
}

.mtv-spec-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--mtv-shadow-sm);
  background-color: #ffffff;
}

.mtv-spec-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mtv-text-muted);
  letter-spacing: 0.05em;
}

.mtv-spec-val {
  font-family: var(--mtv-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mtv-primary);
}

.mtv-spec-sub {
  font-size: 0.78rem;
  color: var(--mtv-text-light);
}

.mtv-casino-highlight-box {
  background: var(--mtv-casino-gradient);
  border: 2px solid var(--mtv-border-gold);
  border-radius: var(--mtv-radius-xl);
  color: var(--mtv-text-white);
  padding: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--mtv-shadow-xl), 0 0 35px rgba(217, 119, 6, 0.2);
}

.mtv-casino-grid-flex {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.mtv-casino-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mtv-casino-visual {
  flex: 1 1 50%;
  position: relative;
  border-radius: var(--mtv-radius-lg);
  overflow: hidden;
}

.mtv-casino-visual img {
  border-radius: var(--mtv-radius-lg);
  border: 2px solid var(--mtv-border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  height: 400px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.mtv-casino-visual:hover img {
  transform: scale(1.06);
}

.mtv-rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mtv-rules-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--mtv-radius-sm);
  font-size: 0.92rem;
  transition: var(--mtv-transition);
}

.mtv-rules-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.mtv-rules-bullet {
  color: var(--mtv-gold-bright);
  font-weight: 700;
}

.mtv-filter-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.mtv-filter-btn {
  padding: 10px 22px;
  background-color: #ffffff;
  border: 1px solid var(--mtv-border);
  border-radius: var(--mtv-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mtv-text-muted);
  cursor: pointer;
  transition: var(--mtv-transition);
}

.mtv-filter-btn:hover {
  border-color: var(--mtv-accent-azure);
  color: var(--mtv-accent-azure);
}

.mtv-filter-btn.active {
  background-color: var(--mtv-primary);
  color: #ffffff;
  border-color: var(--mtv-primary);
  box-shadow: var(--mtv-shadow-sm);
}

.mtv-booking-card {
  background-color: #ffffff;
  border: 1px solid var(--mtv-border);
  border-radius: var(--mtv-radius-xl);
  padding: 44px;
  box-shadow: var(--mtv-shadow-lg);
}

.mtv-form-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.mtv-form-col-6 {
  flex: 0 0 calc(50% - 10px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mtv-form-col-4 {
  flex: 0 0 calc(33.333% - 13.333px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mtv-form-col-12 {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mtv-form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mtv-primary);
}

.mtv-form-input,
.mtv-form-select,
.mtv-form-textarea {
  width: 100%;
  padding: 13px 16px;
  background-color: var(--mtv-bg-subtle);
  border: 1px solid var(--mtv-border-dark);
  border-radius: var(--mtv-radius-sm);
  font-size: 0.95rem;
  color: var(--mtv-text-dark);
  transition: var(--mtv-transition);
}

.mtv-form-input:focus,
.mtv-form-select:focus,
.mtv-form-textarea:focus {
  outline: none;
  border-color: var(--mtv-accent-azure);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.mtv-form-checkbox-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--mtv-text-muted);
  cursor: pointer;
}

.mtv-form-checkbox-label input {
  margin-top: 4px;
}

.mtv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.mtv-faq-item {
  background-color: #ffffff;
  border: 1px solid var(--mtv-border);
  border-radius: var(--mtv-radius-md);
  overflow: hidden;
  box-shadow: var(--mtv-shadow-sm);
  transition: var(--mtv-transition);
}

.mtv-faq-trigger {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--mtv-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mtv-primary);
  gap: 16px;
}

.mtv-faq-trigger:hover {
  background-color: var(--mtv-bg-subtle);
  color: var(--mtv-accent-azure);
}

.mtv-faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--mtv-gold);
}

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

.mtv-faq-body {
  display: none;
  padding: 0 26px 26px 26px;
  color: var(--mtv-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid var(--mtv-border-light);
  background-color: #ffffff;
}

.mtv-faq-item.active .mtv-faq-body {
  display: block;
}

.mtv-legal-box {
  background-color: #ffffff;
  border: 1px solid var(--mtv-border);
  border-radius: var(--mtv-radius-xl);
  padding: 48px;
  box-shadow: var(--mtv-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mtv-legal-clause {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--mtv-border-light);
}

.mtv-legal-clause:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mtv-clause-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--mtv-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mtv-clause-title {
  font-family: var(--mtv-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mtv-primary);
}

.mtv-clause-text {
  font-size: 0.96rem;
  color: var(--mtv-text-muted);
  line-height: 1.75;
}

.mtv-clause-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
}

.mtv-clause-list-item {
  font-size: 0.93rem;
  color: var(--mtv-text-muted);
  line-height: 1.6;
  position: relative;
  padding-left: 12px;
}

.mtv-clause-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background-color: var(--mtv-gold);
  border-radius: 50%;
}

.mtv-disclaimer-banner {
  background: var(--mtv-bg-pearl);
  border: 1px solid var(--mtv-border-dark);
  border-left: 4px solid var(--mtv-gold);
  padding: 24px;
  border-radius: var(--mtv-radius-md);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mtv-disclaimer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mtv-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mtv-disclaimer-text {
  font-size: 0.88rem;
  color: var(--mtv-text-muted);
  line-height: 1.6;
}

.mtv-footer {
  background: radial-gradient(circle at bottom, #0f2747 0%, #07162c 60%, #020912 100%);
  color: #cbd5e1;
  padding-top: 75px;
  border-top: 4px solid var(--mtv-gold);
  margin-top: auto;
}

.mtv-footer-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mtv-footer-col-brand {
  flex: 0 0 calc(35% - 24px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mtv-footer-col-nav {
  flex: 0 0 calc(20% - 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mtv-footer-col-legal {
  flex: 0 0 calc(22% - 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mtv-footer-col-contact {
  flex: 0 0 calc(23% - 24px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mtv-footer-heading {
  font-family: var(--mtv-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  border-bottom: 2px solid var(--mtv-gold);
  padding-bottom: 8px;
  width: fit-content;
}

.mtv-footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mtv-footer-link {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--mtv-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mtv-footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.mtv-footer-disclaimer-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--mtv-radius-md);
  padding: 22px;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mtv-footer-disclaimer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mtv-gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mtv-footer-disclaimer-p {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
}

.mtv-footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
}

.mtv-footer-bottom-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.mtv-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  background-color: var(--mtv-bg-navy);
  color: #ffffff;
  padding: 24px;
  border-radius: var(--mtv-radius-lg);
  border: 1px solid var(--mtv-border-gold);
  box-shadow: var(--mtv-shadow-xl);
  z-index: 9999;
  display: none;
  flex-direction: column;
  gap: 16px;
}

.mtv-cookie-banner.show {
  display: flex;
}

.mtv-cookie-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mtv-gold-bright);
}

.mtv-cookie-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.mtv-cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.mtv-alert-success {
  background-color: #ecfdf5;
  border: 1px solid #10b981;
  color: #065f46;
  padding: 16px;
  border-radius: var(--mtv-radius-sm);
  font-size: 0.95rem;
  display: none;
}

@media (max-width: 1200px) {
  .mtv-nav {
    display: none;
  }

  .mtv-burger-btn {
    display: flex;
  }

  .mtv-col-4 {
    flex: 0 0 calc(50% - 14px);
  }

  .mtv-col-3 {
    flex: 0 0 calc(50% - 14px);
  }
}

@media (max-width: 992px) {
  .mtv-hero-inner {
    flex-direction: column;
  }

  .mtv-hero-text,
  .mtv-hero-media {
    flex: 0 0 100%;
    width: 100%;
  }

  .mtv-hero-title {
    font-size: 2.6rem;
  }

  .mtv-casino-grid-flex {
    flex-direction: column;
  }

  .mtv-footer-col-brand,
  .mtv-footer-col-nav,
  .mtv-footer-col-legal,
  .mtv-footer-col-contact {
    flex: 0 0 calc(50% - 18px);
  }

  .mtv-form-col-6,
  .mtv-form-col-4 {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .mtv-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mtv-top-bar {
    padding: 6px 0;
  }

  .mtv-top-bar-links {
    display: none;
  }

  .mtv-top-bar-notice {
    font-size: 0.72rem;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 6px;
  }

  .mtv-header-inner {
    height: 60px;
  }

  .mtv-nav-actions .mtv-btn {
    display: none;
  }

  .mtv-brand {
    gap: 8px;
    min-width: 0;
    flex-shrink: 1;
  }

  .mtv-brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .mtv-brand-logo svg {
    width: 20px;
    height: 20px;
  }

  .mtv-brand-name {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mtv-brand-tagline {
    font-size: 0.62rem;
  }

  .mtv-burger-btn {
    width: 38px;
    height: 38px;
    padding: 6px;
  }

  .mtv-hero {
    padding: 32px 0 40px 0;
  }

  .mtv-hero-badge {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .mtv-hero-title {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .mtv-hero-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .mtv-hero-cta {
    gap: 10px;
    margin-bottom: 24px;
  }

  .mtv-hero-stats {
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }

  .mtv-hero-stat-item {
    padding: 10px 14px;
  }

  .mtv-hero-stat-num {
    font-size: 1.3rem;
  }

  .mtv-hero-stat-label {
    font-size: 0.72rem;
  }

  .mtv-page-header {
    padding: 28px 0;
  }

  .mtv-page-title {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .mtv-page-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .mtv-section {
    padding: 38px 0;
  }

  .mtv-section-header {
    margin-bottom: 24px;
    gap: 8px;
  }

  .mtv-section-tag {
    font-size: 0.72rem;
    padding: 3px 12px;
  }

  .mtv-section-title {
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .mtv-section-desc {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .mtv-flex-row {
    gap: 16px;
  }

  .mtv-col-2,
  .mtv-col-3,
  .mtv-col-4 {
    flex: 0 0 100%;
  }

  .mtv-specs-banner {
    padding: 14px;
    gap: 8px;
    margin-bottom: 20px;
  }

  .mtv-spec-item {
    flex: 0 0 100%;
    padding: 10px;
  }

  .mtv-spec-val {
    font-size: 1.25rem;
  }

  .mtv-spec-label {
    font-size: 0.72rem;
  }

  .mtv-spec-sub {
    font-size: 0.72rem;
  }

  .mtv-card-media {
    height: 190px;
  }

  .mtv-card-body {
    padding: 16px;
    gap: 10px;
  }

  .mtv-card-title {
    font-size: 1.15rem;
    line-height: 1.35;
  }

  .mtv-card-text {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .mtv-card-footer {
    padding: 10px 16px 16px 16px;
  }

  .mtv-btn {
    padding: 8px 16px;
    font-size: 0.84rem;
  }

  .mtv-btn-lg {
    padding: 10px 20px;
    font-size: 0.88rem;
  }

  .mtv-btn-sm {
    padding: 6px 14px;
    font-size: 0.78rem;
  }

  .mtv-hero-card-frame img {
    height: 240px;
  }

  .mtv-hero-floating-badge {
    padding: 10px 14px;
    gap: 10px;
  }

  .mtv-floating-title {
    font-size: 0.82rem;
  }

  .mtv-floating-subtitle {
    font-size: 0.7rem;
  }

  .mtv-booking-card {
    padding: 16px;
  }

  .mtv-legal-box {
    padding: 16px;
  }

  .mtv-legal-clause {
    padding: 16px;
    gap: 10px;
  }

  .mtv-clause-title {
    font-size: 1.05rem;
  }

  .mtv-clause-text {
    font-size: 0.85rem;
    line-height: 1.55;
  }

  .mtv-clause-list {
    gap: 8px;
  }

  .mtv-clause-list-item {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .mtv-casino-highlight-box {
    padding: 16px;
    margin-bottom: 20px;
  }

  .mtv-casino-content {
    gap: 12px;
  }

  .mtv-casino-content h2,
  .mtv-casino-content h3 {
    font-size: 1.4rem !important;
  }

  .mtv-casino-content p {
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
  }

  .mtv-rules-list {
    gap: 8px;
  }

  .mtv-rules-item {
    font-size: 0.82rem;
    gap: 8px;
  }

  .mtv-faq-list {
    gap: 10px;
  }

  .mtv-faq-trigger {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .mtv-faq-body {
    padding: 0 14px 12px 14px;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .mtv-footer {
    padding: 40px 0 20px 0;
  }

  .mtv-footer-grid {
    gap: 20px;
    margin-bottom: 28px;
  }

  .mtv-footer-col-brand,
  .mtv-footer-col-nav,
  .mtv-footer-col-legal,
  .mtv-footer-col-contact {
    flex: 0 0 100%;
  }

  .mtv-footer-heading {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .mtv-footer-list {
    gap: 8px;
  }

  .mtv-footer-link {
    font-size: 0.82rem;
  }

  .mtv-footer-disclaimer-box {
    padding: 14px;
    margin-bottom: 20px;
  }

  .mtv-footer-disclaimer-title {
    font-size: 0.78rem;
  }

  .mtv-footer-disclaimer-p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .mtv-filter-nav {
    gap: 6px;
    margin-bottom: 24px;
  }

  .mtv-filter-btn {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .mtv-brand-tagline {
    display: none;
  }

  .mtv-hero-title {
    font-size: 1.45rem;
  }

  .mtv-page-title {
    font-size: 1.45rem;
  }

  .mtv-section-title {
    font-size: 1.3rem;
  }

  .mtv-card-title {
    font-size: 1.05rem;
  }

  .mtv-hero-card-frame img {
    height: 200px;
  }

  .mtv-hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .mtv-hero-cta .mtv-btn {
    width: 100%;
  }

  .mtv-floating-title {
    font-size: 0.78rem;
  }

  .mtv-floating-subtitle {
    font-size: 0.65rem;
  }

  .mtv-hero-floating-badge .mtv-btn {
    padding: 4px 10px;
    font-size: 0.72rem;
  }
}
