: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;
}

body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

.header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: var(--shadow-dark);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

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

.logo-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-cyan);
  overflow: hidden;
}

.logo-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  animation: logoShine 3s ease-in-out infinite;
}

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

.logo-icon i {
  font-size: 20px;
  color: white;
  position: relative;
  z-index: 2;
}

.logo-icon .fa-water {
  position: absolute;
  opacity: 0.7;
  animation: float 2s ease-in-out infinite;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent-cyan);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 2px;
}

.nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px; /* match the header icon size */
  padding: 0 20px; /* remove vertical padding */
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 12px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  /* background: cyan; */
  transition: left 0.3s ease;
  z-index: 0;
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  color: rgb(255, 255, 255);
  transform: translateY(-2px);
}

.nav-link i,
.nav-link span {
  position: relative;
  z-index: 1;
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.login-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  position: relative;
}

.login-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.login-btn:hover::before {
  left: 0;
}

.login-btn:hover {
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-cyan);
  border-color: var(--accent-cyan);
}

.login-btn i,
.login-btn span {
  position: relative;
  z-index: 1;
}

.signup-btn {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow-cyan);
  position: relative;
}

.signup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0099cc 0%, #006699 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.signup-btn:hover::before {
  left: 0;
}

.signup-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 194, 255, 0.5);
}

.signup-btn i,
.signup-btn span {
  position: relative;
  z-index: 1;
}

/* Enhanced User Menu Styles */
.user-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-btn {
  background: var(--profile-gradient);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-purple);
  position: relative;
  overflow: hidden;
  transition: var(--transition-bounce);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
}

.profile-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.profile-btn:hover::before {
  left: 0;
}

.profile-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.profile-btn i,
.profile-btn span {
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
}

.profile-btn .fa-user-circle {
  font-size: 18px;
  margin-right: 8px;
  animation: profilePulse 2s ease-in-out infinite;
}

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

.profile-btn .fa-chevron-down {
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.profile-btn:hover .fa-chevron-down {
  transform: rotate(180deg);
}

/* Enhanced Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--card-gradient);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow: hidden;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: var(--card-gradient);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  z-index: -1;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--profile-gradient);
  transition: left 0.3s ease;
  z-index: 0;
}

.dropdown-item:hover::before {
  left: 0;
}

.dropdown-item:hover {
  color: white;
  transform: translateX(5px);
}

.dropdown-item i,
.dropdown-item span {
  position: relative;
  z-index: 1;
}

.dropdown-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Special styling for logout item */
.dropdown-item:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
}

.dropdown-item:last-child::before {
  background: var(--logout-gradient);
}

.dropdown-item:last-child:hover {
  color: white;
  background: transparent;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition-fast);
  z-index: 1001;
  position: relative;
}

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

.hamburger {
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-btn.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  pointer-events: none;
}

.mobile-nav.active {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: relative;
  width: 280px;
  height: 100%;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: 100px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-right: 1px solid var(--border-color);
  overflow-y: auto;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  background: var(--primary-gradient);
  color: white;
  transform: translateX(8px);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  text-align: center;
  gap: 8px;
}

.mobile-btn.login-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.mobile-btn.signup-btn {
  background: var(--primary-gradient);
  color: white;
}

.mobile-btn.profile-btn {
  background: var(--profile-gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.mobile-btn.profile-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transition: left 0.3s ease;
  z-index: 0;
}

.mobile-btn.profile-btn:hover::before {
  left: 0;
}

.mobile-btn.profile-btn i,
.mobile-btn.profile-btn span {
  position: relative;
  z-index: 1;
}

.mobile-btn.logout-btn {
  background: var(--logout-gradient);
  color: white;
  position: relative;
  overflow: hidden;
}

.mobile-btn.logout-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ee5a52 0%, #ff6b6b 100%);
  transition: left 0.3s ease;
  z-index: 0;
}

.mobile-btn.logout-btn:hover::before {
  left: 0;
}

.mobile-btn.logout-btn i,
.mobile-btn.logout-btn span {
  position: relative;
  z-index: 1;
}

.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;
}

.claim-bonus-btn {
  width: 100%;
  background: var(--gold-gradient);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

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

.claim-bonus-btn:hover::before {
  width: 300px;
  height: 300px;
}

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

.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 {
    gap: 30px;
  }

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

  .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;
  }
}
