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

:root {
  --bg-dark: #302719;
  --bg-darker: #1a1612;
  --text-light: #b89968;
  --text-white: #ffffff;
  --text-orange: #FFD700;
  --card-bg: #1a1a1a;
  --card-border: #333;
  --orange: #FFD700;
  --green: #27ae60;
  --red: #e74c3c;
}

body {
  font-family: 'Montserrat', sans-serif;
  background:
  radial-gradient(900px 700px at 50% 35%, rgba(255,170,90,0.15), transparent 70%),
  radial-gradient(ellipse at center, #59381A 0%, #4a3018 25%, #3b2815 55%, #312619 100%);
  color: var(--text-white);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.stars::before {
  content: '+';
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 18px;
  top: 8%;
  left: 8%;
  animation: twinkle 3s infinite;
}

.stars::after {
  content: '+';
  position: absolute;
  color: rgba(255, 255, 255, 0.12);
  font-size: 16px;
  top: 3%;
  right: 35%;
  animation: twinkle 4s infinite 1s;
}

body::before {
  content: '+';
  position: fixed;
  color: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  top: 18%;
  right: 22%;
  z-index: 0;
  animation: twinkle 5s infinite 2s;
}

body::after {
  content: '+';
  position: fixed;
  color: rgba(255, 255, 255, 0.1);
  font-size: 20px;
  bottom: 35%;
  right: 8%;
  z-index: 0;
  animation: twinkle 3.5s infinite 0.5s;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.25; }
}

.decorative-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.plus-sign {
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  animation: twinkle 4s infinite;
}

.plus-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.plus-2 {
  top: 25%;
  right: 20%;
  animation-delay: 1s;
}

.plus-3 {
  top: 40%;
  left: 5%;
  animation-delay: 2s;
}

.plus-4 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.plus-5 {
  top: 75%;
  left: 25%;
  animation-delay: 0.5s;
}

.plus-6 {
  top: 10%;
  right: 8%;
  animation-delay: 1.5s;
}

.star-element {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 20px;
  animation: twinkle 3s infinite;
}

.star-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0.8s;
}

.star-2 {
  top: 45%;
  right: 10%;
  animation-delay: 2.2s;
}

.star-3 {
  top: 70%;
  left: 10%;
  animation-delay: 1.2s;
}

.star-4 {
  top: 35%;
  right: 5%;
  animation-delay: 2.8s;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.header {
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--text-white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  display: block;
  transition: all 0.3s ease;
}

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

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

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

.hero {
  padding: 40px 0 0px;
  position: relative;
}

.hero::before {
  content: '+';
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 22px;
  top: 50%;
  left: 5%;
  animation: twinkle 4s infinite 0.8s;
}

.hero::after {
  content: '+';
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  font-size: 16px;
  bottom: 15%;
  left: 3%;
  animation: twinkle 5s infinite 2.5s;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.hero-text h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-light {
  color: var(--text-light);
}

.text-white {
  color: var(--text-white);
}

.text-orange {
  color: var(--text-orange);
}

.hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.casino-image-container {
  position: relative;
  width: 520px;
  height: 280px;
}

.curved-line {
  position: absolute;
  top: -20px;
  left: -50px;
  width: 200px;
  height: 150px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-15deg);
  z-index: 1;
}

.casino-image {
  position: relative;
  width: 420px;
  height: 270px;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(162, 127, 188, 0.6);
  box-shadow: 
    0 0 20px rgba(162, 127, 188, 0.3),
    -10px 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.casino-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sparkle {
  position: absolute;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  animation: twinkle 3s infinite;
  z-index: 3;
}

.sparkle-1 {
  top: 20px;
  right: 30px;
  animation-delay: 0.5s;
}

.sparkle-2 {
  bottom: 40px;
  left: 20px;
  animation-delay: 1.5s;
}

.sparkle-3 {
  top: 60px;
  left: -20px;
  animation-delay: 2.5s;
}

.trending {
  padding: 30px 0 50px;
  position: relative;
}

.trending::before {
  content: '+';
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  top: 15%;
  right: 10%;
  animation: twinkle 4s infinite 1.5s;
}

.trending::after {
  content: '✦';
  position: absolute;
  color: rgba(212, 163, 71, 0.15);
  font-size: 28px;
  top: 8%;
  right: 5%;
  animation: twinkle 3s infinite;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.title-sparkle {
  color: var(--text-orange);
  font-size: 36px;
  animation: twinkle 2s infinite;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  position: relative;
  max-width: 1700px;
  margin: 0 auto;
}

.cards-grid::before {
  content: '+';
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  font-size: 16px;
  bottom: 10%;
  right: 2%;
  animation: twinkle 4s infinite 2s;
}

.cards-grid::after {
  content: '+';
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 20px;
  bottom: 50%;
  right: -2%;
  animation: twinkle 3.5s infinite 0.5s;
}

.casino-card {
  background: linear-gradient(145deg, #3a2f25 0%, #302719 50%, #2a1f15 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 170, 90, 0.15);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 100%;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 170, 90, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 170, 90, 0.2);
}

.badge {
  position: absolute;
  top: 15px;
  left: -30px;
  padding: 6px 40px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-45deg);
  z-index: 2;
  color: white;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.badge-hot {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.badge-top {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

/* Card Header Section */
.card-header-section {
  background: #000000;
  padding: 25px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 170, 90, 0.15);
}

.card-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.casino-logo {
  width: 120px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 8px;
}

.slots-city-logo {
  font-family: 'Montserrat', cursive;
  font-size: 32px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.stars-rating {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 0px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.club-text {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* Main Card Content - Left to Right Layout */
.card-main-content {
  display: flex;
  align-items: center;
  padding: 30px 25px;
  background: linear-gradient(145deg, #302719 0%, #2a1f15 100%);
  gap: 30px;
  min-height: 120px;
}

/* Left Column: Bonus Info */
.card-left-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bonus-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bonus-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-amount {
  font-size: 32px;
  font-weight: 800;
  color: #00FF00;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
  line-height: 1;
}

.bonus-details {
  font-size: 18px;
  font-weight: 600;
  color: #FF8C00;
  text-shadow: 0 0 8px rgba(255, 140, 0, 0.3);
}

/* Middle Column: Stats */
.card-middle-column {
  flex: 1;
  display: flex;
  justify-content: center;
}

.stats-section {
  display: flex;
  gap: 25px;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 90, 0.1);
  transition: all 0.3s ease;
  min-width: 80px;
}

.stat-item:hover {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-color: rgba(255, 170, 90, 0.2);
  transform: translateY(-2px);
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #FF8C00;
  text-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
}

/* Right Column: CTA Button */
.card-right-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.bonus-amount {
  font-size: 28px;
  font-weight: 800;
  color: #FF8C00;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.btn-bonus {
  background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 50px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.btn-bonus:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
  background: linear-gradient(135deg, #FF9500 0%, #FF7A00 100%);
}

.card-details {
  margin-bottom: 15px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.detail-value {
  color: #00FF00;
  font-weight: 600;
  font-size: 14px;
}

.card-stats {
  display: flex;
  gap: 20px;
}

.stat {
  flex: 1;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 170, 90, 0.1);
  transition: all 0.3s ease;
}

.stat:hover {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-color: rgba(255, 170, 90, 0.2);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.stat-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #FF8C00;
}

.footer {
  background: var(--bg-darker);
  padding: 40px 0 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.footer::before {
  content: '+';
  position: absolute;
  color: rgba(255, 255, 255, 0.08);
  font-size: 18px;
  top: 20%;
  left: 5%;
  animation: twinkle 4.5s infinite 1.2s;
}

.footer::after {
  content: '+';
  position: absolute;
  color: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  bottom: 30%;
  right: 8%;
  animation: twinkle 5s infinite 0.8s;
}

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

.footer-links {
  display: grid;
  grid-template-columns: 200px 1fr 300px;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-title {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.logo-item {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 500;
  margin-right: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-column h4 {
  color: var(--text-orange);
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

/* Responsible Entertainment Section */
.responsible-section {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-title {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.responsible-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.support-aware-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: linear-gradient(135deg, #F58220 0%, #FF9500 100%);
  border-radius: 50%;
  color: var(--text-white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245, 130, 32, 0.3);
}

.support-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.support-title {
  color: var(--text-white);
  font-size: 20px;
  font-weight: 700;
}

.support-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 500;
}

.support-btn {
  display: block;
  padding: 12px 20px;
  background: linear-gradient(135deg, #F58220 0%, #FF9500 100%);
  color: var(--text-white);
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(245, 130, 32, 0.3);
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 130, 32, 0.5);
}

.footer-link:hover {
  color: var(--text-white);
}

.footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.footer-warning {
  color: var(--text-orange);
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
}

.footer-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.casino-logo-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
  text-decoration: none;
}

.casino-logo-link:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.age-badge-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border-radius: 50%;
  color: #1a1612;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 
    0 4px 12px rgba(255, 215, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease;
}

.age-badge-custom:hover {
  transform: scale(1.1);
  box-shadow: 
    0 6px 16px rgba(255, 215, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.casino-logo-small {
  height: 45px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.casino-logo-link:hover .casino-logo-small {
  filter: brightness(1);
}

.partner-badge {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
  text-decoration: none;
}

.partner-badge:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.partner-logo {
  height: 45px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.partner-badge:hover .partner-logo {
  filter: brightness(1);
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-images {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-images img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-images img:hover {
  opacity: 1;
}

.footer-images a {
  text-decoration: none;
}

/* Mobile optimization for footer images */
@media (max-width: 768px) {
  .footer-images {
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
  }
  
  .footer-images img {
    height: 35px;
    max-width: 80px;
  }
}

@media (max-width: 480px) {
  .footer-images {
    gap: 8px;
    margin: 10px 0;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-images img {
    height: 30px;
    max-width: 70px;
  }

  .footer-logos {
    gap: 10px;
    margin-bottom: 15px;
  }

  .age-badge-custom {
    height: 40px;
    width: 40px;
    font-size: 12px;
  }

  .casino-logo-small {
    height: 35px;
    max-width: 90px;
  }

  .partner-logo {
    height: 35px;
    max-width: 90px;
  }
  
  /* Mobile footer text optimization */
  .footer-content {
    padding: 20px 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-column {
    text-align: center;
  }

  .responsible-section {
    padding: 15px;
    border-radius: 8px;
  }

  .responsible-title {
    font-size: 16px;
  }

  .responsible-text {
    font-size: 13px;
  }

  .support-aware-section {
    padding: 12px;
    gap: 12px;
  }

  .support-icon {
    height: 40px;
    width: 40px;
    font-size: 12px;
  }

  .support-title {
    font-size: 16px;
  }

  .support-subtitle {
    font-size: 11px;
  }

  .support-btn {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .footer-text {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }
  
  .footer-warning {
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-logos {
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
  }

  .age-badge-custom {
    height: 45px;
    width: 45px;
    font-size: 14px;
  }

  .casino-logo-small {
    height: 40px;
    max-width: 100px;
  }

  .partner-logo {
    height: 40px;
    max-width: 100px;
  }

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

/* Redesigned Responsible Betting Page Styles */
.main-content {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 60px;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(255, 170, 90, 0.1) 0%, rgba(255, 170, 90, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 170, 90, 0.3);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 56px;
  color: var(--text-white);
  margin-bottom: 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--text-orange);
  margin-bottom: 40px;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-orange);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Quick Help Section */
.quick-help {
  margin-bottom: 60px;
}

.help-card.emergency {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 32px rgba(255, 68, 68, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.help-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.help-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: white;
}

.help-card p {
  font-size: 18px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.emergency-btn {
  display: inline-block;
  background: white;
  color: #ff4444;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.emergency-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.availability {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}

/* Single Content Block */
.single-content-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 170, 90, 0.2);
  backdrop-filter: blur(10px);
  margin-bottom: 60px;
}

.content-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 170, 90, 0.1);
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-title {
  color: var(--text-white);
  font-size: 28px;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.content-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Lists Styling */
.warning-list, .tools-list, .help-list, .protection-list, .ban-list, .tips-list, .contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.warning-item, .tool-item, .help-item, .measure-item, .ban-item, .tip-item, .contact-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 170, 90, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 170, 90, 0.2);
  transition: all 0.3s ease;
}

.warning-item:hover, .tool-item:hover, .help-item:hover, .measure-item:hover, .ban-item:hover, .tip-item:hover, .contact-item:hover {
  background: rgba(255, 170, 90, 0.15);
  transform: translateY(-2px);
}

.warning-icon, .tool-icon, .help-icon, .measure-icon, .ban-icon, .tip-icon, .contact-icon {
  font-size: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.tool-content, .help-content, .contact-content {
  flex: 1;
}

.tool-content h3, .help-content h3, .contact-content h3 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.tool-content p, .help-content p, .contact-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.phone-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-orange);
  margin-bottom: 8px;
}

.help-link {
  color: var(--text-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: #ff6b35;
}

.warning-item span:last-child, .measure-item span:last-child, .ban-item span:last-child, .tip-item span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

.call-to-action {
  background: rgba(255, 170, 90, 0.1);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 170, 90, 0.2);
  margin-top: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.content-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 170, 90, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--text-orange) 0%, #ff6b35 100%);
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 170, 90, 0.4);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.card-icon {
  font-size: 32px;
  margin-right: 15px;
}

.card-header h2 {
  color: var(--text-white);
  font-size: 24px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Warning Grid */
.warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.warning-item {
  display: flex;
  align-items: center;
  background: rgba(255, 68, 68, 0.1);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #ff4444;
}

.warning-icon {
  font-size: 24px;
  margin-right: 12px;
}

.warning-item span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

/* Tools Grid */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.tool-item {
  text-align: center;
  background: rgba(255, 170, 90, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 90, 0.2);
  transition: all 0.3s ease;
}

.tool-item:hover {
  background: rgba(255, 170, 90, 0.15);
  transform: translateY(-2px);
}

.tool-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.tool-item h3 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 10px;
}

.tool-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

/* Help Grid */
.help-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.help-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 170, 90, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 90, 0.2);
}

.help-icon {
  font-size: 28px;
  margin-right: 15px;
  flex-shrink: 0;
}

.help-content h3 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 8px;
}

.help-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.phone-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-orange);
  margin-bottom: 8px;
}

.help-link {
  color: var(--text-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.help-link:hover {
  color: #ff6b35;
}

/* Tips Grid */
.tips-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.tip-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.tip-item.highlighted {
  background: rgba(255, 170, 90, 0.1);
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid rgba(255, 170, 90, 0.2);
  margin: 5px 0;
}

.tip-icon {
  font-size: 16px;
  margin-right: 10px;
  color: var(--text-orange);
}

.tip-item span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

/* Protection Measures */
.protection-measures {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.measure-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.measure-item.highlighted {
  background: rgba(255, 170, 90, 0.1);
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid rgba(255, 170, 90, 0.2);
  margin: 5px 0;
}

.measure-icon {
  font-size: 16px;
  margin-right: 10px;
  color: var(--text-orange);
}

.measure-item span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

/* Call to Action Box */
.call-to-action {
  background: rgba(255, 170, 90, 0.1);
  padding: 15px;
  border-radius: 6px;
  border: 1px solid rgba(255, 170, 90, 0.2);
  margin-top: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Mobile optimization for redesigned responsible betting page */
@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .content-card {
    padding: 20px;
  }
  
  .card-header h2 {
    font-size: 20px;
  }
  
  .warning-grid {
    grid-template-columns: 1fr;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .protection-measures {
    grid-template-columns: 1fr;
  }
  
  .help-card.emergency {
    padding: 30px 20px;
  }
  
  .help-card h3 {
    font-size: 24px;
  }
  
  .emergency-btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 40px 20px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .content-card {
    padding: 15px;
  }
  
  .card-header h2 {
    font-size: 18px;
  }
  
  .card-icon {
    font-size: 24px;
  }
  
  .help-card.emergency {
    padding: 20px 15px;
  }
  
  .help-card h3 {
    font-size: 20px;
  }
  
  .help-card p {
    font-size: 16px;
  }
  
  .emergency-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .tool-item, .help-item, .warning-item, .tip-item, .measure-item {
    padding: 12px;
  }
  
  .warning-icon, .tip-icon, .measure-icon {
    font-size: 20px;
  }
  
  /* Mobile optimization for single content block */
  .single-content-block {
    padding: 20px;
    margin-bottom: 40px;
  }
  
  .content-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .content-section p {
    font-size: 14px;
  }
  
  .warning-item, .tool-item, .help-item, .measure-item, .ban-item, .tip-item, .contact-item {
    padding: 12px;
  }
  
  .warning-icon, .tool-icon, .help-icon, .measure-icon, .ban-icon, .tip-icon, .contact-icon {
    font-size: 20px;
    margin-right: 12px;
  }
  
  .tool-content h3, .help-content h3, .contact-content h3 {
    font-size: 16px;
  }
  
  .tool-content p, .help-content p, .contact-content p {
  font-size: 13px;
  }
  
  .phone-number {
    font-size: 16px;
  }
}

/* Cookie Policy Specific Styles */
.cookie-type {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 170, 90, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 90, 0.1);
}

.cookie-subtitle {
  color: var(--text-orange);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.cookie-list, .partner-list, .browser-list, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.cookie-item, .partner-item, .browser-item, .contact-item {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 170, 90, 0.1);
  transition: all 0.3s ease;
}

.cookie-item:hover, .partner-item:hover, .browser-item:hover, .contact-item:hover {
  background: rgba(255, 170, 90, 0.1);
  transform: translateY(-2px);
}

.cookie-icon, .partner-icon, .browser-icon, .contact-icon {
  font-size: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.cookie-content, .partner-content, .browser-content, .contact-content {
  flex: 1;
}

.cookie-content h4, .partner-content h4, .browser-content h4, .contact-content h4 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.cookie-content p, .partner-content p, .browser-content p, .contact-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
}

.retention-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 170, 90, 0.2);
  margin-top: 20px;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: rgba(255, 170, 90, 0.1);
  font-weight: 600;
  color: var(--text-white);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255, 170, 90, 0.1);
}

.table-cell {
  padding: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  border-right: 1px solid rgba(255, 170, 90, 0.1);
}

.table-cell:last-child {
  border-right: none;
}

.management-section {
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(255, 170, 90, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 90, 0.1);
}

.management-list, .consequences-list, .data-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.management-item, .consequence-item, .data-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 170, 90, 0.1);
}

.management-icon, .consequence-icon, .data-icon {
  font-size: 20px;
  margin-right: 12px;
}

.management-item span:last-child, .consequence-item span:last-child, .data-item span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

/* Mobile optimization for cookie policy */
@media (max-width: 768px) {
  .retention-table {
    font-size: 12px;
  }
  
  .table-header, .table-row {
    grid-template-columns: 1fr;
  }
  
  .table-cell {
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 170, 90, 0.1);
  }
  
  .table-cell:last-child {
    border-bottom: none;
  }
  
  .cookie-list, .partner-list, .browser-list, .contact-info {
    gap: 10px;
  }
  
  .cookie-item, .partner-item, .browser-item, .contact-item {
    padding: 12px;
  }
  
  .cookie-icon, .partner-icon, .browser-icon, .contact-icon {
    font-size: 20px;
    margin-right: 12px;
  }
  
  .cookie-content h4, .partner-content h4, .browser-content h4, .contact-content h4 {
    font-size: 14px;
  }
  
  .cookie-content p, .partner-content p, .browser-content p, .contact-content p {
    font-size: 12px;
  }
}

/* Data Protection Policy Specific Styles */
.data-type {
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 170, 90, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 90, 0.1);
}

.data-subtitle {
  color: var(--text-orange);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.data-list, .purpose-list, .sharing-list, .cookie-purpose-list, .security-list, .rights-list, .retention-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.data-item, .purpose-item, .sharing-item, .cookie-purpose-item, .security-item, .rights-item, .retention-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 170, 90, 0.1);
  transition: all 0.3s ease;
}

.data-item:hover, .purpose-item:hover, .sharing-item:hover, .cookie-purpose-item:hover, .security-item:hover, .rights-item:hover, .retention-item:hover {
  background: rgba(255, 170, 90, 0.1);
  transform: translateY(-1px);
}

.data-icon, .purpose-icon, .sharing-icon, .cookie-purpose-icon, .security-icon, .rights-icon, .retention-icon {
  font-size: 20px;
  margin-right: 12px;
  flex-shrink: 0;
}

.data-item span:last-child, .purpose-item span:last-child, .sharing-item span:last-child, .cookie-purpose-item span:last-child, .security-item span:last-child, .rights-item span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  flex: 1;
}

.retention-content {
  flex: 1;
}

.retention-content h4 {
  color: var(--text-white);
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: 600;
}

.retention-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.3;
}

/* Mobile optimization for data protection policy */
@media (max-width: 768px) {
  .data-type {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .data-subtitle {
    font-size: 16px;
  }
  
  .data-list, .purpose-list, .sharing-list, .cookie-purpose-list, .security-list, .rights-list, .retention-list {
    gap: 10px;
  }
  
  .data-item, .purpose-item, .sharing-item, .cookie-purpose-item, .security-item, .rights-item, .retention-item {
    padding: 10px 12px;
  }
  
  .data-icon, .purpose-icon, .sharing-icon, .cookie-purpose-icon, .security-icon, .rights-icon, .retention-icon {
    font-size: 18px;
    margin-right: 10px;
  }
  
  .data-item span:last-child, .purpose-item span:last-child, .sharing-item span:last-child, .cookie-purpose-item span:last-child, .security-item span:last-child, .rights-item span:last-child {
    font-size: 13px;
  }
  
  .retention-content h4 {
    font-size: 13px;
  }
  
  .retention-content p {
    font-size: 11px;
  }
}

.modal {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
}

.modal:not(.active) {
  display: none;
}

.modal-content {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  padding: 40px;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-content h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: white;
}

.modal-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.modal-buttons button {
  flex: 1;
  padding: 15px 30px;
  border: 2px solid white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-no {
  background: transparent;
  color: white;
}

.btn-no:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-yes {
  background: white;
  color: #e67e22;
}

.btn-yes:hover {
  transform: scale(1.05);
}

.modal-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(42, 31, 21, 0.95);
    padding: 20px;
    border-radius: 8px;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 170, 90, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 200px;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
    background: rgba(255, 170, 90, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(255, 170, 90, 0.3);
    cursor: pointer;
    padding: 8px;
    min-width: 40px;
    min-height: 40px;
  }

  .menu-toggle:hover {
    background: rgba(255, 170, 90, 0.2);
  }

  .nav-link {
    color: var(--text-white);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s;
    display: block;
  }

  .nav-link:hover {
    color: var(--text-orange);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 42px;
    text-align: center;
  }

  .hero-description {
    text-align: center;
    max-width: 100%;
  }

  .casino-image-container {
    display: none;
  }

  .casino-image {
    width: 320px;
    height: 220px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1400px;
  }
  
  .casino-card {
    width: 100%;
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .responsible-section {
    padding: 20px;
  }

  .support-icon {
    height: 45px;
    width: 45px;
    font-size: 14px;
  }

  .support-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 0px 0 0px;
  }

  .hero-content {
    gap: 0px;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 14px;
  }

  .casino-image-container {
    display: none;
  }

  .casino-image {
    width: 280px;
    height: 180px;
  }

  .trending {
    padding: 0px 0 30px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .casino-card {
    width: 100%;
    max-width: 100%;
  }

  .card-header-section {
    padding: 20px 15px;
  }

  .casino-logo {
    width: 100px;
  }

  /* Tablet Card Layout */
  .card-main-content {
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
  }

  .card-left-column,
  .card-middle-column,
  .card-right-column {
    flex: none;
    width: 100%;
  }

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

  .stats-section {
    justify-content: center;
    gap: 20px;
  }

  .stat-item {
    min-width: 75px;
    padding: 12px 18px;
  }

  .btn-bonus {
    width: 100%;
    min-width: auto;
  }

  .slots-city-logo {
    font-size: 28px;
  }

  .stars-rating {
    font-size: 16px;
  }

  .card-info {
    padding: 20px;
  }

  .bonus-amount {
    font-size: 32px;
  }

  .btn-bonus {
    padding: 8px 20px;
    font-size: 13px;
  }

  .footer {
    padding: 30px 0 15px;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .casino-image-container {
    display: none;
  }

  .casino-image {
    width: 240px;
    height: 150px;
  }

  .section-title {
    font-size: 24px;
  }

  .casino-card {
    width: 100%;
    max-width: 350px;
  }

  .card-logo {
    padding: 20px 15px;
    min-height: 90px;
  }

  .slots-city-logo {
    font-size: 24px;
  }

  .bonus-amount {
    font-size: 28px;
  }

  /* Mobile Card Layout */
  .card-main-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .card-left-column,
  .card-middle-column,
  .card-right-column {
    flex: none;
    width: 100%;
  }

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

  .stats-section {
    justify-content: center;
    gap: 15px;
  }

  .stat-item {
    min-width: 70px;
    padding: 12px 15px;
  }

  .btn-bonus {
    width: 100%;
    min-width: auto;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .modal-content h2 {
    font-size: 22px;
  }

  .modal-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .hero-description {
   display: none;
  }

  .casino-image-container {
   display: none;
  }

  .casino-image {
    width: 220px;
    height: 130px;
  }

  .section-title {
    font-size: 20px;
  }

  .casino-card {
    width: 100%;
    max-width: 320px;
  }

  .slots-city-logo {
    font-size: 20px;
  }

  .bonus-amount {
    font-size: 24px;
  }

  .card-info {
    padding: 15px;
  }

  /* Hide decorative elements on very small screens for better performance */
  .decorative-elements,
  .stars::before,
  .stars::after,
  body::before,
  body::after {
    display: none;
  }

  .hero::before,
  .hero::after,
  .trending::before,
  .trending::after,
  .footer::before,
  .footer::after {
    display: none;
  }
}

/* Montserrat Regular */
@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Montserrat SemiBold */
@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Montserrat Bold */
@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
