/* ============================================
   REDLINE PVP - STYLE PRINCIPAL
   Variables & Base — copie exacte du site
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #161622;
    --bg-card-hover: #1a1a2e;
    --bg-input: #1a1a28;
    --border-color: #2a2a3e;
    --red-primary: #ff1a1a;
    --red-light: #ff4444;
    --red-dark: #cc0000;
    --red-glow: rgba(255, 26, 26, 0.3);
    --red-glow-strong: rgba(255, 26, 26, 0.6);
    --purple-accent: #8b5cf6;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --green: #22c55e;
    --orange: #f59e0b;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --gradient-red: linear-gradient(135deg, #ff1a1a, #cc0000);
    --gradient-card: linear-gradient(135deg, #161622, #1a1a2e);
    --gradient-hero: linear-gradient(180deg, rgba(10,10,15,0) 0%, rgba(10,10,15,1) 100%);
    --shadow-red: 0 0 30px rgba(255, 26, 26, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-primary); }

/* Discord Login Button */
.btn-discord-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: #5865F2;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}
.btn-discord-login:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.45);
}

.title-red { color: var(--red-primary); }
.title-white { color: var(--text-primary); }

/* Notifications */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 99999;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
}
.notification.show { transform: translateY(0); opacity: 1; }
.notification-success { background: rgba(34,197,94,0.15); color: var(--green); border: 1px solid rgba(34,197,94,0.3); backdrop-filter: blur(12px); }
.notification-error { background: rgba(255,26,26,0.15); color: var(--red-light); border: 1px solid rgba(255,26,26,0.3); backdrop-filter: blur(12px); }
.notification-info { background: rgba(59,130,246,0.15); color: var(--blue); border: 1px solid rgba(59,130,246,0.3); backdrop-filter: blur(12px); }
