/* ==========================================================================
   Color Palette & Typography Variables (Anime Theme)
   ========================================================================== */
:root {
    --primary-color: #4c1d95;   /* Deep Violet - Creative & Modern */
    --secondary-color: #f43f5e; /* Neon Coral - High-energy accent */
    --bg-color: #faf5ff;        /* Soft Lavender Light Gray - Easy readability */
    --text-color: #334155;      /* Slate Gray - High contrast text */
    --card-bg: #ffffff;         /* Clean White for content sections */
    --font-heading: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ==========================================================================
   Base Page Styles
   ========================================================================== */
body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

/* Header Banner */
header {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

header h1 {
    font-family: var(--font-heading);
    margin: 0 0 10px 0;
}

/* Main Layout Container */
main {
    max-width: 900px;
    margin: 0 auto;
}

/* Card Sections */
section {
    background-color: var(--card-bg);
    border-left: 5px solid var(--secondary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
}

ul, ol {
    padding-left: 20px;
}

li {
    margin-bottom: 0.5rem;
}

/* Hyperlinks */
a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #64748b;
}