/* VOX Casino Polska — Color palette & base */
:root {
  --base: #0A192F;
  --secondary: #112240;
  --action: #FF8C00;
  --action-hover: #FFA500;
  --action-deep: #FF4500;
  --text: #E6F1FF;
  --text-muted: #8892b0;
  --border: #1d2d44;
  --card-bg: rgba(17, 34, 64, 0.85);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
}

/* Header with gradient & shimmer */
.header {
  position: relative;
  padding: 2rem 1.5rem 3rem;
  background: linear-gradient(135deg, #0A192F 0%, #112240 100%);
  overflow: hidden;
}

.header-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 40%,
    rgba(17, 34, 64, 0.6) 45%,
    rgba(255, 140, 0, 0.08) 50%,
    rgba(17, 34, 64, 0.6) 55%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.header h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  text-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
}

.h1-accent {
  color: var(--action);
  border-bottom: 2px solid var(--action);
}

.hero-bonus {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.hero-bonus strong {
  color: var(--action);
}

/* Live badge — Zaktualizowano */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--action);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: linear-gradient(90deg, #FF8C00 0%, #FF4500 100%);
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
  transition: box-shadow 0.2s, transform 0.2s;
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
  transform: scale(1.05);
}

/* Main content */
.main {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  margin: 0 0 1rem;
  padding: 0.5rem 0.75rem 0.5rem 0;
  font-size: 1.5rem;
  color: #fff;
  background: #0a192f;
  border-bottom: 3px solid var(--action);
}

.section h3 {
  margin: 1.25rem 0 0.5rem;
  padding-bottom: 0.25rem;
  font-size: 1.15rem;
  color: #fff;
  border-bottom: 2px solid var(--action);
}

.section p, .section li {
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.section ul, .section ol {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

/* Feature cards — glassmorphism */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--action);
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.1);
}

.feature-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  filter: none;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--action);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border-radius: 8px;
  border-top: 3px solid var(--action);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--secondary);
}

.info-table th {
  background: var(--base);
  color: var(--text);
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
}

.info-table td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  color: var(--text);
}

.info-table tbody tr:nth-child(even) {
  background: rgba(17, 34, 64, 0.7);
}

.info-table tbody tr:hover {
  background: rgba(255, 140, 0, 0.05);
}

.table-compare .info-table th,
.table-compare .info-table td {
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
}

/* Promo codes list */
.promo-codes {
  list-style: none;
  padding-left: 0;
}

.promo-codes li {
  margin-bottom: 0.5rem;
}

.promo-codes strong {
  color: var(--action);
}

/* Dark Alert — Ważne Informacje */
.alert-block {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--secondary);
  border: 1px solid var(--action);
  border-radius: 8px;
}

.alert-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.alert-content h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: var(--action);
}

.alert-content p,
.alert-content li {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
}

.alert-content ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

/* FAQ */
.faq .faq-list {
  margin-top: 1rem;
}

.faq-item {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.faq-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* Summary section */
.summary p {
  font-size: 1.05rem;
}

.summary .cta-button {
  margin-top: 1rem;
}

/* Footer */
.footer {
  padding: 1.5rem;
  text-align: center;
  background: var(--secondary);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 600px) {
  .header {
    padding: 1.5rem 1rem 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .alert-block {
    flex-direction: column;
  }
}
