/*
 * Custom Stylesheet for Infinite Wrath
 * Theme: Dark (based on duo image)
 */

/* Import a gaming-style font for headers and a clean font for body text */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Inter:wght@400;500;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    color: #d1d5db; /* A lighter gray for readable text */
    background-color: #111827; /* A very dark blue-gray, like a shadow */
}

/* --- Custom Classes for the Gaming Theme --- */
.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

/* Add a subtle text shadow for a "glow" effect */
.text-glow-red {
    color: #f87171; /* A slightly softer red to match the image accent */
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.7);
}

/* Replaced green with a clean white for Tig, matching his jacket */
.text-glow-white {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(229, 231, 235, 0.5);
}


/* Custom card background */
.card-bg {
    background-color: #1f2937; /* A lighter dark gray for contrast */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

