/* 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;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: white;
  padding: 15px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.btn-accept {
  background: #f59e0b;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

/* Header */
.header {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.nav-brand .logo i {
  margin-right: 0.5rem;
  color: #fbbf24;
}

.tagline {
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
}

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

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 4rem 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.ssl-indicator {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  width: fit-content;
}

.ssl-indicator i {
  margin-right: 0.5rem;
  color: #fbbf24;
}

.hero-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Age Verification Banner */
.age-verification {
  background: #dc2626;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

.age-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.age-text {
  font-size: 1.2rem;
  font-weight: bold;
}

.responsible-gambling {
  font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
  background: white;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1f2937;
}

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

.step {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  background: #f8f9fa;
  position: relative;
  transition: transform 0.3s ease;
}

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

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 3rem;
  color: #f59e0b;
  margin: 1rem 0;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

/* Top Betting Sites */
.top-sites {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.top-sites h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
}

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

.site-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.site-card:hover {
  transform: translateY(-10px);
}

.rank-badge {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.1rem;
}

.site-logo {
  margin: 1rem 0 2rem 0;
}

.site-logo img {
  max-height: 60px;
  max-width: 200px;
}

.site-logo img {
  max-height: 60px;
  max-width: 200px;
  object-fit: contain;
  background: white;
  padding: 10px;
  border-radius: 8px;
}

.bonus-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bonus-info i {
  color: #dc2626;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.claim-btn {
  background: #d97706;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.claim-btn:hover {
  background: #fbbf24;
  transform: translateY(-2px);
}

.disclaimer {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
}

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

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

.content-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid #f59e0b;
  transition: transform 0.3s ease;
}

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

.content-card h3 {
  color: #1f2937;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-card i {
  color: #f59e0b;
}

/* Why Us Section */
.why-us {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.why-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

.feature {
  text-align: center;
  padding: 2rem;
}

.feature i {
  font-size: 3rem;
  color: #fbbf24;
  margin-bottom: 1rem;
}

.feature h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Privacy Policy Styles */
.privacy-policy {
  padding: 4rem 0;
  background: white;
}

.policy-header {
  text-align: center;
  margin-bottom: 3rem;
}

.policy-header h1 {
  font-size: 3rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.last-updated {
  color: #666;
  font-style: italic;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.policy-section h2 {
  color: #f59e0b;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #f59e0b;
  padding-bottom: 0.5rem;
}

.policy-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

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

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
  background: white;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h1 {
  font-size: 3rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

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

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

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

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

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

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

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

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

.submit-btn {
  background: #f59e0b;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background: #fbbf24;
  transform: translateY(-2px);
}

.info-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

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

.info-item i {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.info-item h4 {
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.support-details {
  background: #fef3c7;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 5px solid #f59e0b;
}

.support-details ul {
  margin-left: 1rem;
}

.support-details li {
  margin-bottom: 0.5rem;
}

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

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

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

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

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

/* Responsible Gambling Section */
.responsible-gambling {
  padding: 2rem 0;
  background: #dc2626;
  color: white;
}

.gambling-notice {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.gambling-notice i {
  font-size: 3rem;
  color: #fbbf24;
}

.notice-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.help-resources {
  margin-top: 1rem;
  display: flex;
  gap: 2rem;
}

.help-resources a {
  color: #fbbf24;
  text-decoration: underline;
}

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

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

.footer-section h4 {
  margin-bottom: 1rem;
  color: #fbbf24;
}

.footer-section .logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-section .logo i {
  margin-right: 0.5rem;
  color: #fbbf24;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.legal-disclaimers {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-disclaimers p {
  margin-bottom: 0.5rem;
}

.copyright {
  font-size: 0.8rem;
  color: #d1d5db;
}

/* Compliance Logos */
.compliance-logos {
  padding: 2rem 0;
  border-top: 1px solid #374151;
  border-bottom: 1px solid #374151;
  margin: 2rem 0;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.compliance-logo {
  max-height: 50px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: grayscale(20%);
}

.compliance-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }

  .compliance-logo {
    max-height: 40px;
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f59e0b;
    padding: 1rem;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .age-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .gambling-notice {
    flex-direction: column;
    text-align: center;
  }

  .help-resources {
    flex-direction: column;
    gap: 1rem;
  }
}

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

  .hero {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .steps-grid,
  .content-grid,
  .features-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .site-card {
    padding: 1.5rem;
  }

  .policy-header h1,
  .contact-header h1 {
    font-size: 2rem;
  }
}
