/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
  backdrop-filter: blur(15px);
  border-bottom: 3px solid #ffd700;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow-x: hidden;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo .logo-img {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.logo h1 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ffffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo h1 a {
  color: inherit;
  text-decoration: none;
}


.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  position: relative;
  animation: navSlideIn 0.8s ease-out;
}

@keyframes navSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-nav li {
  position: relative;
  animation: navItemFadeIn 0.6s ease-out;
  animation-fill-mode: both;
}

.main-nav li:nth-child(1) {
  animation-delay: 0.2s;
}

.main-nav li:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes navItemFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Animated background gradient */
.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 215, 0, 0.3) 25%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 215, 0, 0.3) 75%, 
    transparent 100%
  );
  transition: left 0.6s ease;
  z-index: 1;
}

/* Pulsing ring effect */
.main-nav a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: 0;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover::after {
  width: 120%;
  height: 120%;
}

.main-nav a:hover {
  color: #ffd700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 6px 20px rgba(255, 215, 0, 0.4),
    0 0 15px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.main-nav a.active {
  color: #ffd700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
  box-shadow: 
    0 4px 15px rgba(255, 215, 0, 0.3),
    0 0 15px rgba(255, 215, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.4);
  transform: translateY(-1px);
}

/* Floating particles effect on hover - removed to prevent overflow */

/* Text glow effect */
.main-nav a span {
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: text-shadow 0.3s ease;
}

.main-nav a:hover span {
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Magnetic effect - removed to prevent overflow */

/* Ripple effect on click */
.main-nav a:active {
  animation: ripple 0.6s ease-out;
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Wave effect on navigation container */
.main-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 215, 0, 0.1) 50%, 
    transparent 70%
  );
  animation: wave 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

@keyframes wave {
  0%, 100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

/* Glowing border effect */
.main-nav a {
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(255, 215, 0, 0.5), 
    rgba(255, 255, 255, 0.3), 
    rgba(255, 215, 0, 0.5)
  );
  border-radius: 52px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.main-nav a:hover::before {
  opacity: 1;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Magnetic hover effect - limited to prevent overflow */
.main-nav li {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav li:hover {
  transform: scale(1.02) translateY(-1px);
}

/* Text animation on load */
.main-nav a span {
  display: inline-block;
  transition: all 0.3s ease;
}

.main-nav a:hover span {
  transform: translateY(-1px);
}

/* Active state enhancement */
.main-nav a.active::before {
  opacity: 1;
  animation: activeGlow 3s ease-in-out infinite;
}

@keyframes activeGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

.header-date {
  text-align: center;
  padding: 0.5rem 0;
  color: #cccccc;
  font-size: 0.9rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  margin: 2rem 0;
  border-radius: 15px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  font-size: 1.2rem;
}

.age-disclaimer {
  color: #ffd700;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Casino Vitrina */
.casino-vitrina {
  margin: 3rem 0;
}

.vitrina-header {
  text-align: center;
  margin-bottom: 2rem;
}

.vitrina-header h2 {
  font-size: 2.5rem;
  color: #ffd700;
  font-weight: bold;
}

.casino-table {
  border-radius: 20px;
  overflow: hidden;
}

.table-header {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  padding: 2.5rem 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 20px 20px 0 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.table-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  animation: shimmer 3s infinite;
}

.table-header div {
  color: #1a1a2e;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  width: 100%;
}

.table-header div:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.casino-row {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-bottom: none;
  position: relative;
  transition: all 0.4s ease;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border-radius: 20px;
  margin-bottom: 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  gap: 1.5rem;
  min-height: 400px;
}

.casino-row:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}

.casino-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.category-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  z-index: 10;
}

.casino-main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.casino-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
}

.casino-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-shrink: 0;
  width: 100%;
}

.casino-logo {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.casino-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.casino-logo:hover::before {
  left: 100%;
}

.casino-logo:hover {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.logo-img {
  max-width: 75px;
  max-height: 75px;
  object-fit: contain;
  z-index: 2;
  position: relative;
}

.casino-details h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffd700;
  display: block;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  line-height: 1.3;
}

.terms-text {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem;
  border-radius: 8px;
  border-left: 3px solid rgba(255, 215, 0, 0.3);
}

.user-rating {
  text-align: center;
  padding: 1.5rem;
      border-radius: 15px;
  min-width: 140px;
}

.stars {
  color: #ffd700;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.2));
}

.review-count {
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  display: inline-block;
}

.our-score {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-width: 120px;
}

.score {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a2e;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.score::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;
}

.score:hover::before {
  left: 100%;
}

.casino-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  width: 100%;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a2e;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffed4e, #ffd700);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-bonus {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-bonus:hover {
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.visit-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.visit-link:hover {
  color: #ffed4e;
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Category Colors */
.category-best-bonus {
  border-left: 6px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
}

.category-best-bonus:hover {
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.category-players-choice {
  border-left: 6px solid #4caf50;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.1);
}

.category-players-choice:hover {
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.15);
}

.category-trending {
  border-left: 6px solid #ff5722;
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.1);
}

.category-trending:hover {
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.15);
}

.category-fast-payouts {
  border-left: 6px solid #2196f3;
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.1);
}

.category-fast-payouts:hover {
  box-shadow: 0 15px 40px rgba(33, 150, 243, 0.15);
}

.category-top-rated {
  border-left: 6px solid #9c27b0;
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.1);
}

.category-top-rated:hover {
  box-shadow: 0 15px 40px rgba(156, 39, 176, 0.15);
}

/* Info Section */
.info-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 15px;
  margin: 3rem 0;
}

.info-section h2 {
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  text-align: center;
}

.review-criteria h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.review-criteria ul {
  list-style: none;
  padding-left: 0;
}

.review-criteria li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: #e0e0e0;
}

.review-criteria li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
  font-size: 1.2rem;
}

.conclusion {
  font-style: italic;
  color: #cccccc;
  text-align: center;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  border-top: 3px solid #ffd700;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  animation: shimmer 3s infinite;
}

.footer-content {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-logo {
  text-align: center;
}

.footer-logo h3 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ffffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.link-group {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.link-group h4 {
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.5rem;
}

.link-group h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, transparent);
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1rem;
}

.link-group li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #ffd700;
  font-size: 0.8rem;
  opacity: 0.7;
}

.link-group a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 0.3rem 0;
  border-radius: 5px;
}

.link-group a:hover {
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  padding-left: 0.5rem;
  transform: translateX(5px);
}

.responsible-gambling {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.responsible-gambling::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
  animation: shimmer 4s infinite;
}

.gambling-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.gambling-logos img {
  height: 100px;
  width: 140px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.4s ease;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gambling-logos img:hover {
  opacity: 1;
  transform: scale(1.08) translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.age-18 {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a2e;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.3rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.age-18:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.footer-disclaimer {
  text-align: center;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.copyright {
  margin-top: 1.5rem;
  color: #b0b0b0;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  margin: 15% auto;
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  border: 2px solid #4a4a6e;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.modal-content p {
  color: #e0e0e0;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.age-disclaimer {
  color: #cccccc;
  font-size: 0.9rem;
  font-style: italic;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-top: 2px solid #4a4a6e;
  z-index: 1000;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  display: block;
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  color: #e0e0e0;
  flex: 1;
  margin: 0;
}

.cookie-content a {
  color: #ffd700;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .casino-table {
    overflow-x: auto;
  }

  .table-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .table-header div {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .casino-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .casino-main-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .casino-info {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .casino-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .casino-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }

  .logo-img {
    max-width: 60px;
    max-height: 60px;
  }

  .casino-actions {
    margin-top: 0;
  }

  .action-buttons {
    gap: 0.8rem;
  }

  .btn-bonus {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .visit-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .link-group {
    padding: 1.5rem;
  }

  .gambling-logos {
    gap: 1.5rem;
  }

  .gambling-logos img {
    height: 80px;
    width: 120px;
  }

  .main-nav ul {
    gap: 0.3rem;
  }

  .main-nav a {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .main-nav li:hover::before,
  .main-nav li:hover::after {
    display: none;
  }
  
  .main-nav a:hover {
    transform: translateY(-1px) scale(1.01);
  }

  .logo h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .logo .logo-img {
    height: 45px;
  }

  .gambling-logos {
    flex-direction: column;
    align-items: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .modal-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .main-nav ul {
    gap: 0.2rem;
    justify-content: center;
  }

  .main-nav a {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .main-nav li:hover::before,
  .main-nav li:hover::after {
    display: none;
  }

  .main-nav a:hover {
    transform: translateY(-1px) scale(1.01);
  }

  .logo h1 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .logo .logo-img {
    height: 40px;
  }

  .hero {
    padding: 2rem 0;
  }

  .info-section {
    padding: 2rem 1rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .link-group {
    padding: 1rem;
  }

  .link-group h4 {
    font-size: 1.1rem;
  }

  .gambling-logos {
    gap: 1rem;
  }

  .gambling-logos img {
    height: 70px;
    width: 100px;
  }

  .footer-disclaimer {
    padding: 1.5rem;
    font-size: 0.9rem;
  }

  .age-18 {
    padding: 0.6rem 1.5rem;
    font-size: 1.1rem;
  }

  .modal-content {
    margin: 10% auto;
    padding: 1.5rem;
  }
}

/* Main element overflow fix */
main {
  overflow-x: hidden;
}
