/* ============================================================
   Pulsz Casino DE — Global Stylesheet
   Brand: Hot Pink #FF2D8E / Magenta #E91E8C / Deep Purple #1A0A2E
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --pink: #FF2D8E;
  --pink-dark: #E91E8C;
  --pink-light: #FF6CB3;
  --magenta: #CC1277;
  --purple-deep: #1A0A2E;
  --purple-mid: #2D1054;
  --purple-light: #3D1A6E;
  --gold: #FFD700;
  --gold-light: #FFE566;
  --white: #FFFFFF;
  --text-light: rgba(255,255,255,0.85);
  --text-muted: rgba(255,255,255,0.55);
  --card-bg: rgba(255,255,255,0.06);
  --card-border: rgba(255,45,142,0.25);
  --gradient-hero: linear-gradient(135deg, #1A0A2E 0%, #2D1054 40%, #4A0E6E 70%, #1A0A2E 100%);
  --gradient-pink: linear-gradient(135deg, #FF2D8E, #E91E8C);
  --gradient-gold: linear-gradient(135deg, #FFD700, #FF9F00);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-glow: 0 0 40px rgba(255,45,142,0.3);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--purple-deep);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--text-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: none; transition: var(--transition); white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--gradient-pink);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,45,142,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(255,45,142,0.6); }
.btn-secondary {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { border-color: var(--pink); transform: translateY(-2px); }
.btn-gold {
  background: var(--gradient-gold); color: #1A0A2E;
  box-shadow: 0 4px 24px rgba(255,215,0,0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(255,215,0,0.6); }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 20px;
  background: rgba(72,28,128,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,45,142,0.3);
  transition: var(--transition);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 74px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a {
  color: var(--text-light); font-weight: 500; font-size: 0.925rem;
  padding: 8px 14px; border-radius: 8px;
  transition: var(--transition); white-space: nowrap;
}
.header-nav a:hover, .header-nav a.active { color: var(--pink); background: rgba(255,45,142,0.12); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { font-size: 0.9rem; padding: 10px 24px; }
.header-mobile-cta {
  display: none;
  align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; padding: 8px 14px;
  background: var(--pink); color: var(--white);
  border-radius: 8px; text-decoration: none;
  white-space: nowrap; letter-spacing: 0.01em;
  transition: var(--transition);
}
.header-mobile-cta:hover { background: var(--pink-dark); color: var(--white); }


.burger-btn {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
  width: 42px; height: 42px; background: transparent; border: none; cursor: pointer;
  padding: 4px; border-radius: 8px;
}
.burger-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; top: 88px; left: 0; right: 0;
  background: rgba(26,10,46,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,45,142,0.2);
  padding: 16px 20px 24px; z-index: 999;
  flex-direction: column; gap: 4px;
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-light); font-weight: 500; padding: 12px 16px;
  border-radius: 10px; transition: var(--transition); font-size: 1rem;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--pink); background: rgba(255,45,142,0.12); }
.mobile-menu .mobile-cta { margin-top: 12px; text-align: center; }
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ── Hero Section ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 76px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/hero-bg.png');
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,10,46,0.9) 40%, rgba(26,10,46,0.4) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,142,0.18); border: 1px solid rgba(255,45,142,0.4);
  color: var(--pink-light); font-size: 0.85rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 1.5s infinite; }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--pink); }
.hero-desc { font-size: 1.15rem; color: var(--text-light); margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; }
.hero-stat { text-align: center; }
.hero-stat .value { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; color: var(--pink); display: block; }
.hero-stat .label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── Section Headers ── */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .tag {
  display: inline-block; background: rgba(255,45,142,0.15); border: 1px solid rgba(255,45,142,0.35);
  color: var(--pink-light); font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 14px; }
.section-head h2 span { color: var(--pink); }
.section-head p { max-width: 560px; margin: 0 auto; color: var(--text-muted); }

/* ── Cards ── */
.card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px;
  transition: var(--transition); box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}
.card:hover { transform: translateY(-6px); border-color: rgba(255,45,142,0.5); box-shadow: var(--shadow-glow); }
.card-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(255,45,142,0.15); display: flex; align-items: center;
  justify-content: center; font-size: 1.75rem; margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p { color: var(--text-muted); font-size: 0.925rem; line-height: 1.6; }

/* ── Grid Layouts ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ── Highlight Banner ── */
.highlight-banner {
  background: linear-gradient(135deg, rgba(255,45,142,0.15), rgba(45,16,84,0.5));
  border: 1px solid rgba(255,45,142,0.3); border-radius: var(--radius);
  padding: 40px; text-align: center;
}

/* ── Page Hero (sub-pages) ── */
.page-hero {
  padding: 120px 0 60px; position: relative;
  background: var(--gradient-hero); overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,45,142,0.2) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px;
}
.breadcrumb a { color: var(--pink-light); }
.breadcrumb span { color: var(--text-muted); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero h1 span { color: var(--pink); }
.page-hero p { font-size: 1.1rem; max-width: 600px; }

/* ── Tables ── */
.data-table {
  width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.data-table th {
  background: rgba(255,45,142,0.2); color: var(--pink-light); font-family: 'Outfit', sans-serif;
  font-weight: 700; padding: 14px 18px; text-align: left; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid rgba(255,45,142,0.25);
}
.data-table td {
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-light); font-size: 0.925rem; vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.data-table tr:hover td { background: rgba(255,45,142,0.06); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.775rem; font-weight: 700; }
.badge-green { background: rgba(46,213,115,0.2); color: #2ED573; }
.badge-yellow { background: rgba(255,215,0,0.2); color: #FFD700; }
.badge-pink { background: rgba(255,45,142,0.2); color: var(--pink-light); }

/* ── Chart / Stats bar ── */
.stat-bar-wrap { margin-bottom: 16px; }
.stat-bar-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.875rem; color: var(--text-light); }
.stat-bar-track { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.stat-bar-fill { height: 100%; border-radius: 4px; background: var(--gradient-pink); transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.stat-bar-fill.gold { background: var(--gradient-gold); }
.stat-bar-fill.purple { background: linear-gradient(90deg, #7B2FBE, #5E60CE); }

/* ── Pie-style chart visual ── */
.circle-chart-grid { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.circle-chart { text-align: center; }
.circle-chart svg { transform: rotate(-90deg); }
.circle-chart .circle-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 8; }
.circle-chart .circle-fill { fill: none; stroke-width: 8; stroke-linecap: round; transition: stroke-dashoffset 1.5s ease; }
.circle-chart .chart-label { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 800; fill: #fff; }
.circle-chart .chart-sub { font-size: 0.65rem; fill: rgba(255,255,255,0.5); }
.circle-chart p { margin-top: 10px; font-size: 0.85rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; cursor: pointer; font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 1rem; color: var(--white);
  user-select: none; transition: var(--transition);
}
.faq-question:hover { color: var(--pink); }
.faq-icon { font-size: 1.25rem; color: var(--pink); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 18px; color: var(--text-muted); font-size: 0.925rem; line-height: 1.7; }

/* ── Author Block ── */
.author-block {
  background: linear-gradient(135deg, rgba(255,45,142,0.1), rgba(45,16,84,0.4));
  border: 1px solid rgba(255,45,142,0.25); border-radius: var(--radius);
  padding: 32px; display: flex; gap: 24px; align-items: flex-start;
}
.author-avatar { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--pink); }
.author-info h4 { margin-bottom: 4px; font-size: 1.1rem; }
.author-info .title { color: var(--pink-light); font-size: 0.85rem; margin-bottom: 10px; }
.author-info p { font-size: 0.875rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.author-link { color: var(--pink-light); font-weight: 600; }
.author-link:hover { color: var(--pink); }

/* ── Footer ── */
.site-footer {
  background: linear-gradient(180deg, rgba(72,28,128,0.97) 0%, rgba(55,18,100,0.99) 100%);
  border-top: 1px solid rgba(255,45,142,0.25); padding-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo img { height: 70px; width: auto; margin-bottom: 18px; }
.footer-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.footer-col h5 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1px; color: var(--pink-light); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.875rem;
  padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.footer-resp { font-size: 0.75rem; color: var(--text-muted); text-align: right; max-width: 400px; }
.footer-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; background: rgba(255,255,255,0.1);
  border-radius: 50%; font-weight: 900; font-size: 0.75rem; color: var(--text-muted);
}

/* ── Bonus Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #FF2D8E, #C4146C, #7B2FBE);
  border-radius: var(--radius); padding: 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; max-width: 450px; margin-left: auto; margin-right: auto; }

/* ── Info Box ── */
.info-box {
  background: rgba(255,45,142,0.08); border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px;
  margin: 20px 0; font-size: 0.9rem; color: var(--text-light);
}

/* ── Step list ── */
.step-list { display: flex; flex-direction: column; gap: 20px; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient-pink); display: flex; align-items: center;
  justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1rem;
}
.step-body h4 { margin-bottom: 6px; }
.step-body p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ── Feature list ── */
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-check { color: var(--pink); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.feature-text { font-size: 0.925rem; color: var(--text-light); }

/* ── Rating Block ── */
.rating-block { display: flex; align-items: center; gap: 6px; margin: 10px 0; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-num { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; }
.rating-count { color: var(--text-muted); font-size: 0.85rem; }

/* ── Notification bar ── */
.notif-bar {
  background: var(--gradient-pink); text-align: center; padding: 10px 20px;
  font-size: 0.875rem; font-weight: 500; position: relative; z-index: 1001;
}
.notif-bar a { color: #fff; text-decoration: underline; font-weight: 700; }

/* ── Game Cards ── */
.game-card:hover { transform: translateY(-6px); border-color: rgba(255,45,142,0.6) !important; box-shadow: 0 12px 40px rgba(255,45,142,0.35); }
.game-card img { transition: transform 0.3s ease; }
.game-card:hover img { transform: scale(1.05); }

/* ── Utilities ── */
.text-pink { color: var(--pink); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-56 { margin-top: 56px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.divider { height: 1px; background: rgba(255,255,255,0.08); margin: 40px 0; }
.overflow-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Animations ── */
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:0.4 } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
@keyframes shimmer { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
.fade-in { animation: fadeInUp 0.7s ease both; }
.fade-in-2 { animation: fadeInUp 0.7s 0.15s ease both; }
.fade-in-3 { animation: fadeInUp 0.7s 0.3s ease both; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions .btn { display: none; }
  .header-mobile-cta { display: inline-flex !important; }
  .burger-btn { display: flex; }
  .section { padding: 56px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 90vh; }
  .hero-stats { gap: 20px; }
  .author-block { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-resp { text-align: left; max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 36px 24px; }
  .page-hero { padding: 100px 0 48px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .btn-lg { padding: 14px 28px; font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
