/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d3561 100%);
  color: #ffffff;
  min-height: 100vh;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(120, 119, 198, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.logo span {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: #00d4ff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-selector:hover {
  background: rgba(255, 255, 255, 0.2);
}

.flag {
  width: 30px;
  height: 20px;
  border-radius: 4px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
  z-index: -1;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #b8c5d6;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #b8c5d6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* Trust Indicators */
.trust-indicators {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.trust-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.trust-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.trust-item p {
  color: #b8c5d6;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Filters Section */
.filters {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-label,
.sort-label {
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  border: 2px solid rgba(0, 212, 255, 0.3);
  background: transparent;
  color: #ffffff;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-color: #00d4ff;
  transform: translateY(-2px);
}

.sort-select {
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Casino Cards */
.casino-list {
  padding: 4rem 0;
}

.casino-grid {
  display: grid;
  gap: 2rem;
}

.casino-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.casino-card:hover::before {
  opacity: 1;
}

.casino-rank {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.casino-logo {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.casino-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.casino-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #ffd700;
  font-size: 1.3rem;
}

.rating-score {
  font-weight: 600;
  color: #00d4ff;
  font-size: 1.1rem;
}

.casino-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #b8c5d6;
}

.feature-icon {
  width: 18px;
  height: 18px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
}

.casino-bonus {
  flex-shrink: 0;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  position: relative;
  z-index: 1;
  min-width: 280px;
}

.bonus-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.play-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.casino-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.feature-card p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.newsletter p {
  font-size: 1.1rem;
  color: #b8c5d6;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: #b8c5d6;
}

.newsletter-form button {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.newsletter-disclaimer {
  font-size: 0.9rem;
  color: #b8c5d6;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-header p {
  font-size: 1.2rem;
  color: #b8c5d6;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Section */
.content-section {
  padding: 4rem 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

.content-main {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-widget h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget ul li {
  margin-bottom: 0.5rem;
}

.sidebar-widget ul li a {
  color: #b8c5d6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover {
  color: #00d4ff;
}

.btn-secondary {
  display: inline-block;
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

/* Legal Content */
.legal-content h2 {
  color: #00d4ff;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.legal-content p {
  color: #b8c5d6;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  color: #b8c5d6;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #b8c5d6;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #00d4ff;
  margin-bottom: 0.3rem;
}

.contact-details span {
  color: #b8c5d6;
  font-size: 0.9rem;
}

.social-contact h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  color: #b8c5d6;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

/* Contact Form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h2 {
  color: #00d4ff;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8c5d6;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  color: #b8c5d6;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.submit-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* FAQ Preview */
.faq-preview {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #b8c5d6;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
}

/* About Page Styles */
.about-intro {
  padding: 4rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: #00d4ff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-text p {
  color: #b8c5d6;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.value-card p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid rgba(0, 212, 255, 0.3);
}

.team-member h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: #b8c5d6;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-step p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-card .stat-label {
  color: #b8c5d6;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: #b8c5d6;
  margin-bottom: 2rem;
}

/* Responsible Gaming Styles */
.responsible-intro {
  padding: 4rem 0;
}

.responsible-content h2 {
  color: #00d4ff;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.responsible-content p {
  color: #b8c5d6;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.warning-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-top: 2rem;
}

.warning-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.warning-content h3 {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.warning-content p {
  color: #b8c5d6;
  margin: 0;
}

/* Guidelines Section */
.guidelines-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.guideline-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.guideline-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.guideline-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.guideline-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.guideline-card p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Warning Signs */
.warning-signs {
  padding: 5rem 0;
}

.warning-content p {
  color: #b8c5d6;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.warning-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.warning-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.warning-category h3 {
  color: #00d4ff;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.warning-category ul {
  list-style: none;
  padding: 0;
}

.warning-category ul li {
  color: #b8c5d6;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.warning-category ul li::before {
  content: "⚠️";
  position: absolute;
  left: 0;
  top: 0;
}

/* Tools Section */
.tools-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.tool-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.tool-card p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Help Section */
.help-section {
  padding: 5rem 0;
}

.help-content p {
  color: #b8c5d6;
  margin-bottom: 3rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.help-organizations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.help-org {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.help-org:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.help-org h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.help-org p {
  color: #b8c5d6;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-info p {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Self Test */
.self-test {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.test-content p {
  color: #b8c5d6;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.self-test-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.test-question {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.test-question p {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.test-question label {
  display: block;
  color: #b8c5d6;
  margin-bottom: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.test-question label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.test-question input[type="radio"] {
  margin-right: 0.5rem;
}

.test-submit-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  width: 100%;
}

.test-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.test-result {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 3rem 0;
}

.footer-section h3,
.footer-section h4 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #b8c5d6;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #b8c5d6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00d4ff;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: #b8c5d6;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #00d4ff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}

.footer-bottom p {
  color: #b8c5d6;
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #00d4ff;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .casino-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .casino-bonus {
    min-width: auto;
    width: 100%;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    padding: 1rem;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .filter-buttons {
    justify-content: center;
  }

  .casino-features {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .warning-categories {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .help-organizations {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .casino-card {
    padding: 1.5rem;
  }

  .casino-rank {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .casino-logo {
    width: 70px;
    height: 70px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guidelines-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
}

/* Loading Animation */
.loading {
  text-align: center;
  padding: 3rem;
  color: #b8c5d6;
  font-size: 1.1rem;
}

/* Smooth Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.casino-card {
  animation: fadeInUp 0.6s ease-out;
}

.casino-card:nth-child(1) {
  animation-delay: 0.1s;
}
.casino-card:nth-child(2) {
  animation-delay: 0.2s;
}
.casino-card:nth-child(3) {
  animation-delay: 0.3s;
}
.casino-card:nth-child(4) {
  animation-delay: 0.4s;
}
.casino-card:nth-child(5) {
  animation-delay: 0.5s;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cta-button,
  .play-btn,
  .filter-buttons,
  .newsletter {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .casino-card {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* Bonus Page Styles */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.bonus-card.exclusive {
  border-color: rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
}

.exclusive-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bonus-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.bonus-info h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.bonus-info h4 {
  color: #00d4ff;
  font-size: 1rem;
}

.bonus-offer {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 1rem;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
}

.bonus-details {
  margin-bottom: 1.5rem;
}

.bonus-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: #b8c5d6;
}

.bonus-detail strong {
  color: #ffffff;
}

.claim-bonus-btn {
  width: 100%;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.claim-bonus-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Bonus Types */
.bonus-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.bonus-type-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.bonus-type-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.bonus-type-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bonus-type-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.bonus-example {
  background: rgba(0, 212, 255, 0.1);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Bonus Calculator */
.calculator-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-form h3 {
  color: #00d4ff;
  margin-bottom: 2rem;
  text-align: center;
}

.calculate-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.calculator-result {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.calculator-result h4 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

/* Guides Page Styles */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.category-count {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.guide-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.5);
}

.guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.guide-content {
  padding: 1.5rem;
}

.guide-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.guide-category,
.guide-difficulty,
.guide-time {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
}

.guide-title {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.guide-description {
  color: #b8c5d6;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.read-guide-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.read-guide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Beginner Steps */
.beginner-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

/* Strategy Tabs */
.strategy-tabs {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #b8c5d6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border-color: #00d4ff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

.strategy-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tip {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tip h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.tip p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Glossary */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.glossary-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glossary-item h4 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.glossary-item p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* FAQ Page Styles */
.faq-search {
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.05);
}

.search-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  font-size: 1rem;
}

.search-input::placeholder {
  color: #b8c5d6;
}

.search-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #00d4ff;
  font-size: 1.2rem;
  cursor: pointer;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.category-tab {
  background: rgba(255, 255, 255, 0.1);
  color: #b8c5d6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-tab.active,
.category-tab:hover {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border-color: #00d4ff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
  color: #ffffff;
  margin: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  color: #00d4ff;
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer p {
  color: #b8c5d6;
  line-height: 1.6;
  margin: 0;
}

.contact-support {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.05);
}

.support-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-box h2 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.support-box p {
  color: #b8c5d6;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.support-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.support-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.support-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

/* Cookie Page Styles */
.cookie-table {
  margin: 1.5rem 0;
  overflow-x: auto;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  font-weight: 600;
}

.cookie-table td {
  color: #b8c5d6;
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings h4 {
  color: #00d4ff;
  margin-bottom: 1.5rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  width: 100%;
}

.toggle-label span:first-child {
  color: #ffffff;
  font-weight: 500;
}

.toggle-label small {
  color: #b8c5d6;
  font-size: 0.8rem;
}

.toggle-slider {
  width: 50px;
  height: 25px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background: #ffffff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

input[type="checkbox"]:checked + .toggle-slider {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
}

input[type="checkbox"]:checked + .toggle-slider::before {
  transform: translateX(25px);
}

input[type="checkbox"] {
  display: none;
}

.save-preferences-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.save-preferences-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.browser-instructions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.browser-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-item h4 {
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.browser-item p {
  color: #b8c5d6;
  font-size: 0.9rem;
  line-height: 1.5;
}

.important-notice {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
}

.important-notice h3 {
  color: #ffc107;
  margin-bottom: 1rem;
}

.important-notice p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Review Criteria */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.criteria-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.criteria-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.criteria-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.criteria-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.criteria-weight {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Expert Tips */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.tip-card h3 {
  color: #00d4ff;
  margin-bottom: 1rem;
}

.tip-card p {
  color: #b8c5d6;
  line-height: 1.6;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .guides-grid {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .strategy-tips {
    grid-template-columns: 1fr;
  }

  .support-options {
    flex-direction: column;
  }

  .cookie-toggle {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .toggle-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}



/* Responsible Gambling Section Styles */
.responsible-gambling-section {
   /* Light background to distinguish it */
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.responsible-gambling-section .section-title {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.responsible-gambling-description {
    color: white;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.gambling-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.gambling-logo {
    max-height: 60px; /* Adjust as needed */
    width: auto;
    filter: grayscale(100%); /* Make logos grayscale by default */
    transition: filter 0.3s ease-in-out;
    opacity: 0.8;
}

.gambling-logo:hover {
    filter: grayscale(0%); /* Color on hover */
    opacity: 1;
}

.age-restriction-logo {
    max-height: 80px; /* Slightly larger for 18+ */
}

.responsible-gambling-disclaimer {
    color: white;
    font-size: 0.9em;
    margin-top: 20px;
}

/* Responsive adjustments for the new section */
@media (max-width: 768px) {
    .responsible-gambling-section .section-title {
        font-size: 2em;
    }
    .responsible-gambling-section {
        padding: 40px 15px;
    }
    .gambling-logos {
        gap: 30px;
    }
    .gambling-logo {
        max-height: 50px;
    }
    .age-restriction-logo {
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .responsible-gambling-section .section-title {
        font-size: 1.8em;
    }
    .responsible-gambling-section {
        padding: 30px 10px;
    }
    .gambling-logos {
        gap: 20px;
    }
    .gambling-logo {
        max-height: 45px;
    }
    .age-restriction-logo {
        max-height: 60px;
    }
}