/* Online Casino Ireland PayPal 2026 — layout #1 vertical stack cards */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --bg-deep: #0f1419;
  --bg-card: #171e28;
  --bg-card-hover: #1d2633;
  --bg-inset: #121820;
  --rose: #e11d48;
  --rose-dark: #be123c;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --text: #e8ecf1;
  --text-muted: #8b9aab;
  --border: rgba(59, 130, 246, 0.22);
  --border-rose: rgba(225, 29, 72, 0.35);
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --max-width: 920px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.07) 1px, transparent 0);
  background-size: 24px 24px;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body.has-sticky-cta {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--rose);
}

a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

h1, h2, h3, .section-title, .logo {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
}

/* Update bar */
.update-bar {
  background: linear-gradient(90deg, var(--rose-dark), var(--blue-dark));
  color: #fff;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 16px;
  letter-spacing: 0.03em;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 20, 25, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.logo {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 28px;
  height: 28px;
}

.logo span {
  color: var(--rose);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(15, 20, 25, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px;
}

.main-nav.is-open {
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(225, 29, 72, 0.12);
  color: var(--rose);
}

/* Hero */
.hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("images/hero.webp") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(225, 29, 72, 0.18) 0%, transparent 45%),
    linear-gradient(180deg, rgba(15, 20, 25, 0.45) 0%, rgba(15, 20, 25, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 44px 16px 36px;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(1.5rem, 5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
  color: var(--text-muted);
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
}

/* Trust bar */
.trust-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
}

.trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Showcase — vertical stack */
.showcase {
  padding: 36px 0 44px;
}

.section-title {
  font-size: clamp(1.25rem, 3.5vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.section-title span {
  color: var(--rose);
}

.stack-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.stack-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow);
  border-color: rgba(59, 130, 246, 0.35);
}

.stack-card--featured {
  border-color: var(--border-rose);
  box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.2);
}

.stack-card__ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.stack-card__inner {
  display: flex;
  flex-direction: column;
}

.stack-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--blue-dark), var(--blue));
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  padding: 10px;
  min-height: 44px;
}

.stack-card--featured .stack-rank {
  background: linear-gradient(180deg, var(--rose-dark), var(--rose));
}

.stack-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.stack-card__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.logo-link {
  flex-shrink: 0;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.logo-link:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.25);
}

.casino-logo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--border-rose);
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.logo-link:hover .casino-logo {
  border-color: var(--rose);
}

.stack-card__info {
  flex: 1;
  min-width: 0;
}

.card-name {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.perks li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.perks li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 0.5rem;
  top: 6px;
}

.stack-bonus-panel {
  background: var(--bg-inset);
  border-top: 1px solid rgba(139, 154, 171, 0.12);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.bonus-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.bonus-value {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--rose);
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.3;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 12px 24px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
}

.btn-cta:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* SEO content */
.seo-content {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.seo-content h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--blue);
}

.seo-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.9375rem;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

/* FAQ teaser */
.faq-teaser {
  padding: 40px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-teaser h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(139, 154, 171, 0.15);
  padding: 14px 0;
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 6px;
  color: var(--text);
}

.faq-answer {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.faq-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.9375rem;
}

/* Responsible gambling */
.responsible {
  padding: 32px 0;
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--rose);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--rose);
  margin-bottom: 12px;
  font-family: "Bricolage Grotesque", sans-serif;
}

.responsible p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.responsible a {
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: #0a0e13;
  border-top: 1px solid var(--border);
  padding: 32px 0 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-nav a:hover {
  color: var(--blue);
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.5;
}

.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(15, 20, 25, 0.97);
  border-top: 1px solid var(--border-rose);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .btn-cta {
  display: block;
  width: 100%;
}

/* Subpages */
.page-hero {
  padding: 40px 0 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.page-content {
  padding: 32px 0 48px;
}

.page-content h2 {
  font-size: 1.125rem;
  color: var(--rose);
  margin: 28px 0 12px;
  font-family: "Bricolage Grotesque", sans-serif;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p,
.page-content li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 12px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-accordion-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  padding: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-accordion-btn::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-accordion-item.is-open .faq-accordion-btn::after {
  content: "−";
}

.faq-accordion-body {
  display: none;
  padding: 0 16px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-accordion-item.is-open .faq-accordion-body {
  display: block;
}

/* Contact form */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Tablet+ — 3-zone stack row */
@media (min-width: 768px) {
  body.has-sticky-cta {
    padding-bottom: 0;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    background: none;
    border: none;
    padding: 0;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 4px;
  }

  .main-nav a {
    padding: 8px 14px;
    font-size: 0.875rem;
  }

  .trust-items {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }

  .stack-card__inner {
    flex-direction: row;
    align-items: stretch;
  }

  .stack-rank {
    width: 56px;
    min-height: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1.375rem;
    padding: 20px 0;
    flex-shrink: 0;
  }

  .stack-card__body {
    flex: 1;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
  }

  .stack-card__top {
    flex: 1;
    align-items: center;
  }

  .stack-bonus-panel {
    width: 200px;
    flex-shrink: 0;
    border-top: none;
    border-left: 1px solid rgba(139, 154, 171, 0.12);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }

  .stack-bonus-panel .btn-cta {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .stack-bonus-panel {
    width: 220px;
  }

  .hero {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }
}
