/* No Deposit Bonus Casino Nederland - Master Stylesheet */

:root {
  --primary: #7B1FA2;
  --gold: #FFD700;
  --dark: #1a1a1a;
  --light: #f5f5f5;
  --accent-green: #4CAF50;
  --accent-red: #FF6B6B;
  --text: #333;
  --border: #ddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fafafa;
}

/* Header & Navigation */
header {
  background: linear-gradient(135deg, var(--primary) 0%, #5a1280 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo:hover {
  text-shadow: 0 0 10px var(--gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--gold);
  text-shadow: 0 0 5px rgba(255,215,0,0.5);
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.container {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.container.hero {
  background: linear-gradient(135deg, rgba(123,31,162,0.1) 0%, rgba(255,215,0,0.05) 100%);
  border-left: 4px solid var(--primary);
}

/* Headings */
h1 {
  color: var(--primary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.5rem;
}

h3 {
  color: #5a1280;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

h4 {
  color: var(--text);
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Bonus Cards */
.bonus-card {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(123,31,162,0.02) 0%, rgba(255,215,0,0.02) 100%);
  transition: all 0.3s ease;
}

.bonus-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(123,31,162,0.15);
  transform: translateY(-2px);
}

.bonus-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.casino-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
}

.bonus-amount {
  background: var(--gold);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.1rem;
}

.bonus-type {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.bonus-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.detail-item {
  background: white;
  padding: 0.75rem;
  border-left: 3px solid var(--primary);
  border-radius: 4px;
}

.detail-label {
  font-weight: bold;
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.detail-value {
  color: var(--text);
  margin-top: 0.25rem;
}

.claim-btn, .cta-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #5a1280 100%);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.claim-btn:hover, .cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(123,31,162,0.3);
}

.claim-btn:active, .cta-btn:active {
  transform: scale(0.98);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}

@media (max-width: 768px) {
  .comparison-table {
    font-size: 0.85rem;
  }
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, #5a1280 100%);
  color: white;
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: bold;
  border-bottom: 2px solid var(--primary);
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table tbody tr:nth-child(odd) {
  background: rgba(123,31,162,0.02);
}

.comparison-table tbody tr:hover {
  background: rgba(123,31,162,0.08);
}

.rating-badge {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  font-weight: bold;
  font-size: 0.85rem;
}

.rating-high {
  background: rgba(76,175,80,0.2);
  color: #2e7d32;
}

.rating-medium {
  background: rgba(255,152,0,0.2);
  color: #e65100;
}

.rating-low {
  background: rgba(255,107,107,0.2);
  color: #d32f2f;
}

/* Author Bio */
.author-bio {
  background: linear-gradient(135deg, rgba(123,31,162,0.05) 0%, rgba(255,215,0,0.05) 100%);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.author-bio-title {
  font-weight: bold;
  color: var(--primary);
  font-size: 0.95rem;
}

.author-bio-text {
  color: var(--text);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* FAQ Section */
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: rgba(123,31,162,0.1);
  padding: 1rem;
  cursor: pointer;
  font-weight: bold;
  color: var(--primary);
  user-select: none;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(123,31,162,0.15);
}

.faq-answer {
  padding: 1rem;
  color: var(--text);
  display: none;
}

.faq-answer.open {
  display: block;
}

/* Step-by-Step Guide */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.step {
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.step:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(123,31,162,0.1);
}

.step-number {
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.step-title {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.step-description {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Warning & Info Boxes */
.warning-box, .info-box, .success-box {
  padding: 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
  border-left: 4px solid;
}

.warning-box {
  background: rgba(255,107,107,0.1);
  border-left-color: var(--accent-red);
  color: #d32f2f;
}

.info-box {
  background: rgba(123,31,162,0.1);
  border-left-color: var(--primary);
  color: var(--primary);
}

.success-box {
  background: rgba(76,175,80,0.1);
  border-left-color: var(--accent-green);
  color: #2e7d32;
}

.info-box strong, .warning-box strong, .success-box strong {
  font-weight: bold;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
  color: white;
  padding: 3rem 1rem;
  margin-top: 3rem;
}

footer .container {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

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

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 1rem;
}

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

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

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

.footer-section a:hover {
  color: var(--gold);
}

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

.age-warning {
  background: var(--accent-red);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .container {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

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

  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.7rem;
  }
}

/* Print Styles */
@media print {
  header, footer, .navigation {
    display: none;
  }

  .container {
    box-shadow: none;
    break-inside: avoid;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}

.text-muted {
  color: #999;
}

.text-small {
  font-size: 0.85rem;
}
