:root {
  --primary-gradient: linear-gradient(135deg, #00c2ff 0%, #0099cc 50%, #006699 100%);
  --secondary-gradient: linear-gradient(135deg, #8b0000 0%, #660000 50%, #440000 100%);
  --dark-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  --card-gradient: linear-gradient(145deg, #1e1e1e 0%, #2a2a2a 50%, #1a1a1a 100%);
  --gold-gradient: linear-gradient(45deg, #ffd700 0%, #ffed4a 50%, #ffc107 100%);
  --profile-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --logout-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  --accent-cyan: #00c2ff;
  --accent-dark-red: #8b0000;
  --accent-purple: #667eea;
  --accent-coral: #ff6b6b;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --border-color: #333333;
  --border-light: #444444;
  --shadow-cyan: 0 10px 40px rgba(0, 194, 255, 0.3);
  --shadow-red: 0 10px 40px rgba(139, 0, 0, 0.3);
  --shadow-purple: 0 10px 40px rgba(102, 126, 234, 0.3);
  --shadow-coral: 0 10px 40px rgba(255, 107, 107, 0.3);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--dark-gradient);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}


.logo:hover {
  transform: translateY(-2px);
}

@keyframes logoShine {
  0%,
  100% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

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

@keyframes profilePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 8px 0;
}

.main {
  margin-top: 0;
  padding: 0;
}

.hero {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-banner {
  flex: 1;
  min-width: 300px;
}

.hero-banner-img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 20px;
  box-shadow: var(--shadow-dark);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  background: var(--card-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  overflow: hidden;
  position: relative;
}

.hero-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-banner-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.1), transparent);
  z-index: 1;
}

.hero-banner-img:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 194, 255, 0.2);
}

.hero-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  animation: titlePulse 3s infinite alternate;
}

@keyframes titlePulse {
  0% {
    text-shadow: 0 0 5px rgba(0, 194, 255, 0.1);
  }
  100% {
    text-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
  }
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.compare-btn {
    background: var(--secondary-gradient);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.compare-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-red);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-down:hover {
    opacity: 1;
    transform: translate(-50%, -5px);
}

.scroll-down-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-down-arrow::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-cyan);
    border-bottom: 2px solid var(--accent-cyan);
    transform: rotate(45deg) translate(-2px, -2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 3px;
}

.section-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.search-container {
  display: flex;
  max-width: 500px;
  margin: 0 auto 32px;
  background: var(--card-gradient);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-btn {
  padding: 16px 20px;
  background: var(--accent-cyan);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.search-btn:hover {
  background: #0099cc;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--accent-cyan);
  color: white;
  border-color: var(--accent-cyan);
}

.casino-grid,
.slots-grid,
.videos-grid,
.posts-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.casino-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  justify-content: center;
}

.slots-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.videos-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.posts-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.casino-card,
.slot-card,
.video-card,
.post-card {
  background: var(--card-gradient);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.casino-card.visible,
.slot-card.visible,
.video-card.visible,
.post-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.casino-card:hover,
.slot-card:hover,
.video-card:hover,
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-cyan);
  border-color: var(--accent-cyan);
}

.casino-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 340px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 20px;
}

.casino-card:hover::before {
  opacity: 1;
}

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

.casino-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  background: transparent;
  padding: 0;
  border: 2px solid #e0e0e0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 5px 15px rgba(0, 194, 255, 0.2);
}

.casino-card:hover .casino-logo {
  transform: rotate(5deg) scale(1.1);
}

.casino-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-stars {
  color: #ffd700;
}

.rating-value {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.casino-stats {
  flex: 1;
  margin-bottom: 20px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.casino-card:hover .stat-item {
  background: rgba(0, 194, 255, 0.08);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.casino-description {
  margin-bottom: 20px;
}

.description-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.casino-action {
  margin-top: auto;
  text-align: center;
}

.card-review-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
}
.card-review-link:hover {
  color: #0AA6D6;
  text-decoration: underline;
}

.claim-bonus-btn {
  width: 100%;
  background: #055A78;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.5px;
}

.claim-bonus-btn:hover {
  background: #0AA6D6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 166, 214, 0.3);
}

.slot-card {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  animation: cardEntrance 0.6s ease-out forwards;
}

.slot-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 194, 255, 0.1) 0%,
    rgba(255, 107, 107, 0.1) 50%,
    rgba(255, 215, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: -1;
}

.slot-card:hover::before {
  opacity: 1;
}

@keyframes cardEntrance {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.slot-image-container {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(0.9) contrast(1.1);
}

.slot-card:hover .slot-image {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.slot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 194, 255, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 16px 16px 0 0;
}

.slot-card:hover .slot-overlay {
  opacity: 1;
  backdrop-filter: blur(10px);
}

.play-demo-btn {
  background: linear-gradient(135deg, #00c2ff 0%, #0099cc 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 194, 255, 0.4);
}

.play-demo-btn::before {
  content: "";
  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;
}

.play-demo-btn:hover::before {
  left: 100%;
}

.play-demo-btn:hover {
  background: #0099cc;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 194, 255, 0.6);
}

.slot-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-gradient);
  color: #000;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: badgePulse 2s infinite;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.slot-content {
  padding: 20px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.slot-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  background: linear-gradient(135deg, #00c2ff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: nameGlow 3s ease-in-out infinite alternate;
}

@keyframes nameGlow {
  0% {
    filter: brightness(1);
  }
  100% {
    filter: brightness(1.2);
  }
}

.slot-provider {
  color: var(--accent-cyan);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.slot-provider::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
  border-radius: 2px;
  animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
  0%,
  100% {
    width: 30px;
  }
  50% {
    width: 50px;
  }
}

.slot-details {
  display: none;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slot-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.slot-detail-row:hover {
  background: rgba(0, 194, 255, 0.05);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  transform: translateX(5px);
}

.slot-detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.detail-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.8rem;
  background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slot-show-toggle {
  text-align: center;
  margin-bottom: 16px;
}

.show-toggle-btn {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.show-toggle-btn:hover {
  background: var(--accent-cyan);
  color: white;
  border-color: var(--accent-cyan);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 194, 255, 0.3);
}

.slot-action {
  margin-top: auto;
}

.go-to-casino-btn {
    width: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff8c00 100%);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.go-to-casino-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.go-to-casino-btn:hover::before {
    left: 100%;
}

.go-to-casino-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

.video-card {
  aspect-ratio: 1 / 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: cardEntrance 0.6s ease-out forwards;
}

.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 20px;
}

.video-card:hover::before {
  opacity: 1;
}

.video-thumbnail-container {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-thumbnail {
  transform: scale(1.1);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 194, 255, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-play-overlay {
  opacity: 1;
  backdrop-filter: blur(10px);
}

.video-play-button {
  width: 60px;
  height: 60px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-cyan);
  position: relative;
  overflow: hidden;
}

.video-play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(-50%, -50%);
}

.video-play-button:hover::before {
  width: 100px;
  height: 100px;
}

.video-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 194, 255, 0.6);
}

.video-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-info {
  padding: 20px;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.video-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #00c2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.video-card:hover .video-title {
  transform: translateX(5px);
}

.video-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card {
  padding: 24px;
  display: flex;
  gap: 16px;
  aspect-ratio: 3 / 2;
  position: relative;
}

.post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 20px;
}

.post-card:hover::before {
  opacity: 1;
}

.post-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 194, 255, 0.2);
}

.post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.3px;
}

.post-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.post-category {
  background: var(--accent-cyan);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
}

.post-time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.videos-container {
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-card {
    background: var(--card-gradient);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    animation: cardEntrance 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }
.video-card:nth-child(5) { animation-delay: 0.5s; }

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.video-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-cyan);
    border-color: var(--accent-cyan);
}

.video-card:hover::before {
    opacity: 1;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-thumbnail {
    transform: scale(1.1);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 194, 255, 0.2) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card:hover .video-play-overlay {
    opacity: 1;
    backdrop-filter: blur(10px);
}

.video-play-button {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: var(--shadow-cyan);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.video-play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translate(-50%, -50%);
}

.video-play-button:hover::before {
    width: 100px;
    height: 100px;
}

.video-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.6);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-info {
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.video-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    background: linear-gradient(135deg, #ffffff, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.video-card:hover .video-title {
    transform: translateX(5px);
}

.video-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(10px);
    }
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-content {
    background: var(--card-gradient);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 2001;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.video-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-close:hover {
    background: var(--accent-dark-red);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.video-modal-body {
    display: flex;
    flex-direction: column;
}

.video-modal-thumbnail {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.video-modal-info {
    padding: 2.5rem;
}

.video-modal-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff, #00c2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-modal-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.watch-youtube-btn {
    background: var(--secondary-gradient);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-red);
}

.watch-youtube-btn::before {
    content: '';
    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;
}

.watch-youtube-btn:hover::before {
    left: 100%;
}

.watch-youtube-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5);
}

.loading {
  text-align: center;
  padding: 40px;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-message {
  text-align: center;
  padding: 40px;
  color: var(--accent-dark-red);
  background: rgba(139, 0, 0, 0.1);
  border: 1px solid var(--accent-dark-red);
  border-radius: 12px;
  margin: 20px 0;
}

.hidden {
  display: none !important;
}

.show-more-container {
  text-align: center;
  margin-top: 32px;
}

.show-more-btn,
.show-less-btn,
.see-all-btn {
  background: var(--accent-cyan);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-cyan);
}

.show-more-btn::before,
.show-less-btn::before,
.see-all-btn::before {
  content: "";
  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;
}

.show-more-btn:hover::before,
.show-less-btn:hover::before,
.see-all-btn:hover::before {
  left: 100%;
}

.show-more-btn:hover,
.show-less-btn:hover,
.see-all-btn:hover {
  background: #0099cc;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 194, 255, 0.6);
}

.show-less-btn {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.336);
  margin: 0 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.show-less-btn:hover {
  background: linear-gradient(145deg, rgba(0, 194, 255, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.see-all-btn {
  background: linear-gradient(135deg, #00c2ff 0%, #0099cc 100%);
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 194, 255, 0.4);
}

.see-all-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 194, 255, 0.6);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slots-container,
.videos-container {
  display: none;
  animation: fadeInUp 0.6s ease-out;
}

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

.casino-section {
  transition: var(--transition-smooth);
}

.casino-section.hidden {
  display: none;
}

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

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .casino-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .slots-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .videos-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .header-content {
    gap: 16px;
  }

  .logo-text {
    display: none;
  }

  .hero {
    padding: 40px 0;
  }

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

  .hero-banner, .hero-text {
    min-width: 0;
  }

  .hero-banner-img {
    height: 300px;
    max-width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .casino-grid,
  .slots-grid,
  .videos-grid,
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .casino-card,
  .slot-card,
  .video-card,
  .post-card {
    aspect-ratio: auto;
  }

  .casino-card {
    padding: 20px;
    aspect-ratio: auto;
    min-height: 400px;
  }

  .slot-card {
    aspect-ratio: 4 / 5;
  }

  .video-card {
    aspect-ratio: 1 / 1;
  }

  .post-card {
    aspect-ratio: auto;
    min-height: 150px;
  }

  .search-container {
    margin: 0 16px 32px;
  }

  .category-tabs {
    margin: 0 16px 32px;
    justify-content: stretch;
  }

  .tab-btn {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .video-modal-content {
    margin: 20px;
    max-width: calc(100% - 40px);
  }

  .video-modal-body {
    padding: 20px;
  }

  .video-modal-thumbnail {
    height: 150px;
  }
}

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

  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .casino-card {
    padding: 16px;
    min-height: 350px;
  }

  .slot-content,
  .video-info {
    padding: 16px;
  }

  .post-card {
    padding: 16px;
  }

  .search-container {
    margin: 0 12px 24px;
  }

  .category-tabs {
    margin: 0 12px 24px;
    flex-direction: column;
    gap: 8px;
  }

  .tab-btn {
    padding: 12px;
  }

  .mobile-nav-content {
    width: 100%;
    padding: 80px 20px 32px;
  }

  .hero-banner-img {
    height: 250px;
  }

  .video-modal {
    padding: 10px;
  }

  .video-modal-content {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }
}

@media (max-width: 360px) {
  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon i {
    font-size: 16px;
  }

  .mobile-menu-btn {
    padding: 6px;
  }

  .hamburger {
    width: 20px;
    height: 2px;
  }

  .casino-card {
    min-height: 320px;
  }

  .hero-banner-img {
    height: 200px;
  }
}

.footer {
  background: var(--dark-gradient);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-cyan);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 8px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
}

.payment-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.payment-item:hover {
  background: var(--accent-cyan);
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.gambling-warning {
  background: rgba(139, 0, 0, 0.1);
  border: 1px solid var(--accent-dark-red);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.warning-icon {
  color: var(--accent-dark-red);
  font-size: 1.5rem;
  margin-top: 4px;
}

.warning-content h5 {
  color: var(--accent-dark-red);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.warning-content p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.help-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.help-links a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.help-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.disclaimer {
  margin-top: 8px;
  font-size: 0.8rem;
}

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
}

.spinner-container {
  position: relative;
  margin-bottom: 32px;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 4px;
}

.spinner-dots span {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite both;
}

.spinner-dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.spinner-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dotPulse {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.loading-text {
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 500;
}

.error-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-secondary);
}

.error-icon {
  font-size: 4rem;
  color: var(--accent-dark-red);
  margin-bottom: 24px;
}

.error-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 700;
}

.error-message {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.retry-btn {
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}

.hidden {
  display: none !important;
}

.casino-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.casino-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: var(--card-gradient);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-dark);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--secondary-gradient);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-red);
}

.modal-body {
  padding: 40px;
}

.modal-header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.modal-casino-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-cyan);
}

.modal-casino-info h2 {
  color: var(--accent-cyan);
  margin-bottom: 12px;
  font-size: 2rem;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.rating-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.modal-description {
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-description p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

.modal-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.modal-pros,
.modal-cons {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-pros h3 {
  color: #4ade80;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-cons h3 {
  color: #f87171;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-pros ul,
.modal-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-pros li {
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.modal-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
  font-size: 1.1rem;
}

.modal-cons li {
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.modal-cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: bold;
  font-size: 1.1rem;
}

.modal-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.modal-section h3 {
  color: var(--accent-cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section.full-width {
  grid-column: 1 / -1;
}

.bonus-package,
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-item,
.info-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent-cyan);
}

.payment-methods-detailed,
.providers-detailed,
.features-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-method-detailed,
.provider-detailed {
  background: var(--accent-cyan);
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-detailed {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-detailed i {
  color: #4ade80;
}

.modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.modal-claim-btn {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  border-radius: 16px;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-secondary);
}

.empty-icon {
  font-size: 4rem;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.empty-state h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.empty-action-btn {
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  margin-top: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.empty-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}

@media (max-width: 1200px) {
  .casino-main {
    grid-template-columns: 140px 1fr;
    gap: 24px;
  }

  .casino-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    margin-top: 24px;
    min-width: auto;
    max-width: 100%;
  }

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

  .pros-cons-section {
    grid-template-columns: 1fr;
  }

  .modal-pros-cons {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .filters-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .filter-group {
    justify-content: center;
  }

  .filter-actions {
    justify-content: center;
  }

  .results-info {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .casino-card {
    padding: 24px;
  }

  .casino-main {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .casino-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .casino-actions {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .casino-hover-details {
    position: static;
    opacity: 1;
    transform: none;
    border-radius: 16px;
    margin-top: 16px;
  }

  .hover-content {
    grid-template-columns: 1fr;
  }

  .spotlight-content {
    padding: 32px 24px;
  }

  .spotlight-header {
    flex-direction: column;
    text-align: center;
  }

  .spotlight-title {
    font-size: 1.8rem;
  }

  .spotlight-features {
    grid-template-columns: 1fr;
  }

  .faq-header {
    margin-bottom: 48px;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-answer p {
    padding: 0 24px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gambling-warning {
    flex-direction: column;
    text-align: center;
  }

  .warning-icon {
    margin-bottom: 16px;
  }

  .footer-legal {
    font-size: 0.85rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    text-align: center;
  }

  .payment-methods {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  }

  .payment-item {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .casino-modal {
    padding: 10px;
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }

  .modal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modal-casino-logo {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .modal-casino-info h2 {
    font-size: 1.5rem;
  }

  .modal-rating {
    flex-direction: column;
    align-items: center;
  }

  .rating-score {
    font-size: 1.2rem;
  }
}

.footer {
  background: var(--dark-gradient);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-cyan);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 8px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 8px;
}

.payment-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.payment-item:hover {
  background: var(--accent-cyan);
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.gambling-warning {
  background: rgba(139, 0, 0, 0.1);
  border: 1px solid var(--accent-dark-red);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.warning-icon {
  color: var(--accent-dark-red);
  font-size: 1.5rem;
  margin-top: 4px;
}

.warning-content h5 {
  color: var(--accent-dark-red);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.warning-content p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.help-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.help-links a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.help-links a:hover {
  text-decoration: underline;
}

.footer-legal {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.disclaimer {
  margin-top: 8px;
  font-size: 0.8rem;
}

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
}

.spinner-container {
  position: relative;
  margin-bottom: 32px;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 4px;
}

.spinner-dots span {
  width: 8px;
  height: 8px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite both;
}

.spinner-dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.spinner-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dotPulse {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

.loading-text {
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 500;
}

.error-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-secondary);
}

.error-icon {
  font-size: 4rem;
  color: var(--accent-dark-red);
  margin-bottom: 24px;
}

.error-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 700;
}

.error-message {
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.retry-btn {
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.retry-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}

.hidden {
  display: none !important;
}

.casino-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.casino-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: var(--card-gradient);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-dark);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--secondary-gradient);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-red);
}

.modal-body {
  padding: 40px;
}

.modal-header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.modal-casino-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-cyan);
}

.modal-casino-info h2 {
  color: var(--accent-cyan);
  margin-bottom: 12px;
  font-size: 2rem;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.rating-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.modal-description {
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-description p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.1rem;
}

.modal-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.modal-pros,
.modal-cons {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-pros h3 {
  color: #4ade80;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-cons h3 {
  color: #f87171;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-pros ul,
.modal-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-pros li {
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.modal-pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
  font-size: 1.1rem;
}

.modal-cons li {
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
  line-height: 1.5;
}

.modal-cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: bold;
  font-size: 1.1rem;
}

.modal-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.modal-section h3 {
  color: var(--accent-cyan);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section.full-width {
  grid-column: 1 / -1;
}

.bonus-package,
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-item,
.info-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent-cyan);
}

.payment-methods-detailed,
.providers-detailed,
.features-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-method-detailed,
.provider-detailed {
  background: var(--accent-cyan);
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-detailed {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-detailed i {
  color: #4ade80;
}

.modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.modal-claim-btn {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  border-radius: 16px;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 24px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-secondary);
}

.empty-icon {
  font-size: 4rem;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}

.empty-state h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.empty-action-btn {
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  margin-top: 24px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.empty-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}

@media (max-width: 1200px) {
  .casino-main {
    grid-template-columns: 140px 1fr;
    gap: 24px;
  }

  .casino-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
    margin-top: 24px;
    min-width: auto;
    max-width: 100%;
  }

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

  .pros-cons-section {
    grid-template-columns: 1fr;
  }

  .modal-pros-cons {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .filters-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .filter-group {
    justify-content: center;
  }

  .filter-actions {
    justify-content: center;
  }

  .results-info {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .casino-card {
    padding: 24px;
  }

  .casino-main {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .casino-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .casino-actions {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .casino-hover-details {
    position: static;
    opacity: 1;
    transform: none;
    border-radius: 16px;
    margin-top: 16px;
  }

  .hover-content {
    grid-template-columns: 1fr;
  }

  .spotlight-content {
    padding: 32px 24px;
  }

  .spotlight-header {
    flex-direction: column;
    text-align: center;
  }

  .spotlight-title {
    font-size: 1.8rem;
  }

  .spotlight-features {
    grid-template-columns: 1fr;
  }

  .faq-header {
    margin-bottom: 48px;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-answer p {
    padding: 0 24px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gambling-warning {
    flex-direction: column;
    text-align: center;
  }

  .warning-icon {
    margin-bottom: 16px;
  }

  .footer-legal {
    font-size: 0.85rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links a {
    text-align: left;
  }

  .payment-methods {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  }

  .payment-item {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .casino-modal {
    padding: 10px;
  }

  .modal-content {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }

  .modal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modal-casino-logo {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .modal-casino-info h2 {
    font-size: 1.5rem;
  }

  .modal-rating {
    flex-direction: column;
    align-items: center;
  }

  .rating-score {
    font-size: 1.2rem;
  }

  .gaming-logos {
    display: flex;
    gap: 12px;
    margin-top: 16px;
  }
  
  .gaming-logo {
    background: linear-gradient(90deg, #00bcd4, #2196f3);
    color: white;
    padding: 8px 16px;  
    border-radius: 8px; 
    font-weight: 600; 
    font-size: 0.9rem;
  }

  .footer-bottom,
  .footer-bottom p,
  .footer-legal,
  .disclaimer {
    color: var(--text-muted) !important;
  }

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

  .footer-bottom {
    text-align: center;
    margin-top: 32px;
  }

  .footer-bottom p {
    margin: 0.3em 0;
  }
}

/* Style ONLY text links inside content */
a.content-link,
a.content-link:visited {
  color: var(--accent-cyan) !important;
  text-decoration: none; /* remove default underline */
  position: relative;
  transition: color 0.3s ease;
}

/* underline effect on hover (works for both normal + visited) */
a.content-link::after,
a.content-link:visited::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* just below text */
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
}

a.content-link:hover::after,
a.content-link:visited:hover::after {
  width: 100%;
}

a.content-link:hover,
a.content-link:visited:hover {
  color: #00e0ff !important; /* slightly brighter on hover */
}

/* =========================
   OVERRIDE home page old mobile menu styles
   Uses the global light mobile menu look
   (mobile only)
========================= */
@media (max-width: 768px) {
  .mobile-nav-overlay.active {
    background: rgba(17,24,39,0.25) !important;
    backdrop-filter: blur(8px) !important;
  }

  .mobile-nav-content {
    width: 100% !important;
    max-width: 100% !important;
    background: #F5F7FB !important;
    border-right: 0 !important;
  }

  .mobile-nav-link {
    color: #111827 !important;
  }

  .mobile-nav-link:hover {
    background: rgba(10,166,214,0.12) !important;
    color: #055A78 !important;
    transform: none !important;
  }

  .mobile-actions .login-btn::before,
  .mobile-actions .signup-btn::before {
    display: none !important;
  }

  .mobile-actions a.mobile-btn {
    text-decoration: none !important;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  }

  .mobile-actions .login-btn {
    background: #ffffff !important;
    color: #111827 !important;
    border: 1px solid rgba(17,24,39,0.12) !important;
  }

  .mobile-actions .signup-btn {
    background: linear-gradient(135deg,#0AA6D6,#056F95) !important;
    color: #fff !important;
    border: 0 !important;
  }
}

@media (max-width: 768px) {
  /* Fix mobile menu close button on home page */
  .mobile-nav-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    left: auto !important;

    width: 44px !important;
    height: 44px !important;

    display: grid !important;
    place-items: center !important;

    border: 0 !important;
    border-radius: 12px !important;

    background: rgba(17,24,39,0.08) !important;
    color: #111827 !important;
  }

  .mobile-nav-close::before,
  .mobile-nav-close::after {
    content: none !important;
  }
}

/* MOBILE: don’t hide cards until IntersectionObserver fires */
@media (max-width: 768px) {
  .casino-card,
  .slot-card,
  .video-card,
  .post-card,
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn i {
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

/* Global editorial links */
a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* Inline content links only */
p a,
.licenses-subtitle a,
.pr-info-text a,
.brs-sub a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Hover state */
p a:hover,
.licenses-subtitle a:hover,
.pr-info-text a:hover,
.brs-sub a:hover {
  color: var(--accent-strong, var(--accent));
  text-decoration-thickness: 2px;
}

.hero-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* =========================
   Hot New Release (Homepage) FINAL
   ========================= */
.hot-release.hidden { display: none; }

.hot-release{
  margin: 0 0 22px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.90);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.hot-release-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr; /* bigger image side */
  align-items: stretch;
}

/* LEFT (image) */
.hot-release-left{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.hot-release-left img{
  width: 100%;
  max-width: 640px;     /* makes image bigger */
  max-height: 300px;    /* keeps it clean */
  height: 260px;
  object-fit: contain;
  display: block;
}

/* RIGHT (text) */
.hot-release-right{
  padding: 22px 22px 18px 12px;
  display: flex;
  flex-direction: column;
}

/* Flamey badge */
.hot-release-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 900;
  text-transform: uppercase;

  color: #fff;
  background: linear-gradient(90deg, #ff2d2d, #ff7a00, #ffc400);
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.25);
}

.hot-release-badge::before{
  content: "🔥";
  font-size: 14px;
  line-height: 1;
}

.hot-release-title{
  margin: 12px 0 10px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
}

.hot-release-provider{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 800;
  opacity: 0.95;
  font-size: 16px;
}

.hot-release-provider-logo{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hot-release-desc{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  opacity: 0.92;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTA bottom-right */
.hot-release-actions{
  margin-top: auto;                /* pushes CTA to bottom */
  display: flex;
  justify-content: flex-end;       /* bottom-right */
}

.hot-release-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;

  background: #0aa6d6;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 22px rgba(10,166,214,0.22);
  transition: transform .12s ease, box-shadow .12s ease;
}

.hot-release-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(10,166,214,0.28);
}

/* Mobile */
@media (max-width: 900px){
  .hot-release-grid{ grid-template-columns: 1fr; }
  .hot-release-left{ padding: 16px; }
  .hot-release-left img{ max-height: 260px; }
  .hot-release-right{ padding: 18px; }
  .hot-release-title{ font-size: 26px; }
  .hot-release-actions{ justify-content: flex-start; }
}

.hot-release {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Pull Hot New Release closer to content above */
.hot-release {
  margin-top: 0px !important;
  margin-bottom: 18px !important;
}

/* =========================
   Hot New Release (Final)
   ========================= */

.hot-release.hidden { display: none; }

/* Pull the whole Featured Slots section upwards */
section.section.fade-in:has(#hot-release) {
  padding-top: 10px !important; /* reduce section top padding */
}

/* If :has() isn't supported, the margin below still helps */
.hot-release{
  margin: -26px auto 18px !important; /* negative top margin = closer to above */
  max-width: 1180px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;

  background:
    radial-gradient(900px 400px at 20% 30%, rgba(0,102,255,0.12), rgba(255,255,255,0) 55%),
    radial-gradient(800px 350px at 90% 70%, rgba(0,160,255,0.10), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.88));
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 22px 55px rgba(0,0,0,0.10);
}

/* subtle texture dots */
.hot-release::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.05;
  pointer-events: none;
}

/* top accent line */
.hot-release::after{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0,102,255,0.0), rgba(0,102,255,0.55), rgba(0,160,255,0.0));
  opacity: 0.9;
  pointer-events: none;
}

.hot-release-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* LEFT: fixed image frame */
.hot-release-left{
  padding: 22px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hot-release-left img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  box-shadow: none;
}

/* RIGHT */
.hot-release-right{
  padding: 22px 30px 20px 12px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.hot-release-right::before{
  content: "Spotlight";
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 10px;
}

.hot-release-badge{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, rgba(255,90,0,0.95), rgba(255,190,0,0.95));
  box-shadow: 0 10px 24px rgba(255,120,0,0.20);
}

.hot-release-title{
  margin: 14px 0 12px;
  font-size: 36px;
  line-height: 1.10;
  font-weight: 900;
}

.hot-release-provider{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
  opacity: 0.92;
}

.hot-release-provider-logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 6px;
}

.hot-release-desc{
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.90;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hot-release-actions{
  display:flex;
  justify-content: flex-start;
  margin-top: 6px;
}

.hot-release-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 34px rgba(0,102,255,0.22);
}

/* mobile */
@media (max-width: 900px){
  .hot-release{ margin: -18px 0 18px !important; }
  .hot-release-grid{ grid-template-columns: 1fr; }
  .hot-release-left{ padding: 18px; }
  .hot-release-left img{ height: 210px; border-radius: 16px; }
  .hot-release-right{ padding: 18px; }
  .hot-release-title{ font-size: 26px; }
  .hot-release-desc{ font-size: 15px; }
}

/* Reduce space coming from the section above */
.section + .section { margin-top: 0 !important; }

/* tighten spacing below Hot Release */
.hot-release{
  margin-bottom: 10px !important;
}

/* pull Featured Slots header closer */
.hot-release + .section-header,
.hot-release + .section-header h2{
  margin-top: 8px !important;
}

@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.hot-release-badge {
  animation: badgePulse 4s ease-in-out infinite;
}

/* Hero banner clean overrides (replaces inline styles) */
.hero-banner--clean {
  height: 300px;
  border: none;
  box-shadow: none;
  background: transparent;
}
.hero-banner-img--clean {
  height: 100%;
  border: none;
  padding: 0;
}

/* H1 uppercase via CSS */
.hero-title {
  text-transform: uppercase;
}

/* ── Homepage: Best categories grid ──────────────────── */
.hp-best-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hp-best-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--card-gradient);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.hp-best-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-cyan);
}
.hp-best-icon {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}
.hp-best-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}
@media (max-width: 860px) {
  .hp-best-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hp-best-card { padding: 12px 14px; }
  .hp-best-name { font-size: 0.82rem; }
}

/* ── Homepage: Providers grid ─────────────────────────── */
.hp-providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.hp-prov-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: var(--card-gradient);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.hp-prov-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-cyan);
}

.hp-prov-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  padding: 4px;
}

.hp-prov-name {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
}
.hp-prov-meta {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 2px;
}
.hp-prov-meta i { margin-right: 4px; font-size: 0.76rem; }
.hp-prov-score {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(0,194,255,0.12);
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 0.78rem;
}

/* ── Homepage: Licences grid ──────────────────────────── */
.hp-lic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.hp-lic-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: var(--card-gradient);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.hp-lic-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-cyan);
}

.hp-lic-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  padding: 3px;
}

.hp-lic-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-primary);
}
.hp-lic-meta {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.hp-lic-risk {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hp-lic-risk--low    { background: rgba(34,197,94,0.14); color: #16a34a; }
.hp-lic-risk--medium { background: rgba(250,204,21,0.16); color: #ca8a04; }
.hp-lic-risk--high   { background: rgba(239,68,68,0.14); color: #dc2626; }

/* ── Homepage: Blog posts grid ────────────────────────── */
.hp-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.hp-blog-card {
  border-radius: 18px;
  background: var(--card-gradient);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.hp-blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-cyan);
}

.hp-blog-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.hp-blog-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hp-blog-cat {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0,194,255,0.12);
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  width: fit-content;
}

.hp-blog-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 10px;
}

.hp-blog-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: auto;
}

/* Mobile adjustments for new sections */
@media (max-width: 640px) {
  .hp-providers-grid { grid-template-columns: 1fr; }
  .hp-lic-grid       { grid-template-columns: 1fr; }
  .hp-blog-grid      { grid-template-columns: 1fr; }
}
