/* Modern, High-Performance Design System for sitesdepokerenligne.com */
:root {
  --primary-color: #f60707;
  --primary-gradient: linear-gradient(180deg, #f60707 0%, #972c4c 100%);
  --primary-hover: linear-gradient(180deg, #ff1e1e 0%, #b33359 100%);
  --secondary-color: #1e90ff;
  --bg-dark: #000000;
  --bg-header: #0a0a0c;
  --bg-card-light: #ffffff;
  --bg-card-alt: #f8f9fa;
  --bg-card-hover: #f1f3f5;
  --text-main: #212529;
  --text-muted: #6c757d;
  --text-light: #ffffff;
  --accent-gold: #f5af19;
  --accent-green: #00bd1e;
  --border-color: #e9ecef;
  --font-heading: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: #0f1115;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/background.webp');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.d-none { display: none !important; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Header Component */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-container img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: #e2e8f0;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid var(--secondary-color);
}

/* Mobile Navigation Hamburger */
.mobile-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #111318;
  z-index: 999;
  padding: 100px 25px 30px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: #cbd5e1;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Main Content Padding for Fixed Header */
main#main-content {
  margin-top: 100px;
  padding-bottom: 50px;
}

/* Premium Centered Hero Showcase Section */
.showcase {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(24, 37, 66, 0.92) 50%, rgba(15, 23, 42, 0.92) 100%);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 32px 25px;
  margin-bottom: 18px;
  border: 1px solid rgba(245, 175, 25, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
}

.showcase-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f5af19;
  background: rgba(245, 175, 25, 0.1);
  border: 1px solid rgba(245, 175, 25, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.showcase-badge .poker-suit.red { color: #ef4444; }
.showcase-badge .poker-suit.black { color: #cbd5e1; }

.showcase-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.25;
}

.update-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(30, 144, 255, 0.12);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(30, 144, 255, 0.3);
  margin-bottom: 18px;
}

.tags-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.tag-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.tag-item img {
  width: 18px;
  height: auto;
  border-radius: 2px;
}

/* Advertiser Disclosure (Avis de l'annonceur) Component */
.disclosure-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.btn-disclosure {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
  text-decoration: underline;
}

.btn-disclosure:hover {
  color: #ffffff;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  color: #1e293b;
  width: 100%;
  max-width: 550px;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-close-modal:hover {
  color: #0f172a;
}

.modal-body p {
  font-size: 13px;
  line-height: 1.6;
  color: #334155;
}

/* Comparison Cards Table */
.comparison-table-wrapper {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  margin-bottom: 40px;
}

.table-header {
  display: grid;
  grid-template-columns: 60px 1.5fr 2fr 1.2fr 1fr 1.5fr;
  background: #272a30;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 14px 10px;
  letter-spacing: 0.5px;
}

.table-row {
  display: grid;
  grid-template-columns: 60px 1.5fr 2fr 1.2fr 1fr 1.5fr;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
  transition: background 0.2s ease;
  position: relative;
  min-height: 110px;
  padding: 10px 0;
}

.table-row:nth-child(even) {
  background: #f8f9fa;
}

.table-row:hover {
  background: #f1f5f9;
}

/* Cells styling */
.cell-rank {
  font-size: 20px;
  font-weight: 800;
  color: #475569;
  position: relative;
}

/* Ribbon for Rank #1 */
.special-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #00bd1e, #19e800);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-bottom-right-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cell-logo {
  padding: 10px;

}

.cell-logo img {
  max-width: 140px;
  max-height: 65px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.cell-bonus {
  padding: 10px 15px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.cell-rating .stars-wrapper {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 4px;
}

.cell-rating .rating-num {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.cell-score {
  font-size: 32px;
  font-weight: 800;
  color: #062a61;
}

.cell-cta {
  padding: 10px 15px;
}

.btn-visit {
  display: block;
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  padding: 12px 10px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(246, 7, 7, 0.3);
  transition: all 0.2s ease;
  border: none;
}

.btn-visit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(246, 7, 7, 0.4);
}

/* Content SEO Section */
.seo-article {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 10px;
  padding: 35px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.seo-article h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 25px 0 12px;
}

.seo-article h2:first-child {
  margin-top: 0;
}

.seo-article p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Footer Section */
footer {
  background: #090a0d;
  color: #94a3b8;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-nav a {
  font-size: 14px;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

/* Separate Responsible Gambling Badges Block */
.badges-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
  text-align: center;
}

.badges-block-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 15px;
}

.badges-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.badges-grid a, .badges-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.badges-grid a:hover {
  transform: translateY(-3px);
}

.badges-grid img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: filter 0.2s ease;
  filter: brightness(0.95);
}

.badges-grid a:hover img {
  filter: brightness(1.15);
}

/* Footer Legal & Disclaimers */
.footer-disclaimer {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
}

.footer-disclaimer p {
  margin-bottom: 10px;
}

.helpline-highlight {
  color: #f87171;
  font-weight: 700;
}

.copyright {
  margin-top: 15px;
  color: #475569;
  font-size: 12px;
}

/* Responsive Media Queries */
/* Ultra-Compact Mobile Layout for Above-The-Fold Card Visibility */
@media (max-width: 991px) {
  .nav-menu { display: none; }
  .mobile-hamburger { display: flex; }
  
  .main-header {
    height: 55px;
  }
  
  .logo-container img {
    height: 38px;
  }
  
  main#main-content {
    margin-top: 60px;
    padding-bottom: 30px;
  }
  
  /* Compact & Beautiful Hero Showcase on Mobile */
  .showcase {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border: 1px solid rgba(30, 144, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 10px 14px;
    margin-bottom: 8px;
    border-radius: 10px;
    text-align: center;
  }
  
  .showcase-badge {
    font-size: 9px;
    padding: 2px 8px;
    margin-bottom: 4px;
    letter-spacing: 1px;
  }
  
  .showcase-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.25;
    text-align: center;
    letter-spacing: 0.3px;
  }
  
  .showcase-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .update-tag {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 0;
    gap: 4px;
    background: rgba(30, 144, 255, 0.15);
    border: 1px solid rgba(30, 144, 255, 0.35);
    color: #60a5fa;
    padding: 2px 8px;
    border-radius: 12px;
  }
  
  .bullet-list {
    display: none;
  }
  
  .tags-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
  }
  
  .tag-item {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .showcase-banner-img {
    display: none;
  }
  
  /* Compact Disclosure Bar */
  .disclosure-bar {
    margin-bottom: 4px;
  }
  
  .btn-disclosure {
    font-size: 10px;
  }
  
  /* Ultra-Compact Streamlined Table Cards on Mobile */
  .comparison-table-wrapper {
    background: transparent;
    box-shadow: none;
    margin-bottom: 20px;
  }
  
  .table-header {
    display: none;
  }
  
  .table-row {
    display: grid;
    grid-template-columns: 85px 1fr 95px;
    grid-template-rows: auto auto;
    grid-template-areas: 
      "logo bonus cta"
      "rating rating cta";
    align-items: center;
    gap: 4px 10px;
    padding: 8px 10px;
    margin-bottom: 6px;
    border-radius: 8px;
    background: #ffffff !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-height: unset;
    position: relative;
  }
  
  .cell-rank {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 11px;
    font-weight: 800;
    background: #0f172a;
    color: #ffffff;
    padding: 1px 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 7px;
  }
  
  .special-ribbon {
    font-size: 8px;
    padding: 1px 5px;
  }
  
  .cell-logo {
    grid-area: logo;
    padding: 2px;
  }
  
  .cell-logo img {
    max-width: 80px;
    max-height: 38px;
  }
  
  .cell-bonus {
    grid-area: bonus;
    padding: 0;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 700;
    color: #0f172a;
    text-align: left;
  }
  
  .cell-rating {
    grid-area: rating;
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
  }
  
  .cell-rating .stars-wrapper {
    font-size: 11px;
    margin-bottom: 0;
  }
  
  .cell-rating .rating-num {
    font-size: 10px;
  }
  
  .cell-score {
    display: none;
  }
  
  .cell-cta {
    grid-area: cta;
    padding: 0;
    width: 100%;
  }
  
  .btn-visit {
    max-width: 100%;
    padding: 10px 4px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 6px;
    line-height: 1;
  }
}


/* Special Ticket Row Banner Component */
.ticket-offer-section {
  margin-bottom: 35px;
}

.ticketRow-wrapper {
  display: grid;
  grid-template-columns: 70px 1fr;
  position: relative;
  border-radius: 12px;
  background: linear-gradient(135deg, #1b1035 0%, #2a1b54 50%, #150a2b 100%);
  border: 1px solid rgba(245, 175, 25, 0.35);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(42, 27, 84, 0.5);
}

.ticketRow-wrapper a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.ticketRow-wrapper .special {
  position: relative;
  background: linear-gradient(180deg, #f5af19 0%, #d97706 100%);
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticketRow-wrapper .special span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  transform: translate(-50%, -50%) rotate(270deg);
  letter-spacing: 2.5px;
  white-space: nowrap;
}

.ticketRow-wrapper .ticketRow {
  text-align: center;
  border-radius: 8px;
  border: 2px dashed rgba(245, 175, 25, 0.6);
  padding: 22px 20px;
  margin: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.ticketRow-wrapper:hover .ticketRow {
  border-color: #f5af19;
  background: rgba(245, 175, 25, 0.05);
}

.ticketRow-wrapper .ticketRow .grid {
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.ticketRow-wrapper .ticketRow .grid .bonus img {
  display: block;
  margin: 0 auto 8px;
  max-height: 55px;
  width: auto;
  max-width: 180px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.ticketRow-wrapper .ticketRow .grid .bonus div {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.ticketRow-wrapper .ticketRow .grid .bonus div strong {
  color: #f5af19;
}

.ticketRow-wrapper .ticketRow .grid button {
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: 18px;
  padding: 14px 20px;
  width: 100%;
  max-width: 180px;
  border: 0;
  border-radius: 6px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(246, 7, 7, 0.4);
}

.ticketRow-wrapper:hover .ticketRow .grid button {
  background: var(--primary-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(246, 7, 7, 0.6);
}

@media (max-width: 991px) {
  .ticketRow-wrapper {
    grid-template-columns: 50px 1fr;
  }
  .ticketRow-wrapper .special span {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  .ticketRow-wrapper .ticketRow .grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .ticketRow-wrapper .ticketRow .grid .bonus div {
    font-size: 18px;
  }
  .ticketRow-wrapper .ticketRow .grid button {
    margin: 0 auto;
  }
}


/* Premium Contact Page Component */
.contact-wrapper {
  margin-top: 30px;
}

.contact-hero {
  text-align: center;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 20px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 35px;
  margin-bottom: 45px;
}

.info-cards-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 7, 7, 0.4);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(246, 7, 7, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.info-content p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

.support-notice-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  padding: 20px;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
}

.support-notice-card h4 {
  font-family: var(--font-heading);
  color: #f87171;
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.form-card h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-styled {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.input-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-field-group label {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
}

.input-field-group input,
.input-field-group select,
.input-field-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.input-field-group select option {
  background: #0f172a;
  color: #ffffff;
}

.input-field-group input:focus,
.input-field-group select:focus,
.input-field-group textarea:focus {
  outline: none;
  border-color: #f60707;
  box-shadow: 0 0 0 3px rgba(246, 7, 7, 0.2);
}

.checkbox-custom {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 5px;
}

.checkbox-custom input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #f60707;
  cursor: pointer;
}

.checkbox-custom label {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}

.btn-send-message {
  padding: 14px 28px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(246, 7, 7, 0.4);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-send-message:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(246, 7, 7, 0.6);
}

.faq-section {
  background: rgba(15, 23, 42, 0.7);
  border-radius: 12px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-section h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: rgba(30, 41, 59, 0.5);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #f5af19;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* Accessibility (a11y) & Performance Optimizations */
.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: #f5af19;
  color: #0f172a;
  padding: 10px 16px;
  font-weight: 800;
  border-radius: 6px;
  z-index: 10000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 10px;
  outline: 3px solid #ffffff;
}

/* Keyboard Navigation Focus Indicator */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f5af19 !important;
  outline-offset: 3px !important;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* Cookie Consent Banner Component */
.cookie-banner {
  position: fixed;
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 950px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(245, 175, 25, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-radius: 12px;
  padding: 16px 24px;
  z-index: 99999;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  bottom: 20px;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.cookie-text p {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.45;
  margin: 0;
}

.cookie-text a {
  color: #60a5fa;
  text-decoration: underline;
  margin-left: 4px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 10px 18px;
  background: var(--primary-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(246, 7, 7, 0.4);
  transition: all 0.2s ease;
}

.btn-cookie-accept:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-cookie-refuse {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cookie-refuse:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

@media (max-width: 768px) {
  .cookie-banner.show {
    bottom: 10px;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
