/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Global Styles */
* {
    font-family: 'Inter', sans-serif;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}

/* Placeholder Styling */
::placeholder {
    color: rgb(200, 200, 200);
    opacity: 1;
}

/* ===================== */
/* 🔥 RED NEON GLOW */
/* ===================== */
.gradient-glow {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.35);
}

/* ===================== */
/* 🔴 BUTTONS */
/* ===================== */
.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(220, 38, 38, 0.6);
}

/* ===================== */
/* 🟥 FEATURE CARD */
/* ===================== */
.feature-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
    transform: translateY(-5px);
}

/* ===================== */
/* 📊 STAT CARD */
/* ===================== */
.stat-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.8), rgba(0, 0, 0, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===================== */
/* 🧠 SECTION TITLE */
/* ===================== */
.section-title {
    background: linear-gradient(135deg, #ffffff 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================== */
/* 🔢 STEP NUMBER */
/* ===================== */
.step-number {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
}

/* ===================== */
/* 📜 COMMAND CARD */
/* ===================== */
.command-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.85), rgba(0, 0, 0, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.command-card:hover {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.25);
}

/* ===================== */
/* 🏷️ CATEGORY BADGE */
/* ===================== */
.category-badge {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

/* ===================== */
/* 🚨 PERMISSION BADGE */
/* ===================== */
.permission-badge {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.6);
}
