/* ========================================
   Dunagamehub - REDESIGN
   Palette: Яркая контрастная
   Style: Морфизм (Soft UI)
======================================== */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

/* CSS Variables */
:root {
  /* Palette #3 - Яркая контрастная */
  --bg-dark: #1a0033;
  --bg-secondary: #2d004d;
  --bg-card: #3d0066;
  --bg-elevated: #4a007a;

  --accent-primary: #ff006e;
  --accent-secondary: #ff4d94;
  --accent-light: #ff85b3;
  --accent-glow: rgba(255, 0, 110, 0.4);

  --text-light: #ffffff;
  --text-muted: #e0d0e8;
  --text-dark: #b8a0c8;

  --border-color: rgba(255, 0, 110, 0.25);
  --border-light: rgba(255, 255, 255, 0.08);

  /* Morphism Shadows */
  --shadow-morph-out: 8px 8px 20px rgba(0, 0, 0, 0.4),
    -8px -8px 20px rgba(77, 0, 128, 0.3);
  --shadow-morph-in: inset 4px 4px 10px rgba(0, 0, 0, 0.3),
    inset -4px -4px 10px rgba(77, 0, 128, 0.2);
  --shadow-glow: 0 0 30px var(--accent-glow);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--accent-primary) 0%,
    var(--accent-secondary) 100%
  );
  --gradient-bg: linear-gradient(
    180deg,
    var(--bg-dark) 0%,
    var(--bg-secondary) 100%
  );
  --gradient-card: linear-gradient(
    145deg,
    var(--bg-card) 0%,
    var(--bg-secondary) 100%
  );
}

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ========================================
   CONTAINER RESET
======================================== */
.fl-page,
.fl-builder-content,
.fl-row,
.fl-row-content-wrap,
.fl-row-content,
.fl-col-group,
.fl-col,
.fl-col-content,
.fl-node-content,
.fl-module,
.fl-module-content {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.fl-row-fixed-width {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* ========================================
   HEADER - NEW CLEAN DESIGN
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 0, 51, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Top Bar */
.header-top-bar {
  background: var(--bg-secondary);
  padding: 6px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.header-top-bar span {
  font-size: 0.7rem;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Main Header */
.header-main {
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  max-width: 120px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.05);
}

/* Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav ul li a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.header-nav ul li a:hover {
  color: var(--text-light);
  background: rgba(255, 0, 110, 0.12);
}

.header-nav ul li.active a {
  color: var(--text-light);
  background: rgba(255, 0, 110, 0.2);
  box-shadow: var(--shadow-morph-in);
}

/* CTA Button */
.header-cta {
  background: var(--gradient-primary);
  color: var(--text-light) !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--accent-glow);
  flex-shrink: 0;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 0, 110, 0.12);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 0, 110, 0.2);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Responsive */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 0, 51, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .header-nav.active {
    display: block;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .header-nav ul li {
    width: 100%;
  }

  .header-nav ul li a {
    text-align: center;
    padding: 14px 20px;
  }

  .header-cta {
    display: none;
  }

  .header-container {
    padding: 12px 16px;
  }

  .header-logo img {
    max-width: 100px;
    max-height: 36px;
  }
}

@media (max-width: 480px) {
  .header-top-bar span {
    font-size: 0.6rem;
  }
}

/* OLD HEADER HIDE (fallback for old pages) */
header.fl-builder-content .fl-row:first-child {
  display: none !important;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1 {
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 700 !important;
  color: var(--text-light) !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
  line-height: 1.3 !important;
  margin-bottom: 16px !important;
}

h3 {
  font-size: clamp(1.1rem, 3vw, 1.4rem) !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
  margin-bottom: 12px !important;
}

h4 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
  margin-bottom: 10px !important;
}

p {
  color: var(--text-muted) !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
}

strong {
  color: var(--accent-light) !important;
  font-weight: 600 !important;
}

a {
  color: var(--accent-primary) !important;
  transition: color 0.3s !important;
}

a:hover {
  color: var(--accent-secondary) !important;
}

/* ========================================
   BUTTONS - MORPHISM STYLE
======================================== */
.fl-button,
a.fl-button,
button.fl-button {
  background: var(--gradient-primary) !important;
  color: var(--text-light) !important;
  padding: 14px 32px !important;
  border-radius: 16px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  box-shadow: 0 6px 20px var(--accent-glow), var(--shadow-morph-out) !important;
  position: relative !important;
  overflow: hidden !important;
}

.fl-button::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  ) !important;
  transition: left 0.5s !important;
}

.fl-button:hover::before {
  left: 100% !important;
}

.fl-button:hover,
a.fl-button:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 12px 35px var(--accent-glow), var(--shadow-morph-out) !important;
  opacity: 1 !important;
}

.fl-button:active {
  transform: translateY(-2px) scale(0.98) !important;
}

/* Outline Button */
a.fl-button[style*="transparent"],
.btn-outline {
  background: transparent !important;
  border: 2px solid var(--accent-primary) !important;
  color: var(--accent-primary) !important;
  box-shadow: var(--shadow-morph-out) !important;
}

a.fl-button[style*="transparent"]:hover,
.btn-outline:hover {
  background: var(--accent-primary) !important;
  color: var(--text-light) !important;
  box-shadow: var(--shadow-glow), var(--shadow-morph-out) !important;
}

/* ========================================
   CARDS - MORPHISM STYLE
======================================== */
.game-card {
  background: var(--gradient-card) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 24px !important;
  padding: 28px !important;
  box-shadow: var(--shadow-morph-out) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.game-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 3px !important;
  background: var(--gradient-primary) !important;
  opacity: 0 !important;
  transition: opacity 0.3s !important;
}

.game-card:hover {
  transform: translateY(-12px) !important;
  box-shadow: var(--shadow-morph-out), var(--shadow-glow) !important;
  border-color: var(--accent-primary) !important;
}

.game-card:hover::before {
  opacity: 1 !important;
}

.game-card h3 {
  font-size: 1.3rem !important;
  margin-bottom: 12px !important;
  color: var(--text-light) !important;
}

.game-card p {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 16px !important;
}

/* Card Image Container - Morphism Inset */
.game-card > div:first-child,
.game-card [style*="height: 180px"] {
  background: var(--bg-secondary) !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-morph-in) !important;
  margin-bottom: 20px !important;
}

/* ========================================
   SECTIONS
======================================== */
.fl-row {
  padding: 70px 0 !important;
}

/* Hero Section */
.fl-row[style*="min-height"] {
  background: var(--gradient-bg) !important;
  padding: 100px 20px !important;
  position: relative !important;
}

.fl-row[style*="min-height"]::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: radial-gradient(
    ellipse at top,
    rgba(255, 0, 110, 0.15) 0%,
    transparent 60%
  ) !important;
  pointer-events: none !important;
}

/* Morphism Content Boxes */
.fl-col[style*="background: rgba"] {
  background: var(--gradient-card) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-morph-out) !important;
}

/* Info Boxes */
.uabb-infobox,
.fl-module-info-box {
  background: var(--gradient-card) !important;
  border-radius: 20px !important;
  padding: 30px !important;
  box-shadow: var(--shadow-morph-out) !important;
  border: 1px solid var(--border-light) !important;
}

/* ========================================
   ACCORDION / FAQ - MORPHISM
======================================== */
.fl-accordion-item {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 16px !important;
  margin-bottom: 14px !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-morph-out) !important;
  transition: all 0.3s ease !important;
}

.fl-accordion-item:hover {
  border-color: var(--border-color) !important;
}

.fl-accordion-button {
  padding: 20px 24px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.fl-accordion-button::after {
  content: "+" !important;
  font-size: 1.4rem !important;
  color: var(--accent-primary) !important;
  transition: transform 0.3s !important;
}

.fl-accordion-button:hover {
  background: rgba(255, 0, 110, 0.08) !important;
}

.fl-accordion-content {
  padding: 0 24px 20px !important;
  background: transparent !important;
}

.fl-accordion-content p {
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
}

/* ========================================
   GAME PAGE - IFRAME
======================================== */
.game-iframe-container {
  background: var(--bg-card) !important;
  border: 2px solid var(--border-color) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-morph-out), 0 20px 60px rgba(0, 0, 0, 0.4) !important;
}

.game-iframe-container iframe {
  display: block !important;
  background: #000 !important;
}

/* How to Play - Morphism */
.how-to-play-item {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 20px !important;
  padding: 28px !important;
  box-shadow: var(--shadow-morph-out) !important;
  transition: all 0.3s ease !important;
}

.how-to-play-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-morph-out), var(--shadow-glow) !important;
}

.how-to-play-number {
  background: var(--gradient-primary) !important;
  width: 55px !important;
  height: 55px !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 15px var(--accent-glow) !important;
}

/* ========================================
   RESPONSIBLE GAMING
======================================== */
div[style*="Felelős"] + div,
.responsible-gaming-logos {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 25px !important;
}

div[style*="Felelős"] + div img,
.responsible-gaming-logos img {
  height: 45px !important;
  width: auto !important;
  opacity: 0.6 !important;
  filter: grayscale(30%) !important;
  transition: all 0.3s ease !important;
}

div[style*="Felelős"] + div img:hover,
.responsible-gaming-logos img:hover {
  opacity: 1 !important;
  filter: grayscale(0%) !important;
  transform: scale(1.1) !important;
}

/* ========================================
   FOOTER - MORPHISM
======================================== */
footer.fl-builder-content {
  background: var(--bg-secondary) !important;
  border-top: 1px solid var(--border-color) !important;
  position: relative !important;
}

footer.fl-builder-content::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 200px !important;
  height: 3px !important;
  background: var(--gradient-primary) !important;
  border-radius: 0 0 3px 3px !important;
}

footer img[alt*="logó"] {
  max-width: 120px !important;
  height: auto !important;
  margin-bottom: 20px !important;
  opacity: 0.9 !important;
}

footer h4 {
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: var(--accent-light) !important;
  margin-bottom: 18px !important;
}

footer nav ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

footer nav ul li {
  margin-bottom: 12px !important;
}

footer nav ul li a {
  color: var(--text-muted) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  transition: all 0.3s !important;
  display: inline-block !important;
}

footer nav ul li a:hover {
  color: var(--accent-primary) !important;
  transform: translateX(4px) !important;
}

/* ========================================
   COOKIE CONSENT - MORPHISM
======================================== */
#cookie-consent {
  background: rgba(26, 0, 51, 0.95) !important;
  backdrop-filter: blur(20px) !important;
  border-top: 2px solid var(--accent-primary) !important;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3) !important;
}

#cookie-consent p {
  font-size: 0.9rem !important;
  color: var(--text-muted) !important;
}

#cookie-consent button {
  background: var(--gradient-primary) !important;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px var(--accent-glow) !important;
  transition: all 0.3s !important;
}

#cookie-consent button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px var(--accent-glow) !important;
}

#cookie-consent a[style*="transparent"] {
  background: transparent !important;
  border: 1px solid var(--accent-primary) !important;
  color: var(--accent-primary) !important;
}

/* ========================================
   AGE VERIFICATION MODAL - MORPHISM
======================================== */
.mp-lp-welcome-modal {
  background: rgba(26, 0, 51, 0.98) !important;
  backdrop-filter: blur(25px) !important;
}

.mp-lp-welcome-modal-inner {
  background: var(--gradient-card) !important;
  border: 2px solid var(--accent-primary) !important;
  border-radius: 28px !important;
  box-shadow: var(--shadow-morph-out), var(--shadow-glow),
    0 30px 80px rgba(0, 0, 0, 0.5) !important;
  max-width: 400px !important;
  padding: 40px 35px !important;
}

.mp-lp-welcome-modal-inner h3 {
  font-size: 1.6rem !important;
  margin-bottom: 16px !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.mp-lp-welcome-modal-inner p {
  font-size: 1rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 25px !important;
}

.mp-lp-welcome-modal-button {
  background: var(--gradient-primary) !important;
  padding: 14px 40px !important;
  font-size: 1rem !important;
  border-radius: 16px !important;
  box-shadow: 0 6px 20px var(--accent-glow) !important;
  transition: all 0.3s !important;
}

.mp-lp-welcome-modal-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 10px 30px var(--accent-glow) !important;
}

#close-modal {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 8px !important;
  transition: all 0.3s !important;
}

#close-modal:hover {
  background: rgba(255, 0, 110, 0.2) !important;
}

/* ========================================
   FORM INPUTS - MORPHISM
======================================== */
.contact-form input,
.contact-form textarea,
input[type="text"],
input[type="email"],
textarea {
  width: 100% !important;
  padding: 16px 20px !important;
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 14px !important;
  color: var(--text-light) !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  box-shadow: var(--shadow-morph-in) !important;
  transition: all 0.3s ease !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
input:focus,
textarea:focus {
  outline: none !important;
  border-color: var(--accent-primary) !important;
  box-shadow: var(--shadow-morph-in), 0 0 0 3px rgba(255, 0, 110, 0.15) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dark) !important;
}

/* ========================================
   SCROLLBAR
======================================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* ========================================
   SELECTION
======================================== */
::selection {
  background: var(--accent-primary);
  color: var(--text-light);
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px var(--accent-glow);
  }
  50% {
    box-shadow: 0 0 40px var(--accent-glow);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ========================================
   HERO SECTIONS WITH IMAGES
======================================== */
.hero-section,
.fl-row[style*="hero-background"] {
  position: relative !important;
}

.hero-section::after,
.fl-row[style*="hero-background"]::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 150px !important;
  background: linear-gradient(to top, var(--bg-dark), transparent) !important;
  pointer-events: none !important;
}

/* ========================================
   ENHANCED GAME CARDS
======================================== */
.game-card {
  position: relative !important;
  overflow: hidden !important;
}

.game-card::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 50% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  ) !important;
  transform: skewX(-25deg) !important;
  transition: left 0.6s ease !important;
}

.game-card:hover::after {
  left: 150% !important;
}

/* Image hover zoom effect */
.game-card img {
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.game-card:hover img {
  transform: scale(1.08) !important;
}

/* ========================================
   INFO CARDS WITH DECORATIVE IMAGES
======================================== */
.info-card {
  position: relative !important;
  overflow: hidden !important;
}

.info-card::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 4px !important;
  background: var(--gradient-primary) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.4s ease !important;
}

.info-card:hover::before {
  transform: scaleX(1) !important;
}

/* ========================================
   IMPROVED IMAGE CONTAINERS
======================================== */
[style*="object-fit: cover"] {
  image-rendering: -webkit-optimize-contrast !important;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    var(--bg-secondary) 100%
  ) !important;
}

/* ========================================
   ENHANCED RESPONSIBLE GAMING LOGOS
======================================== */
[style*="Felelős"] ~ div img,
div[style*="gap: 30px"] > a img {
  filter: grayscale(20%) brightness(0.9) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

[style*="Felelős"] ~ div img:hover,
div[style*="gap: 30px"] > a img:hover {
  filter: grayscale(0%) brightness(1.1) !important;
  transform: scale(1.15) translateY(-3px) !important;
}

/* ========================================
   DECORATIVE BACKGROUND IMAGES
======================================== */
[style*="opacity: 0.15"] img,
[style*="opacity: 0.08"] img {
  pointer-events: none !important;
  user-select: none !important;
}

/* ========================================
   PHONES/DEVICES IMAGE SECTION
======================================== */
img[alt*="eszközön"],
img[alt*="telefon"] {
  filter: drop-shadow(0 25px 50px rgba(255, 0, 110, 0.25)) !important;
  animation: float 4s ease-in-out infinite !important;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
  .fl-row {
    padding: 50px 0 !important;
  }

  .fl-row[style*="min-height"] {
    padding: 60px 15px !important;
  }

  .game-card {
    padding: 22px !important;
    border-radius: 20px !important;
  }

  .game-iframe-container iframe {
    height: 400px !important;
  }

  footer [style*="display: flex"] {
    flex-direction: column !important;
    gap: 30px !important;
  }
}

@media (max-width: 480px) {
  .fl-button,
  a.fl-button {
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
    border-radius: 14px !important;
  }

  .mp-lp-welcome-modal-inner {
    margin: 15px !important;
    padding: 30px 20px !important;
    border-radius: 22px !important;
  }

  .how-to-play-item {
    padding: 22px !important;
  }
}
