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

:active, :focus { outline: 0; }
a:active, a:focus { outline: 0; }

aside, footer, header, nav { display: block; }

body, html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

button, input, textarea { font-family: inherit; }
input::-ms-clear { display: none; }
input, textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input::placeholder, textarea::placeholder { color: inherit; }

button {
  cursor: pointer;
  background-color: transparent;
}
button::-moz-focus-inner { padding: 0; border: 0; }

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }

ul li { list-style: none; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

picture {
  display: block;
  width: 100%;
  height: 100%;
}


:root {
  --font-primary: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-secondary: "Space Grotesk", "Nunito", sans-serif;
  --container-max: 1280px;
  --container-padding: 24px;
  --container-padding-tablet: 18px;
  --container-padding-mobile: 12px;
  --container-full: calc(var(--container-max) + (var(--container-padding) * 2));
  
 
  --bg-primary: #0d0a1a;
  --text-primary: #ffffff;
  --text-dark: #1a1a2e;
  --text-light: #e6e6ff;
  --header-bg: #16213e;
  --shadow-main: 0 0 20px rgba(147, 51, 234, 0.4);
  --bg-secondary: #1a1635;
  --accent-primary: #9333ea;
  --accent-gold: #f59e0b;
  --shadow-card: 0 0 30px rgba(147, 51, 234, 0.3);
  --bg-card: #252041;
  --hover-primary: #7c3aed;
  --active-primary: #6d28d9;
  --accent-secondary: #fbbf24;
  --success-color: #10b981;
  --gradient-main: linear-gradient(145deg, #7c3aed 0%, #c084fc 100%);
  --gradient-card: linear-gradient(155deg, #252041 0%, #312e81 100%);
  --gradient-dark: linear-gradient(135deg, #0d0a1a 0%, #1e1b4b 100%);
}


.content-wrapper {
  max-width: var(--container-full);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (max-width: 991px) {
  .content-wrapper {
    padding: 0 var(--container-padding-tablet);
  }
}

@media (max-width: 600px) {
  .content-wrapper {
    padding: 0 var(--container-padding-mobile);
  }
}


.main-wrapper {
  display: flex;
  flex-direction: column;
  font-family: var(--font-primary);
  min-height: 100vh;
  overflow: hidden;
  color: var(--text-primary);
  background: var(--bg-primary);
  position: relative;
}

.space-grotesk {
  font-family: var(--font-secondary);
}

.main-content {
  flex: 1 1 auto;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .main-content {
    margin-bottom: 50px;
  }
}

@media (max-width: 600px) {
  .main-content {
    margin-bottom: 40px;
  }
}

a, button {
  color: var(--text-primary);
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}


.text-main {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-light);
}

@media (max-width: 600px) {
  .text-main {
    font-size: 14px;
  }
}

.text-size-lg {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
}

.text-size-xs {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
}

.text-size-md {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}

.text-size-xl {
  font-weight: 700;
  font-size: 42px;
  line-height: 115%;
}

@media (max-width: 1220px) {
  .text-size-xl {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .text-size-xl {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .text-size-xl {
    font-size: 24px;
  }
}

.text-size-sm {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
}

@media (max-width: 991px) {
  .text-size-sm {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .text-size-sm {
    font-size: 12px;
  }
}

.color-accent {
  color: var(--accent-primary);
}


.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  padding: 12px 20px;
  width: fit-content;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent-primary);
  line-height: 1.1;
  border: 2px solid transparent;
  background: rgba(147, 51, 234, 0.12);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  border-color: var(--accent-primary);
  background: rgba(147, 51, 234, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--accent-primary);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .brand-logo {
    font-size: 16px;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .brand-logo {
    font-size: 14px;
    gap: 10px;
  }
}

.brand-logo:hover {
  color: var(--hover-primary);
  transform: scale(1.05);
}

.brand-logo span {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width: 991px) {
  .brand-logo span {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 600px) {
  .brand-logo span {
    width: 28px;
    height: 28px;
  }
}

.featured {
  border-radius: 25px;
  padding: 18px 32px;
  width: fit-content;
  font-weight: 800;
  font-size: 22px;
  line-height: 115%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  box-shadow: var(--shadow-card);
  background: var(--gradient-main);
  border: 2px solid rgba(147, 51, 234, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(147, 51, 234, 0.5);
}

@media (max-width: 991px) {
  .featured {
    font-size: 20px;
    padding: 16px 28px;
  }
}

@media (max-width: 600px) {
  .featured {
    font-size: 18px;
    padding: 14px 24px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-dark);
  width: fit-content;
  text-shadow: none;
  padding: 14px 24px;
  border-radius: 25px;
  min-width: 200px;
  min-height: 50px;
  text-align: center;
  background: linear-gradient(145deg, var(--accent-gold) 0%, var(--accent-secondary) 100%);
  border: 2px solid transparent;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
  border-color: rgba(251, 191, 36, 0.6);
}

@media (max-width: 1220px) {
  .btn {
    font-size: 15px;
    min-height: 48px;
    min-width: 180px;
  }
}

@media (max-width: 991px) {
  .btn {
    min-height: 45px;
    font-size: 14px;
    min-width: 160px;
  }
}

@media (max-width: 600px) {
  .btn {
    min-height: 42px;
    font-size: 13px;
    border-radius: 20px;
    min-width: 140px;
    padding: 12px 20px;
  }
}


.spacing-bottom-lg {
  margin-bottom: 60px;
}

.spacing-bottom-md {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .spacing-bottom-md {
    margin-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .spacing-bottom-md {
    margin-bottom: 20px;
  }
}

.spacing-bottom-sm {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .spacing-bottom-sm {
    margin-bottom: 16px;
  }
}

@media (max-width: 600px) {
  .spacing-bottom-sm {
    margin-bottom: 12px;
  }
}

.spacing-bottom-xs {
  margin-bottom: 8px;
}

.margin-center {
  margin-left: auto;
  margin-right: auto;
}

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

.uppercase {
  text-transform: uppercase;
}

.weight-bold {
  font-weight: 700;
}

.weight-medium {
  font-weight: 500;
}


.primary-header {
  position: relative;
  z-index: 10;
  background: var(--gradient-dark);
  border-bottom: 4px solid var(--accent-primary);
}

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

@media (max-width: 991px) {
  .header-container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 600px) {
  .header-container {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.navigation-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .navigation-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--gradient-main);
    z-index: 100;
    padding: 100px 30px 30px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: auto;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .navigation-panel {
    padding: 80px 20px 20px 20px;
  }
}

.navigation-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 991px) {
  .nav-menu {
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
}

.nav-item {
  list-style: none;
}

.menu-close-btn {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
}

@media (max-width: 991px) {
  .menu-close-btn {
    display: block;
    top: 30px;
    right: 30px;
  }
}

@media (max-width: 600px) {
  .menu-close-btn {
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
  }
}

.menu-close-btn::before,
.menu-close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
}

.menu-close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 40px;
  height: 24px;
  background-color: transparent;
  border: none;
}

@media (max-width: 991px) {
  .mobile-toggle {
    display: flex;
  }
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--hover-primary));
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(13, 10, 26, 0.7) 0%, rgba(13, 10, 26, 0.95) 100%);
  z-index: 1;
}


.hero-banner {
  padding-top: 80px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-banner {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .hero-banner {
    padding-top: 40px;
  }
}

.hero-content {
  text-align: center;
}

.hero-title {
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
  background: linear-gradient(145deg, var(--accent-primary), var(--hover-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.hero-description {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--accent-primary);
  font-size: 18px;
}

@media (max-width: 768px) {
  .hero-description {
    display: none;
  }
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 25px 50px;
  max-width: 900px;
  margin: 30px auto;
}

@media (max-width: 991px) {
  .features-grid {
    gap: 20px 40px;
  }
}

@media (max-width: 600px) {
  .features-grid {
    gap: 15px;
    flex-direction: column;
  }
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  min-width: 280px;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.feature-card span {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.update-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  opacity: 0.8;
}

.update-icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

.update-text {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--accent-primary);
}


.casino-showcase {
  position: relative;
  z-index: 2;
}

.casino-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.casino-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.casino-item:nth-child(1) { animation-delay: 0.1s; }
.casino-item:nth-child(2) { animation-delay: 0.2s; }
.casino-item:nth-child(3) { animation-delay: 0.3s; }
.casino-item:nth-child(4) { animation-delay: 0.4s; }

.casino-card {
  background: var(--gradient-card);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(147, 51, 234, 0.3);
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
  border-color: rgba(147, 51, 234, 0.6);
}

.card-primary {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .card-primary {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.logo-section {
  position: relative;
  flex-shrink: 0;
}

.promo-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: 10px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.casino-logo {
  width: 140px;
  height: 90px;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  padding: 15px;
  transition: transform 0.3s ease;
}

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

.casino-logo img {
  object-fit: contain;
}

.info-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casino-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-primary);
  transition: color 0.3s ease;
  margin-bottom: 5px;
}

.casino-name:hover {
  color: var(--hover-primary);
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.star-rating {
  width: 75px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-rating img {
  width: 64px;
  height: 20px;
  object-fit: contain;
}

.rating-score {
  color: var(--accent-gold);
  font-size: 20px;
  font-weight: 700;
}

.bonus-offer {
  color: var(--accent-secondary);
  line-height: 1.3;
  display: block;
  transition: color 0.3s ease;
  font-size: 18px;
}

.bonus-offer:hover {
  color: var(--accent-gold);
}


.card-secondary {
  border-top: 1px solid rgba(147, 51, 234, 0.3);
  padding-top: 5px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-item span {
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.action-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 600px) {
  .action-section {
    flex-direction: column;
    gap: 15px;
  }
}

.action-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.action-button:hover .button-glow {
  left: 100%;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  width: 36px;
  height: 24px;
  background: white;
  border-radius: 4px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.payment-icon:hover {
  transform: scale(1.1);
}

.payment-icon img {
  border-radius: 3px;
  object-fit: contain;
}


.info-sections {
  max-width: 1000px;
  margin: 0 auto;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.info-block {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(147, 51, 234, 0.2);
  box-shadow: var(--shadow-card);
}

.section-title {
  max-width: 400px;
  margin: 0 auto 30px;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-item {
  background: rgba(13, 10, 26, 0.6);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid var(--accent-primary);
  transition: transform 0.3s ease;
}

.content-item:hover {
  transform: translateX(5px);
}

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

.star-display {
  width: 60px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.content-text {
  line-height: 1.6;
  color: var(--text-light);
}

.content-text strong {
  color: var(--accent-primary);
  font-weight: 600;
}


.main-footer {
  background: var(--gradient-dark);
  border-top: 4px solid var(--accent-primary);
  position: relative;
  z-index: 2;
  padding: 40px 0 20px;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(147, 51, 234, 0.3);
  margin-bottom: 40px;
}

.partner-item {
  flex-shrink: 0;
}

.partner-link {
  display: block;
  width: 90px;
  height: 60px;
  transition: transform 0.3s ease;
}

.partner-link:hover {
  transform: scale(1.1);
}

.partner-link img {
  object-fit: contain;
  filter: grayscale(1) brightness(2);
  transition: filter 0.3s ease;
}

.partner-link:hover img {
  filter: grayscale(0) brightness(1);
}

.special-logo {
  filter: grayscale(1) brightness(3) !important;
}

.footer-texts {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.footer-section {
  text-align: left;
}

.footer-subtitle {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-nav {
  border-top: 1px solid rgba(147, 51, 234, 0.3);
  padding-top: 30px;
  margin-bottom: 30px;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

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

.footer-nav-item:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-primary);
}

.footer-nav-link {
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-nav-link:hover {
  color: var(--accent-primary);
}

.age-warning {
  color: var(--accent-primary);
  font-size: 20px;
}


.cookie-notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-card);
  border: 2px solid var(--accent-primary);
  border-radius: 20px;
  padding: 25px;
  max-width: 500px;
  width: 90%;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: none;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-info {
  background: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
}

.cookie-info:hover {
  background: rgba(147, 51, 234, 0.1);
}


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


@media (max-width: 768px) {
  .casino-card {
    padding: 20px;
  }
  
  .info-block {
    padding: 25px;
  }
  
  .partner-logos {
    gap: 20px;
    padding: 30px 0;
  }
  
  .partner-link {
    width: 70px;
    height: 50px;
  }
  
  .footer-menu {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .casino-card {
    padding: 15px;
  }
  
  .info-block {
    padding: 20px;
  }
  
  .cookie-notification {
    padding: 20px;
  }
  
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-actions li {
    width: 100%;
  }
  
  .cookie-actions .btn {
    width: 100%;
    min-width: auto;
  }
}