/* Modern Poker Website Design - Enhanced & Responsive */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(251, 191, 36, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-height: 1.2;
}

/* Enhanced Responsible Gaming Banner */
.responsible-banner {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #1e293b;
  text-align: center;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.responsible-banner p {
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.7) 100%);
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  letter-spacing: -0.02em;
  position: relative;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 2px;
  opacity: 0.7;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Enhanced Poker Sites Section with New Design */
.poker-sites {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.poker-sites .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  padding-block: 48px;
}

@media (min-width: 1200px) {
  .poker-sites .container {
    padding-block: 96px 48px;
  }
}

.poker-site {
  background: linear-gradient(145deg, 
    rgba(30, 41, 59, 0.95) 0%, 
    rgba(15, 23, 42, 0.95) 50%,
    rgba(51, 65, 85, 0.95) 100%);
  border-radius: 28px;
  padding: 40px;
  border: 2px solid rgba(99, 102, 241, 0.2);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(99, 102, 241, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 40px rgba(99, 102, 241, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.poker-site::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.15), transparent);
  transition: left 0.8s ease;
}

.poker-site:hover::before {
  left: 100%;
}

.poker-site:hover {
  transform: translateY(-12px) scale(1.03) rotateX(2deg);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 2px rgba(99, 102, 241, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 60px rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
}

.site-header {
  text-align: center;
  margin-bottom: 35px;
  padding: 30px;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.1) 0%, 
    rgba(168, 85, 247, 0.1) 100%);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(99, 102, 241, 0.05) 50%, 
    transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.site-header:hover::before {
  transform: translateX(100%);
}

.site-header:hover {
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.15) 0%, 
    rgba(168, 85, 247, 0.15) 100%);
  transform: scale(1.03);
  border-color: rgba(99, 102, 241, 0.3);
}

.site-header img {
  height: 45px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.site-header:hover img {
  transform: scale(1.1) rotateY(5deg);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.site-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f8fafc;
  text-align: center;
  line-height: 1.4;
  background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.terms {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 30px;
  text-align: center;
  font-style: italic;
  line-height: 1.6;
  padding: 15px;
  background: rgba(148, 163, 184, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.rating-section, .score-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.08) 0%, 
    rgba(168, 85, 247, 0.08) 100%);
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rating-section::before, .score-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(99, 102, 241, 0.05) 50%, 
    transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.rating-section:hover::before, .score-section:hover::before {
  transform: translateX(100%);
}

.rating-section:hover, .score-section:hover {
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.12) 0%, 
    rgba(168, 85, 247, 0.12) 100%);
  border-color: rgba(99, 102, 241, 0.25);
  transform: translateY(-2px);
}

.rating-label, .score-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.stars {
  display: flex;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.star {
  color: #fbbf24;
  font-size: 1.4rem;
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.star:hover {
  transform: scale(1.3) rotate(15deg);
  color: #f59e0b;
  text-shadow: 0 4px 12px rgba(251, 191, 36, 0.6);
}

.star.half {
  background: linear-gradient(90deg, #fbbf24 50%, #6b7280 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
  position: relative;
  z-index: 2;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 35px;
}

.btn {
  padding: 20px 35px;
  border: none;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  border: 2px solid transparent;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: #1e293b;
  box-shadow: 
    0 10px 30px rgba(251, 191, 36, 0.4),
    0 0 0 2px rgba(251, 191, 36, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(251, 191, 36, 0.6),
    0 0 0 3px rgba(251, 191, 36, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(251, 191, 36, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%);
  color: white;
  box-shadow: 
    0 10px 30px rgba(139, 92, 246, 0.4),
    0 0 0 2px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(139, 92, 246, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(139, 92, 246, 0.6),
    0 0 0 3px rgba(139, 92, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-color: rgba(139, 92, 246, 0.5);
}

.btn-outline {
  background: transparent;
  color: #f8fafc;
  border: 2px solid #f8fafc;
}

.btn-outline:hover {
  background: #f8fafc;
  color: #1e293b;
  transform: translateY(-4px) scale(1.02);
}

/* Enhanced Guide Section */
.guide {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  position: relative;
}

.guide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.guide h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  color: #ffffff;
  position: relative;
}

.guide h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 2px;
}

.guide-item {
  margin-bottom: 50px;
  padding: 35px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.guide-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.guide-item:hover::before {
  transform: scaleY(1);
}

.guide-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.guide-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 15px;
}

.guide-item h3::before {
  content: '🎯';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.guide-item:hover h3::before {
  transform: scale(1.2);
}

.guide-item p {
  font-size: 1.1rem;
  color: #d0d0d0;
  line-height: 1.8;
  margin-left: 35px;
}

/* Enhanced Testimonials */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
}

.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  color: #ffffff;
  position: relative;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border-radius: 2px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial {
  background: linear-gradient(135deg, 
    rgba(45, 45, 45, 0.95) 0%, 
    rgba(35, 35, 35, 0.95) 100%);
  padding: 35px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 4rem;
  color: rgba(255, 107, 53, 0.1);
  font-family: serif;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.testimonial .stars {
  margin-bottom: 20px;
}

.testimonial h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #fbbf24;
  text-align: center;
}

.testimonial p {
  font-size: 1rem;
  color: #d0d0d0;
  line-height: 1.7;
  font-style: italic;
  text-align: center;
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 0 40px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
}

.responsible-gaming {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.age-restriction {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.age-restriction img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.responsible-text h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.responsible-text p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-links a:hover {
  color: #ffffff;
  background: rgba(251, 191, 36, 0.1);
}

.footer-links a:hover::before {
  width: 80%;
}

.footer-logos {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos img {
  height: 45px;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(0.3);
}

.footer-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
}

.copyright {
  text-align: center;
  padding-top: 30px;
}

.copyright p {
  color: #888888;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Enhanced Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-top: 1px solid rgba(251, 191, 36, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 35px 20px;
}

.cookie-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
}

.cookie-content p {
  color: #b0b0b0;
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .responsible-banner {
    font-size: 13px;
    padding: 14px 15px;
  }
  
  .hero {
    min-height: 90vh;
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .poker-sites .container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 60px 40px;
  }
  
  .poker-site {
    padding: 30px;
    margin: 0 10px;
    border-radius: 24px;
  }
  
  .site-header {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .site-header img {
    height: 40px;
  }
  
  .rating-section, .score-section {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .score {
    font-size: 2.2rem;
  }
  
  .buttons {
    gap: 15px;
    margin-top: 25px;
  }
  
  .btn {
    padding: 18px 30px;
    font-size: 1rem;
  }
  
  .guide, .testimonials {
    padding: 80px 0;
  }
  
  .guide h2, .testimonials h2 {
    margin-bottom: 60px;
  }
  
  .guide-item {
    padding: 25px;
    margin-bottom: 35px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .testimonial {
    padding: 25px;
  }
  
  .age-restriction {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .footer-logos {
    gap: 25px;
  }
  
  .footer-logos img {
    height: 35px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .buttons {
    gap: 15px;
  }
  
  .btn {
    padding: 16px 28px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .poker-site {
    padding: 25px;
    margin: 0 5px;
    border-radius: 20px;
  }
  
  .guide, .testimonials {
    padding: 60px 0;
  }
  
  .guide h2, .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }
  
  .guide-item {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .testimonial {
    padding: 20px;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .age-restriction {
    padding: 15px;
  }
  
  .responsible-text h4 {
    font-size: 1.2rem;
  }
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* Animation classes */
.poker-site {
  animation: fadeInUp 0.8s ease forwards;
}

.poker-site:nth-child(2) {
  animation-delay: 0.2s;
}

.guide-item {
  animation: slideInLeft 0.8s ease forwards;
}

.guide-item:nth-child(even) {
  animation: slideInRight 0.8s ease forwards;
}

.testimonial {
  animation: fadeInUp 0.8s ease forwards;
}

.testimonial:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial:nth-child(3) {
  animation-delay: 0.4s;
}

/* Hover effects */
.poker-site:hover .site-header img {
  animation: pulse 1s ease infinite;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Focus states for accessibility */
.btn:focus,
.footer-links a:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
* {
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}

/* Additional modern effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Enhanced button states */
.btn:active {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Enhanced image effects */
img {
  transition: filter 0.3s ease, transform 0.3s ease;
}

img:hover {
  filter: brightness(1.1) contrast(1.05);
}

/* Enhanced text selection */
::selection {
  background: rgba(255, 107, 53, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(255, 107, 53, 0.3);
  color: #ffffff;
}

/* Enhanced Policy Pages Styling - Modern Design */

/* Header Section for Policy Pages */
.header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 20px;
  display: block;
  background: linear-gradient(135deg, #f8fafc 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  position: relative;
  z-index: 2;
}

.header__path {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #cbd5e1;
  position: relative;
  z-index: 2;
}

.header__path span {
  transition: color 0.3s ease;
}

.header__path span:first-child {
  color: #fbbf24;
  font-weight: 600;
}

.header__path span:last-child {
  color: #f8fafc;
  font-weight: 600;
}

.header__path img {
  height: 20px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.header__path:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* Policy Section Styling */
.policy {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  min-height: 70vh;
  position: relative;
}

.policy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.policy__content {
  position: relative;
  z-index: 2;
}

.policy__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
  position: relative;
}

.policy__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 2px;
}

.policy__disclaimer {
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.1) 0%, 
    rgba(168, 85, 247, 0.1) 100%);
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy__disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.6s ease;
}

.policy__disclaimer:hover::before {
  left: 100%;
}

.policy__disclaimer:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(99, 102, 241, 0.4);
}

.policy__disclaimer .age-restriction {
  display: flex;
  gap: 25px;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.policy__disclaimer .age-restriction img {
  height: 80px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.policy__disclaimer:hover .age-restriction img {
  transform: scale(1.1);
}

.policy__disclaimer .responsible-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy__disclaimer .responsible-text p {
  color: #e2e8f0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.policy__text {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.policy__text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.policy__text:hover::before {
  transform: scaleY(1);
}

.policy__text h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 30px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.policy__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #fbbf24;
  margin: 35px 0 20px 0;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}

.policy__text h2::before {
  content: '🔒';
  font-size: 1.2rem;
  opacity: 0.8;
}

.policy__text h2:nth-child(even)::before {
  content: '⚡';
}

.policy__text h2:nth-child(3n)::before {
  content: '🛡️';
}

.policy__text p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.policy__text strong {
  color: #fbbf24;
  font-weight: 600;
}

.policy__text ul {
  margin: 20px 0;
  padding-left: 25px;
  position: relative;
  z-index: 2;
}

.policy__text li {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 10px;
  position: relative;
}

.policy__text li::before {
  content: '•';
  color: #fbbf24;
  font-weight: bold;
  position: absolute;
  left: -15px;
  font-size: 1.2rem;
}

.policy__text br {
  margin: 15px 0;
}

/* Success Page Styling */
.success {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  min-height: 70vh;
  text-align: center;
  position: relative;
}

.success__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #f8fafc;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f8fafc 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.success__text {
  font-size: 1.2rem;
  color: #e2e8f0;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* Enhanced Mobile Styles for Policy Pages */
@media (max-width: 768px) {
  .header {
    padding: 30px 0;
  }
  
  .header__title {
    margin-bottom: 15px;
  }
  
  .header__path {
    font-size: 1rem;
    gap: 12px;
  }
  
  .header__path img {
    height: 18px;
  }
  
  .policy {
    padding: 60px 0;
  }
  
  .policy__title {
    margin-bottom: 30px;
  }
  
  .policy__disclaimer {
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .policy__disclaimer .age-restriction {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .policy__disclaimer .age-restriction img {
    height: 70px;
  }
  
  .policy__text {
    padding: 30px;
  }
  
  .policy__text h1 {
    margin-bottom: 25px;
  }
  
  .policy__text h2 {
    margin: 30px 0 15px 0;
  }
  
  .policy__text p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  
  .policy__text ul {
    margin: 18px 0;
    padding-left: 20px;
  }
  
  .policy__text li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 25px 0;
  }
  
  .header__title {
    font-size: 1.8rem;
  }
  
  .header__path {
    font-size: 0.9rem;
    gap: 10px;
  }
  
  .header__path img {
    height: 16px;
  }
  
  .policy {
    padding: 50px 0;
  }
  
  .policy__title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  
  .policy__disclaimer {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .policy__disclaimer .age-restriction img {
    height: 60px;
  }
  
  .policy__disclaimer .responsible-text h4 {
    font-size: 1.3rem;
  }
  
  .policy__disclaimer .responsible-text p {
    font-size: 1rem;
  }
  
  .policy__text {
    padding: 25px;
  }
  
  .policy__text h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .policy__text h2 {
    font-size: 1.4rem;
    margin: 25px 0 12px 0;
  }
  
  .policy__text p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .policy__text ul {
    margin: 15px 0;
    padding-left: 18px;
  }
  
  .policy__text li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
}

/* Enhanced Animations for Policy Pages */
.policy__title,
.policy__disclaimer,
.policy__text {
  animation: fadeInUp 0.8s ease forwards;
}

.policy__disclaimer {
  animation-delay: 0.2s;
}

.policy__text {
  animation-delay: 0.4s;
}

.policy__text h2 {
  animation: slideInLeft 0.6s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
  transform: translateX(-30px);
}

.policy__text h2.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.policy__text p,
.policy__text ul {
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
  transform: translateY(20px);
}

.policy__text p.animate-in,
.policy__text ul.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced hover effects for policy content */
.policy__text:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.policy__text h2:hover::before {
  animation: bounce 0.6s ease;
}

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

/* Enhanced focus states for accessibility */
.policy__text h2:focus,
.policy__text p:focus {
  outline: 2px solid #fbbf24;
  outline-offset: 4px;
  border-radius: 4px;
}

/* Enhanced text selection for policy pages */
.policy__text::selection {
  background: rgba(251, 191, 36, 0.3);
  color: #1e293b;
}

.policy__text::-moz-selection {
  background: rgba(251, 191, 36, 0.3);
  color: #1e293b;
}