:root {
    --primary: #7289da;
    --secondary: #2c2f33;
    --accent: #ff4757;
    --bg: #090909;
    --text: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

header {
    background: rgba(0,0,0,0.8);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.logo { font-size: 1.5rem; font-weight: bold; }
.logo span { color: var(--primary); }

nav ul { display: flex; list-style: none; }
nav ul li { margin: 0 15px; }
nav ul li a { color: white; text-decoration: none; font-weight: 500; }

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
}

.container { max-width: 1100px; margin: 50px auto; padding: 20px; }
.section-title { text-align: center; color: var(--primary); font-size: 2.5rem; margin-bottom: 40px; }

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

.card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-10px); border-color: var(--primary); }

.card h3 { border-bottom: 2px solid var(--primary); padding-bottom: 10px; margin-bottom: 20px; }

.card ul { list-style: none; padding: 0; }
.card ul li { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 1.1rem; }
.card ul li span { font-weight: bold; color: var(--primary); }

.highlight { border: 1px solid var(--accent); }

.cta { text-align: center; padding: 80px 20px; background: #111; }
.btn-discord {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
}

footer { text-align: center; padding: 20px; color: #666; font-size: 0.9rem; }

.checkout-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid var(--primary);
}

#service-select {
    width: 100%;
    padding: 15px;
    background: #2c2f33;
    color: white;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    cursor: pointer;
}

#service-select optgroup {
    background: #1a1a1a;
    font-weight: bold;
    color: var(--primary);
}

#paypal-button-container {
    margin-top: 20px;
}

.btn-order {
    width: 100%;
    padding: 18px;
    background: #7289da; /* Couleur Discord */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

.btn-order:hover {
    background: #5b73c7;
    transform: scale(1.02);
}

.btn-order:active {
    transform: scale(0.98);
}