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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo h1 {
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffc107;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Contact Hero */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.contact-hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #ffc107;
}

.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Casino Listings */
.casino-listings {
  padding: 4rem 0;
  background: white;
}

.casino-listings h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.casino-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  padding: 2rem;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.casino-card.featured {
  border: 2px solid #ffc107;
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.casino-rank {
  position: absolute;
  top: -15px;
  left: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.casino-logo .logo-text {
  font-size: 2rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

.logo-text.favbet {
  background: linear-gradient(135deg, #ff6b9d, #c44569);
  color: white;
}

.logo-text.psk {
  background: linear-gradient(135deg, #4834d4, #686de0);
  color: white;
}

.logo-text.rizk {
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: white;
}

.casino-rating {
  text-align: right;
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.expert-badge {
  background: #28a745;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.casino-bonus h3 {
  font-size: 1.8rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.casino-features ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.casino-features li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
}

.casino-details {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.cta-button {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Features Section */
.features {
  padding: 4rem 0;
  background: #f8f9fa;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Information Sections */
.info-sections {
  padding: 4rem 0;
  background: white;
}

.info-section {
  margin-bottom: 3rem;
}

.info-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.info-section ul {
  margin-left: 2rem;
}

.info-section li {
  margin-bottom: 0.5rem;
}

.warning-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
}

.warning-box h3 {
  color: #856404;
  margin-bottom: 1rem;
}

.warning-box p {
  color: #856404;
  margin-bottom: 1rem;
}

/* Contact Content */
.contact-content {
  padding: 4rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form */
.contact-form-section h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.checkbox-group a {
  color: #667eea;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.submit-button {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.form-success {
  background: #d4edda;
  border: 2px solid #28a745;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.form-success h4 {
  color: #155724;
  margin-bottom: 1rem;
}

.form-success p {
  color: #155724;
}

/* Contact Info */
.contact-info-box {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.contact-info-box h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-details p {
  color: #666;
  line-height: 1.6;
}

.response-time-box {
  background: #e3f2fd;
  border: 2px solid #2196f3;
  border-radius: 10px;
  padding: 1.5rem;
}

.response-time-box h4 {
  color: #1976d2;
  margin-bottom: 1rem;
}

.response-time-box ul {
  margin-bottom: 1rem;
  margin-left: 1.5rem;
}

.response-time-box li {
  color: #1976d2;
  margin-bottom: 0.5rem;
}

.response-time-box p {
  color: #1976d2;
  font-size: 0.9rem;
}

/* Age Restriction Banner Styles */
.age-restriction-banner {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  animation: pulse 2s infinite;
}

.age-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.age-icon {
  font-size: 1.5rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(220, 53, 69, 0.5);
  }
  100% {
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  }
}

/* Enhanced Responsible Gaming Section Styles */
.help-resources {
  background: #f8f9fa;
  border: 2px solid #28a745;
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.help-resources h4 {
  color: #155724;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.help-links a {
  background: #28a745;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.help-links a:hover {
  background: #218838;
  transform: translateY(-2px);
}

.help-text {
  color: #155724;
  font-weight: bold;
  margin: 0;
}

/* Footer Responsible Gaming Section Styles */
.footer-responsible-gaming {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 15px;
  text-align: center;
}

.responsible-gaming-content h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.responsible-gaming-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.responsible-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.responsible-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

.link-icon {
  font-size: 1.2rem;
}

/* Enhanced Responsible Gaming Notice in Contact Page */
.responsible-gaming-notice {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.responsible-gaming-notice h4 {
  color: #856404;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.responsible-gaming-notice p {
  color: #856404;
  margin-bottom: 1rem;
}

.help-links-inline {
  margin-top: 0.5rem;
}

.help-links-inline a {
  color: #856404;
  font-weight: bold;
  text-decoration: none;
}

.help-links-inline a:hover {
  color: #533f03;
  text-decoration: underline;
}

/* Age Verification Notice Styles */
.age-verification-notice {
  background: #f8d7da;
  border: 2px solid #dc3545;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.age-verification-notice h4 {
  color: #721c24;
  margin-bottom: 1rem;
}

.age-verification-notice p {
  color: #721c24;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

/* Addiction Warning Styles */
.addiction-warning {
  background: #f8f9fa;
  border-left: 4px solid #dc3545;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.addiction-warning h4 {
  color: #dc3545;
  margin-bottom: 1rem;
}

.addiction-warning ul {
  margin-left: 1.5rem;
}

.addiction-warning li {
  color: #495057;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Responsible Gaming Card in Quick Links */
.responsible-gaming-card {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

.responsible-gaming-card h4 {
  color: white;
}

.responsible-gaming-card p {
  color: rgba(255, 255, 255, 0.9);
}

.responsible-gaming-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Enhanced Footer Responsible Logos with Proper Links */
.responsible-logos a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.responsible-logos a:hover {
  color: white;
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  padding: 4rem 0;
  background: #f8f9fa;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* FAQ Preview */
.faq-preview {
  padding: 4rem 0;
  background: #f8f9fa;
}

.faq-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

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

.faq-preview-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-preview-item h4 {
  color: #667eea;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-preview-item p {
  color: #666;
  line-height: 1.6;
}

/* Partnership Section */
.partnership-section {
  padding: 4rem 0;
  background: white;
}

.partnership-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.partnership-info h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.partnership-info h4 {
  margin: 2rem 0 1rem;
  color: #667eea;
}

.partnership-info ul {
  margin-left: 1.5rem;
}

.partnership-info li {
  margin-bottom: 0.5rem;
  color: #666;
}

.newsletter-signup {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-signup h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.newsletter-signup p {
  margin-bottom: 1.5rem;
  color: #666;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter-input-group input {
  flex: 1;
  padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-input-group button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.newsletter-benefits p {
  font-size: 0.9rem;
  color: #28a745;
  margin-bottom: 0.3rem;
}

/* Social Proof */
.social-proof {
  padding: 4rem 0;
  background: #f8f9fa;
}

.social-proof h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.proof-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.proof-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #28a745;
}

.proof-item h4 {
  color: #333;
  font-size: 1.2rem;
}

/* Important Notice */
.important-notice {
  padding: 2rem 0;
  background: white;
}

.notice-box {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.notice-box h3 {
  color: #856404;
  margin-bottom: 1rem;
}

.notice-box p {
  color: #856404;
}

/* Legal Pages Styles */
.legal-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.legal-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.legal-date {
  font-size: 1.1rem;
  opacity: 0.9;
  font-style: italic;
}

.legal-content {
  padding: 4rem 0;
  background: white;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #667eea;
}

.legal-section p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section ul {
  margin-left: 2rem;
  color: #666;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-section a {
  color: #667eea;
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-update {
  background: #e3f2fd;
  border: 2px solid #2196f3;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.legal-update p {
  color: #1976d2;
  margin: 0;
  font-weight: bold;
}

.age-restriction {
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #ffc107;
}

.responsible-gaming-notice {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 15px;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 800px;
}

.responsible-gaming-notice h3 {
  color: #856404;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.responsible-gaming-notice p {
  color: #856404;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.responsible-gaming-notice ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.responsible-gaming-notice li {
  color: #856404;
  margin-bottom: 0.5rem;
}

.legal-quick-links {
  max-width: 800px;
  margin: 3rem auto 0;
}

.legal-quick-links h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.quick-link-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-link-card:hover {
  transform: translateY(-5px);
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quick-link-card h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.quick-link-card p {
  color: #666;
  margin: 0;
}

/* Cookie Management Styles */
.cookie-management-section {
  max-width: 800px;
  margin: 3rem auto;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-management-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.cookie-controls {
  margin-bottom: 2rem;
}

.cookie-category {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid #e9ecef;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-header h4 {
  color: #333;
  font-size: 1.2rem;
  margin: 0;
}

.cookie-status.required {
  background: #dc3545;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #28a745;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.cookie-category p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-btn.accept-all {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

.cookie-btn.reject-optional {
  background: #dc3545;
  color: white;
}

.cookie-btn.save-preferences {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Data Rights Section */
.data-rights-section {
  max-width: 800px;
  margin: 3rem auto;
}

.data-rights-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.right-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.right-card:hover {
  border-color: #667eea;
  transform: translateY(-5px);
}

.right-card h4 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.right-card p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.right-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.right-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Cookie Type Styles */
.cookie-type {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
  border-left: 4px solid #667eea;
}

.cookie-type h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cookie-type ul {
  margin-left: 1.5rem;
  color: #666;
}

.cookie-type li {
  margin-bottom: 0.3rem;
}

/* Authority Contact */
.authority-contact {
  background: #e3f2fd;
  border: 2px solid #2196f3;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.authority-contact a {
  color: #1976d2;
  text-decoration: none;
}

.authority-contact a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  color: #ffc107;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffc107;
}

.responsible-logos {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  text-align: center;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .casino-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .casino-rank {
    position: static;
    margin: 0 auto 1rem;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .partnership-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .social-proof-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-hero h2 {
    font-size: 1.5rem;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: center;
  }

  .cookie-btn {
    width: 100%;
    max-width: 250px;
  }

  .rights-grid {
    grid-template-columns: 1fr;
  }

  .cookie-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .age-restriction-banner {
    margin-bottom: 1rem;
    padding: 0.75rem;
  }

  .age-warning {
    font-size: 1rem;
    flex-direction: column;
    gap: 0.25rem;
  }

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

  .responsible-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .help-links {
    flex-direction: column;
  }

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

  .footer-responsible-gaming {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .responsible-gaming-content h3 {
    font-size: 1.2rem;
  }

  .responsible-gaming-content p {
    font-size: 1rem;
  }
}

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

  .casino-card {
    padding: 1.5rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .logo h1 {
    font-size: 1.4rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-info-box {
    padding: 1.5rem;
  }

  .newsletter-signup {
    padding: 1.5rem;
  }

  .cookie-management-section {
    padding: 1.5rem;
  }

  .cookie-category {
    padding: 1rem;
  }

  .right-card {
    padding: 1.5rem;
  }
}
