 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     background: #fff;
     color: #0f172a;
 }

 /* ── HERO ── */
 .hero {
     background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
     padding: 6rem 1.5rem 4rem;
     text-align: center;
     color: white;
 }

 .hero h1 {
     font-size: clamp(2rem, 5vw, 3.5rem);
     font-weight: 800;
     margin-bottom: 1rem;
     letter-spacing: -0.03em;
 }

 .hero p {
     font-size: 1.1rem;
     opacity: 0.9;
     margin-bottom: 2rem;
 }

.search-bar {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

/* IMPORTANT: cible le SVG généré par lucide */
.search-bar svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #94a3b8;
}

.search-bar input {
    width: 100%;
    padding: 12px 16px 12px 42px; /* espace pour l’icône */
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    outline: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    color: #0f172a;
}

 /* ── FILTERS ── */
 .filters {
     max-width: 1280px;
     margin: 0 auto;
     padding: 1.5rem 1.5rem;
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     border-bottom: 1px solid #e2e8f0;
 }

 .filter-btn {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     padding: 0.45rem 1rem;
     border-radius: 999px;
     border: 1px solid #cbd5e1;
     background: white;
     font-size: 0.85rem;
     font-weight: 500;
     color: #475569;
     cursor: pointer;
     transition: all 0.2s;
 }

 .filter-btn:hover {
     border-color: #94a3b8;
 }

 .filter-btn.active {
     background: #0f172a;
     color: white;
     border-color: #0f172a;
 }

 /* ── SECTIONS ── */
 .sections {
     max-width: 1280px;
     margin: 0 auto;
     padding: 3rem 1.5rem;
 }

 .section-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 1.25rem;
 }

 .section-header h2 {
     font-size: 1.5rem;
     font-weight: 700;
 }

 .see-all-btn {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     background: #0f172a;
     color: white;
     border: none;
     border-radius: 999px;
     padding: 0.4rem 1rem;
     font-size: 0.8rem;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.2s;
 }

 .see-all-btn:hover {
     background: #1e293b;
 }

 .see-all-btn i {
     width: 14px;
     height: 14px;
 }

 /* ── BRAND GRID ── */
 .brand-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1rem;
     margin-bottom: 3rem;
 }

 @media (min-width: 480px) {
     .brand-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (min-width: 768px) {
     .brand-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .brand-grid {
         grid-template-columns: repeat(6, 1fr);
     }
 }

 .brand-card {
     cursor: pointer;
     transition: transform 0.2s;
 }

 .brand-card:hover {
     transform: translateY(-4px);
 }

 .brand-card .card-face {
     border-radius: 16px;
     height: 112px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     font-weight: 800;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     transition: box-shadow 0.2s;
     overflow: hidden;
 }

 .brand-card:hover .card-face {
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
 }

 .brand-card p {
     margin-top: 0.6rem;
     font-size: 0.8rem;
     font-weight: 600;
     color: #334155;
 }

 /* ── BRAND COLORS ── */
 .bg-apple {
     background: linear-gradient(135deg, #fce7f3, #bfdbfe, #bbf7d0);
     color: #0f172a;
 }

 .bg-google {
     background: #fff;
     border: 1px solid #e2e8f0;
     color: #0f172a;
 }

 .bg-netflix {
     background: linear-gradient(180deg, #b91c1c, #000);
     color: #fff;
 }

 .bg-spotify {
     background: linear-gradient(135deg, #4ade80, #16a34a);
     color: #fff;
 }

 .bg-twitch {
     background: #9146ff;
     color: #fff;
 }

 .bg-kobo {
     background: #bf0000;
     color: #fff;
 }

 .bg-amazon {
     background: #000;
     color: #f97316;
 }

 .bg-uber {
     background: #000;
     color: #fff;
 }

 .bg-zalando {
     background: #ff6900;
     color: #fff;
 }

 .bg-fnac {
     background: #e4a800;
     color: #000;
 }

 .bg-mango {
     background: #fff;
     border: 1px solid #e2e8f0;
     color: #0f172a;
 }

 .bg-primark {
     background: #00a0df;
     color: #fff;
 }

 .bg-ps {
     background: #fff;
     border: 1px solid #e2e8f0;
     color: #003087;
 }

 .bg-xbox {
     background: #107c10;
     color: #fff;
 }

 .bg-steam {
     background: #1b2838;
     color: #c7d5e0;
 }

 .bg-nintendo {
     background: #e60012;
     color: #fff;
 }

 .bg-roblox {
     background: #000;
     color: #fff;
 }

 .bg-ea {
     background: #ff4747;
     color: #fff;
 }

 /* ── TRUST SECTION ── */
 .trust {
     background: #f8fafc;
     padding: 4rem 1.5rem;
 }

 .trust-inner {
     max-width: 1280px;
     margin: 0 auto;
 }

 .trust h2 {
     text-align: center;
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 2.5rem;
 }

 .trust-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1.25rem;
 }

 @media (min-width: 768px) {
     .trust-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }

 .trust-card {
     background: white;
     border-radius: 16px;
     padding: 1.5rem;
     text-align: center;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .trust-icon {
     font-size: 2.2rem;
     margin-bottom: 0.75rem;
 }

 .trust-card h3 {
     font-size: 0.95rem;
     font-weight: 700;
     margin-bottom: 0.4rem;
 }

 .trust-card p {
     font-size: 0.8rem;
     color: #64748b;
     line-height: 1.5;
 }

 /* ── HIDDEN ── */
 .hidden {
     display: none !important;
 }