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

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

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

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

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

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

.logo h1 {
  color: #ffd700;
  font-size: 1.8rem;
  font-weight: bold;
}

.logo h1 a {
  color: inherit;
  text-decoration: none;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
  color: #ffd700;
  background-color: rgba(255, 215, 0, 0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/placeholder.svg?height=600&width=1200")
    center / cover;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: 2px solid #ffd700;
}

.feature-icon {
  background: #ffd700;
  color: #000;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

/* Rankings Section */
.rankings {
  padding: 4rem 0;
  background: #fff;
}

.rankings h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

/* Casino Table */
.casino-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.casino-row {
  display: grid;
  grid-template-columns: auto 120px 1fr auto auto;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.casino-row:hover {
  border-color: #ffd700;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

.casino-row.featured {
  border-color: #ffd700;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.casino-rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.rank-number {
  background: #1a1a1a;
  color: #ffd700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.popular-badge {
  background: #ffd700;
  color: #000;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  white-space: nowrap;
}

.casino-logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.casino-logo .text-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #ffd700;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 8px;
  border: 2px solid #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.casino-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.casino-bonus {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.casino-features {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.flag {
  background: #e8f5e8;
  color: #2d5a2d;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.score {
  font-weight: bold;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.btn-bonus {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
  white-space: nowrap;
}

.btn-bonus:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: white;
  padding: 1rem;
  z-index: 1001;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-accept {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-accept:hover {
  background: #ffed4e;
}

.btn-more {
  color: #ffd700;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #ffd700;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-more:hover {
  background: #ffd700;
  color: #000;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  flex: 1;
}

.footer-disclaimer p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #ffd700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffed4e;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.8rem;
  color: #999;
}

/* Legal Pages */
.legal-page {
  padding: 2rem 0;
  background: #fff;
  min-height: 70vh;
}

.legal-page h1 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-size: 2.2rem;
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
}

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

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

.legal-section h3 {
  color: #333;
  margin: 1.5rem 0 0.75rem;
  font-size: 1.2rem;
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-section ul {
  margin: 1rem 0 1rem 2rem;
}

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

/* Contact Page */
.contact-page {
  padding: 2rem 0;
  background: #fff;
  min-height: 70vh;
}

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

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

.contact-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.contact-form-section h2,
.contact-info-section h2 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  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: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: auto;
}

.btn-submit {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h3 {
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.contact-item p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-item a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
}

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

.contact-note {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* FAQ Section */
.faq-section {
  margin-top: 2rem;
}

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

.faq-item {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #ffd700;
}

.faq-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.faq-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Bwin Details Section */
.bwin-details {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px solid #ffd700;
}

.bwin-details h3 {
  text-align: center;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
  border-bottom: 3px solid #ffd700;
  padding-bottom: 0.5rem;
}

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

.detail-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
  border-color: #ffd700;
}

.detail-item h4 {
  color: #1a1a1a;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 20px;
  }

  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

  .features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .casino-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .casino-rank {
    flex-direction: row;
    justify-content: center;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .checkbox-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .casino-logo .text-logo {
    font-size: 1.5rem;
    padding: 0.75rem;
    letter-spacing: 1px;
  }

  .bwin-details {
    margin-top: 2rem;
    padding: 1.5rem;
  }

  .bwin-details h3 {
    font-size: 1.5rem;
  }

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

  .detail-item {
    padding: 1rem;
  }

  .detail-item h4 {
    font-size: 1.1rem;
  }
}

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

  .hero {
    padding: 2rem 0;
  }

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

  .rankings {
    padding: 2rem 0;
  }

  .casino-row {
    padding: 1rem;
  }

  .btn-bonus {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .legal-page,
  .contact-page {
    padding: 1rem 0;
  }

  .casino-logo .text-logo {
    font-size: 1.2rem;
    padding: 0.5rem;
  }

  .bwin-details {
    padding: 1rem;
  }

  .bwin-details h3 {
    font-size: 1.3rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .btn-bonus,
  .btn-submit {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .casino-row {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}
