/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; line-height: 1.7; color: #333; background: #f8f9fa; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
a { color: inherit; text-decoration: none; }

/* ===== VARIABLES LINEBET VERT 2025 ===== */
:root {
  --linebet-green-dark: #006400;    /* Vert foncé officiel */
  --linebet-green-light: #228B22;   /* Vert clair pour accents */
  --linebet-orange: #ff6b35;        /* Orange pour CTA (inchangé) */
  --linebet-white: #ffffff;
  --linebet-gray: #f8f9fa;
  --linebet-green-light-bg: #d4edda; /* Fond vert clair pour cartes */
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(135deg, var(--linebet-green-dark), var(--linebet-green-light));
  color: var(--linebet-white);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.site-header .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 70px; padding: 0 1.5rem;
}
.logo a { font-size: 1.6rem; font-weight: 700; color: var(--linebet-white); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  width: 28px; height: 3px; background: var(--linebet-white); border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Nav */
.nav-menu ul {
  display: flex; list-style: none; gap: 1rem;
}
.nav-menu a {
  color: var(--linebet-white); font-weight: 500; padding: 0.75rem 1.2rem;
  border-radius: 30px; transition: all 0.3s;
}
.nav-menu a:hover, .nav-menu a.active {
  background: rgba(255,255,255,0.2); transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 992px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; left: -100%; width: 300px; height: 100vh;
    background: var(--linebet-green-dark); padding: 6rem 1.5rem 2rem;
    transition: left 0.4s ease; box-shadow: 5px 0 25px rgba(0,0,0,0.3);
    overflow-y: auto; z-index: 1000;
  }
  .nav-menu.active { left: 0; }
  .nav-menu ul { flex-direction: column; gap: 0.8rem; }
  .nav-menu a { display: block; padding: 1rem 1.5rem; font-size: 1.1rem; border-radius: 12px; }
}

/* Overlay */
.overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden;
  transition: all 0.3s; z-index: 999;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ===== ARTICLE ===== */
.pro-article { background: var(--linebet-white); padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); margin-bottom: 2rem; }
.pro-article h1 { font-size: 2rem; color: var(--linebet-green-dark); margin-bottom: 1rem; }
.lead { font-size: 1.1rem; margin: 1rem 0; color: #444; }
.intro-cta, .cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin: 1.5rem 0; }
.download-grid, .bonus-table, .review-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0;
}
.download-card, .bonus-item {
  background: var(--linebet-gray); padding: 1.5rem; border-radius: 12px; text-align: center;
}
.feature-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin: 1.5rem 0;
}
.feature-list li { background: var(--linebet-green-light-bg); padding: 1rem; border-radius: 8px; font-weight: 500; }
.final-cta {
  background: linear-gradient(135deg, var(--linebet-green-light-bg), #d1e7dd); padding: 3rem 2rem;
  text-align: center; border-radius: 16px; margin: 3rem 0;
}

/* Buttons */
.btn {
  display: inline-block; padding: 0.8rem 1.6rem; border-radius: 50px;
  font-weight: bold; text-align: center; transition: all 0.3s; margin: 0.5rem;
}
.btn.primary { background: var(--linebet-orange); color: var(--linebet-white); }
.btn.secondary { background: var(--linebet-green-light); color: var(--linebet-white); }
.btn.large { padding: 1rem 2rem; font-size: 1.1rem; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a; color: #ccc; padding: 2rem 0; margin-top: 3rem; border-top: 1px solid #333;
}
.footer-container { text-align: center; }
.footer-links {
  display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.footer-links a { color: var(--linebet-orange); font-weight: 500; position: relative; }
.footer-links a::after {
  content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 50%;
  background: var(--linebet-orange); transition: width 0.3s; transform: translateX(-50%);
}
.footer-links a:hover::after { width: 100%; }
.disclaimer { font-size: 0.85rem; opacity: 0.7; }

/* Mobile */
@media (max-width: 768px) {
  .download-grid, .bonus-table, .review-grid { grid-template-columns: 1fr; }
  .pro-article h1 { font-size: 1.8rem; }
  .footer-links { flex-direction: column; gap: 1rem; }
}

/* ===== REGISTER PAGE - MÊME STYLE ===== */
.step-number {
  width: 40px; height: 40px; background: var(--linebet-orange); color: var(--linebet-white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: bold; font-size: 1.2rem; margin: 0 auto 1rem;
}
.download-card { text-align: center; }
.download-card h3 { margin: 1rem 0 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
  .download-grid { grid-template-columns: 1fr; }
}

/* ===== REGISTER LONG ARTICLE - MÊME STYLE ===== */
.step-number {
  width: 50px; height: 50px; background: var(--linebet-orange); color: var(--linebet-white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: bold; font-size: 1.4rem; margin: 0 auto 1rem;
}
.download-card { text-align: center; padding: 2rem; }
.download-card h3 { margin: 1rem 0 0.5rem; color: var(--linebet-green-dark); }

/* Responsive */
@media (max-width: 768px) {
  .download-grid { grid-template-columns: 1fr; }
  .step-number { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* ===== BONUS PAGE - MÊME STYLE ===== */
.claim-steps {
  list-style: none; counter-reset: step-counter;
  margin: 2rem 0; padding-left: 0;
}
.claim-steps li {
  counter-increment: step-counter; margin-bottom: 1rem;
  position: relative; padding-left: 2rem;
}
.claim-steps li::before {
  content: counter(step-counter); position: absolute; left: 0;
  background: var(--linebet-orange); color: var(--linebet-white); width: 30px; height: 30px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .bonus-table { grid-template-columns: 1fr; }
}

/* ===== PARTNERS PAGE - MÊME STYLE ===== */
.bonus-table { grid-template-columns: repeat(3, 1fr); }
.bonus-item h3 { color: var(--linebet-green-dark); }

/* Responsive */
@media (max-width: 768px) {
  .bonus-table { grid-template-columns: 1fr; }
}

/* ===== HOW-TO-INSTALL PAGE - MÊME STYLE ===== */
.req-item {
  background: var(--linebet-green-light-bg); padding: 1.5rem; border-radius: 12px; text-align: center;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }

/* Responsive */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ===== HOW-TO-INSTALL LONG ARTICLE - MÊME STYLE ===== */
.req-item {
  background: var(--linebet-green-light-bg); padding: 1.5rem; border-radius: 12px; text-align: center; font-size: 0.95rem;
}
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ===== FEATURES LONG ARTICLE - MÊME STYLE ===== */
.feature-item {
  background: var(--linebet-green-light-bg); padding: 1.5rem; border-radius: 12px; text-align: center;
}
.feature-item h3 { color: var(--linebet-green-dark); margin-bottom: 0.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }

/* Responsive */
@media (max-width: 768px) {
  .grid-3, .bonus-table { grid-template-columns: 1fr; }
}

/* ===== REVIEWS PAGE - MÊME STYLE ===== */
.rating-box {
  background: var(--linebet-green-light-bg); padding: 1.5rem; border-radius: 12px; text-align: center; margin: 2rem 0;
}
.stars { font-size: 2rem; color: var(--linebet-orange); }
.review-card {
  background: var(--linebet-gray); padding: 1.5rem; border-radius: 12px; margin-bottom: 1rem;
}
.review-card .stars { color: var(--linebet-orange); }
.review-card .author { font-style: italic; color: #666; font-size: 0.9rem; }
.review-grid { display: grid; gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2rem 0; }
.pros, .cons { background: var(--linebet-green-light-bg); padding: 1.5rem; border-radius: 12px; }
.pros h3 { color: var(--linebet-green-dark); }
.cons h3 { color: #c62828; }
.comparison-table table {
  width: 100%; border-collapse: collapse; margin: 2rem 0;
}
.comparison-table th, .comparison-table td {
  border: 1px solid #ddd; padding: 1rem; text-align: center;
}
.comparison-table th { background: var(--linebet-green-dark); color: var(--linebet-white); }

/* Responsive */
@media (max-width: 768px) {
  .review-grid, .grid-2 { grid-template-columns: 1fr; }
}

/* ===== ABOUT PAGE - MÊME STYLE ===== */
.timeline {
  list-style: none; padding-left: 0; margin: 2rem 0;
}
.timeline li {
  padding: 0.8rem 0; border-left: 3px solid var(--linebet-green-dark); padding-left: 1rem; position: relative;
}
.timeline li::before {
  content: ""; width: 12px; height: 12px; background: var(--linebet-orange); border-radius: 50%;
  position: absolute; left: -9px; top: 1.2rem;
}
.info-card {
  background: var(--linebet-green-light-bg); padding: 1.5rem; border-radius: 12px; text-align: center;
}
.info-card h3 { color: var(--linebet-green-dark); margin-bottom: 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ===== FAQ PAGE - MÊME STYLE ===== */
details {
  background: var(--linebet-gray); margin-bottom: 1rem; border-radius: 8px; padding: 0.5rem 1rem;
}
details summary {
  cursor: pointer; font-weight: bold; color: var(--linebet-green-dark);
}
details[open] {
  padding-bottom: 1rem;
}
details[open] summary {
  margin-bottom: 0.5rem;
}
.faq-grid {
  display: grid; gap: 0.5rem; margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ===== CONTACT PAGE - MÊME STYLE ===== */
.contact-card {
  background: var(--linebet-green-light-bg); padding: 1.5rem; border-radius: 12px; text-align: center;
}
.contact-card h3 { color: var(--linebet-green-dark); margin-bottom: 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
  .grid-3, .bonus-table { grid-template-columns: 1fr; }
}

/* ===== PRIVACY PAGE - MÊME STYLE ===== */
.update-date {
  background: #fff3e0; padding: 1rem; border-radius: 8px; text-align: center; margin: 1.5rem 0; font-weight: bold;
}

/* ===== TERMS PAGE - MÊME STYLE ===== */
.update-date {
  background: #fff3e0; padding: 1rem; border-radius: 8px; text-align: center; margin: 1.5rem 0; font-weight: bold;
}
