/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

/* Variables de couleurs basées sur ton logo */
:root {
    --bg-dark: #0a0412;
    --bg-purple-gradient: linear-gradient(135deg, #0f051d 0%, #1c093a 100%);
    --accent-red: #ff1e27;
    --accent-red-hover: #cc141c;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 30, 39, 0.2);
}

body {
    background: var(--bg-purple-gradient);
    color: var(--text-white);
    background-attachment: fixed;
}

span {
    color: var(--accent-red);
}

/* Navbar */
header {
    background-color: rgba(10, 4, 18, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 30, 39, 0.1);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-red);
}

.btn-nav {
    background-color: var(--accent-red);
    padding: 8px 18px;
    border-radius: 5px;
    transition: background 0.3s !important;
}

.btn-nav:hover {
    background-color: var(--accent-red-hover);
    color: white !important;
}

/* Section Accueil / Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px 20px;
}

.main-logo {
    max-width: 280px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 30, 39, 0.4));
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-red);
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 5px 15px rgba(255, 30, 39, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-3px);
}

/* Catalogue */
.catalog-section {
    max-width: 900px; /* Réduit car il y a 2 produits majeurs maintenant */
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 2.3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-gray);
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(5px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(255, 30, 39, 0.15);
    border-color: var(--accent-red);
}

/* Cartes Thématiques */
.premium-card {
    border-color: var(--accent-red);
    background: linear-gradient(180deg, rgba(255,30,39,0.06) 0%, rgba(255,255,255,0.01) 100%);
}

.gaming-card {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
}

.badge-best, .badge-gaming {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
}
.badge-best { background-color: var(--accent-red); color: #fff; }
.badge-gaming { background-color: #5865F2; color: #fff; } /* Couleur Discord pour le côté gaming */

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.duration {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.price {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.old-price {
    font-size: 1.1rem;
    color: #555;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 10px;
}

.features {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
}

.features li {
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.features li::before {
    content: "✓ ";
    color: var(--accent-red);
    font-weight: bold;
    margin-right: 5px;
}

/* Boutons produits */
.btn-product {
    display: block;
    border: 1px solid var(--accent-red);
    color: var(--text-white);
    text-decoration: none;
    padding: 14px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.3s, border-color 0.3s;
}

.btn-product.highlight {
    background-color: var(--accent-red);
}

.btn-product.highlight:hover {
    background-color: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
}

.btn-product.gaming-btn {
    border-color: #5865F2;
}

.btn-product.gaming-btn:hover {
    background-color: #5865F2;
}

/* Pourquoi nous */
.features-section {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 8px 20px 80px 20px;
    text-align: center;
}

.features-section h2 { margin: 60px 0 40px 0; }

.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    max-width: 330px;
    transition: background 0.3s;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.04);
}

.feature-box .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact / Discord */
.contact-section {
    text-align: center;
    padding: 100px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section p {
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
}

.btn-contact {
    padding: 16px 35px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.5);
}

.discord { background-color: #5865F2; }

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
    font-size: 0.85rem;
}

/* Configuration Mobile */
@media (max-width: 768px) {
    nav { display: none; }
    .hero-content h1 { font-size: 2rem; }
    .products-grid { grid-template-columns: 1fr; }
}
