/* ============================================
   ROOPOKIES - Responsible Gambling Page
   Professional, Supportive, Accessible Design
   ============================================ */

/* CSS Variables */
:root {
  --bg-main: #060714;
  --bg-section: #0e1024;
  --bg-card: #171a36;
  --accent-primary: #f5a623;
  --accent-secondary: #b24bff;
  --accent-cta: #ff4b6e;
  --accent-success: #00d4aa;
  --accent-warning: #ff9500;
  --accent-help: #4ecdc4;
  --text-main: #ffffff;
  --text-muted: #a0a3b1;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-glow: rgba(245, 166, 35, 0.3);
  --gradient-primary: linear-gradient(135deg, var(--accent-primary), #ff8c42);
  --gradient-secondary: linear-gradient(135deg, var(--accent-secondary), #8b5cf6);
  --gradient-help: linear-gradient(135deg, var(--accent-help), #26a69a);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Ubuntu', 'Roboto', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 7, 20, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 997;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hamburger-menu span {
  width: 24px;
  height: 2.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
  position: absolute;
}

.hamburger-menu span:nth-child(1) {
  top: 12px;
}

.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
  bottom: 12px;
}

.hamburger-menu.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.hamburger-menu.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.logo {
  justify-self: center;
  grid-column: 2;
}

.logo img {
  height: 50px;
  width: auto;
}

.navbar-spacer {
  display: none;
}

.navbar-menu {
  display: none;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: rgba(6, 7, 20, 0.98);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.navbar-menu li {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

.navbar-menu li a {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 1rem;
  color: var(--text-main);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: var(--accent-primary);
  background: rgba(245, 166, 35, 0.1);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-main);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 2px solid var(--border-soft);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--accent-help);
  border: 2px solid var(--accent-help);
}

.btn-outline:hover {
  background: var(--accent-help);
  color: var(--bg-main);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.1rem;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.section--dark {
  background: var(--bg-section);
}

.section--warning {
  background: linear-gradient(135deg, rgba(255, 75, 110, 0.05) 0%, var(--bg-section) 100%);
  border-top: 2px solid rgba(255, 75, 110, 0.3);
}

.section--highlight {
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, var(--bg-section) 100%);
  border-top: 2px solid var(--accent-help);
  border-bottom: 2px solid var(--accent-help);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-main), var(--accent-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  background: rgba(14, 16, 36, 0.8);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.75rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent-primary);
}

.breadcrumb-item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb-item:last-child {
  color: var(--accent-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.rg-hero {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-main) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(78, 205, 196, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 70% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(78, 205, 196, 0.15);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent-help);
  margin-bottom: 1.5rem;
}

.badge-icon {
  font-size: 1.1rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-help) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   WHAT IS RESPONSIBLE GAMBLING SECTION
   ============================================ */

.what-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.what-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.what-core {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 12px;
}

.core-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.what-core p {
  color: var(--text-main);
  margin: 0;
  line-height: 1.7;
}

.what-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.principle-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.principle-item:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}

.principle-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.principle-item h4 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.principle-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   WHY IT MATTERS SECTION
   ============================================ */

.why-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.why-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--accent-help);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.why-card h4 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   TOOLS SECTION
   ============================================ */

.tools-subsection {
  margin-bottom: 4rem;
}

.tools-subsection:last-child {
  margin-bottom: 0;
}

.tools-subsection h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  text-align: center;
}

.tools-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.tools-intro p {
  color: var(--text-muted);
  line-height: 1.8;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tool-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tool-card h4 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.tool-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.tools-note {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
}

/* Cooling Content */
.cooling-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.cooling-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cooling-action {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.3);
  border-radius: 12px;
}

.action-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cooling-action p {
  color: var(--text-main);
  margin: 0;
  line-height: 1.7;
}

.cooling-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cooling-option {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.cooling-option:hover {
  border-color: var(--accent-help);
}

.option-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cooling-option h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.cooling-option p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* Entertainment Card */
.entertainment-card {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--bg-card);
  border: 2px solid var(--accent-primary);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.entertainment-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.entertainment-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.entertainment-content p:last-child {
  margin-bottom: 0;
  color: var(--text-main);
}

/* ============================================
   WARNING SIGNS SECTION
   ============================================ */

.warning-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.warning-list-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 75, 110, 0.3);
  border-radius: 16px;
  padding: 2rem;
}

.warning-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warning-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  color: var(--text-muted);
  position: relative;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.7;
}

.warning-list li:last-child {
  border-bottom: none;
}

.warning-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  color: var(--accent-cta);
}

.warning-action-card {
  background: var(--bg-card);
  border: 2px solid var(--accent-help);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.warning-action-card .action-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.warning-action-card h3 {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.warning-action-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================
   SELF-ASSESSMENT SECTION
   ============================================ */

.assessment-container {
  max-width: 900px;
  margin: 0 auto;
}

.assessment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2.5rem;
}

.assessment-questions {
  margin-bottom: 2rem;
}

.question-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: flex-start;
  transition: all 0.3s ease;
}

.question-item:last-child {
  border-bottom: none;
}

.question-item:hover {
  background: rgba(245, 166, 35, 0.05);
  border-radius: 8px;
  margin: 0 -0.5rem;
  padding: 1rem 0.5rem;
}

.question-number {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg-main);
  flex-shrink: 0;
}

.question-item p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  padding-top: 0.25rem;
}

.assessment-result {
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.assessment-result p {
  color: var(--text-main);
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   BLOCKING SOFTWARE SECTION
   ============================================ */

.software-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.software-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.software-card:hover {
  border-color: var(--accent-secondary);
  transform: translateY(-5px);
}

.software-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.software-card h3 {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.software-card > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.software-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.software-features span {
  color: var(--accent-success);
  font-size: 0.95rem;
}

/* ============================================
   ACTION STEPS SECTION
   ============================================ */

.action-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.action-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
}

.action-step:hover {
  border-color: var(--accent-primary);
  transform: translateX(10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg-main);
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   HELP RESOURCES SECTION
   ============================================ */

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.help-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.help-card:hover {
  border-color: var(--accent-help);
  transform: translateY(-5px);
}

.help-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, var(--bg-card) 100%);
  border: 2px solid var(--accent-help);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.help-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.help-card.featured .help-header {
  margin-bottom: 0;
}

.help-icon {
  font-size: 2.5rem;
}

.help-card h3 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin: 0 0 0.25rem 0;
}

.help-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(78, 205, 196, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent-help);
}

.help-card > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.help-card.featured > p {
  margin-bottom: 0;
}

.help-contact {
  margin-bottom: 1rem;
}

.help-card.featured .help-contact {
  margin-bottom: 0;
  text-align: right;
}

.contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.help-card.featured .contact-item {
  justify-content: flex-end;
}

.contact-label {
  color: var(--text-muted);
}

.contact-value {
  color: var(--text-main);
}

.contact-value.highlight {
  color: var(--accent-help);
  font-size: 1.5rem;
  font-weight: 700;
}

.help-note {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.help-note p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */

.commitment-content {
  max-width: 1000px;
  margin: 0 auto;
}

.commitment-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.commitment-intro p {
  color: var(--text-main);
  font-size: 1.1rem;
  line-height: 1.8;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.commitment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.commitment-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.commitment-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.commitment-card h4 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.commitment-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.commitment-promise {
  text-align: center;
  padding: 1.5rem;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 12px;
}

.commitment-promise p {
  color: var(--accent-help);
  font-size: 1.1rem;
  margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-primary);
}

.faq-item summary {
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 0 2rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-section) 0%, rgba(78, 205, 196, 0.05) 100%);
  border-top: 1px solid var(--border-soft);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.age-badge {
  width: 50px;
  height: 50px;
  background: var(--gradient-cta);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.responsible-badge {
  padding: 0.75rem 1.5rem;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid var(--accent-primary);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.cta-content > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.cta-contact {
  margin-bottom: 2rem;
}

.cta-phone {
  font-size: 1.1rem;
  color: var(--text-main);
}

.cta-phone a {
  color: var(--accent-help);
  font-size: 1.5rem;
  font-weight: 700;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-main);
  border-top: 1px solid var(--border-soft);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 3rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-age-badge {
  width: 60px;
  height: 60px;
  background: var(--gradient-cta);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.gamble-responsibly {
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .what-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .what-principles {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cooling-content {
    grid-template-columns: 1fr;
  }

  .warning-layout {
    grid-template-columns: 1fr;
  }

  .software-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-card.featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .help-card.featured .help-header {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .help-card.featured .help-contact {
    text-align: center;
  }

  .help-card.featured .contact-item {
    justify-content: center;
  }

  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 7, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 998;
    display: flex !important;
    list-style: none;
    margin: 0;
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-soft);
  }

  .navbar-menu li:last-child {
    border-bottom: none;
  }

  .navbar-menu li a {
    display: block;
    padding: 1.25rem 1rem;
    font-size: 1.1rem;
  }

  .rg-hero {
    padding: 4rem 0;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .what-principles {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .software-grid {
    grid-template-columns: 1fr;
  }

  .entertainment-card {
    flex-direction: column;
    text-align: center;
  }

  .action-step {
    flex-direction: column;
    text-align: center;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.85rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header h2 {
    font-size: 1.65rem;
  }

  .what-principles {
    grid-template-columns: 1fr;
  }

  .principle-item,
  .why-card,
  .tool-card,
  .cooling-option,
  .help-card,
  .commitment-card,
  .software-card {
    padding: 1.5rem;
  }

  .entertainment-card {
    padding: 1.5rem;
  }

  .action-step {
    padding: 1.5rem;
  }

  .assessment-card {
    padding: 1.5rem;
  }

  .question-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .question-number {
    margin: 0 auto;
  }
}

/* Accessibility */
*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
