/**
 * PhiLang Design System
 * Ancient Codex meets Digital Oracle
 *
 * Shared stylesheet for cohesive design across all pages
 */

/* ═══════════════════════════════════════════════════════════════════════════
   CSS VARIABLES — Design Tokens
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Core Palette - Void to Bone */
    --void: #0a0a0c;
    --abyss: #0f0e13;
    --obsidian: #16141c;
    --smoke: #1e1b27;
    --ash: #2a2636;
    --stone: #3d3750;
    --silver: #9992a8;
    --pearl: #d4d0e0;
    --bone: #f0ede6;

    /* Accent Colors */
    --gold: #c9a227;
    --amber: #e8b923;
    --flame: #f4c430;
    --ember: #8b6914;

    /* Indigo/Violet Spectrum */
    --indigo-deep: #3730a3;
    --indigo-glow: #6366f1;
    --violet-mist: #8b5cf6;

    /* Tradition Colors */
    --tradition-phenomenology: #6366f1;
    --tradition-spinozism: #f59e0b;
    --tradition-buddhism: #10b981;
    --tradition-process: #3b82f6;
    --tradition-poststructuralism: #ec4899;
    --tradition-hegelianism: #8b5cf6;
    --tradition-heideggerianism: #ef4444;
    --tradition-wittgenstein-early: #06b6d4;
    --tradition-wittgenstein-late: #14b8a6;
    --tradition-kantianism: #a855f7;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Crimson Pro', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--void);
    color: var(--pearl);
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.7;
}

/* Grain Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 10000;
}

/* Cosmic Background */
.cosmic-bg {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse 50% 30% at 20% 90%, rgba(201, 162, 39, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, var(--void) 0%, var(--abyss) 30%, var(--obsidian) 70%, var(--void) 100%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LUMINOUS ACCENT BAR
   ═══════════════════════════════════════════════════════════════════════════ */

.luminous-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--ember) 20%,
        var(--gold) 35%,
        var(--amber) 50%,
        var(--gold) 65%,
        var(--ember) 80%,
        transparent
    );
    z-index: 10001;
    box-shadow:
        0 0 20px var(--gold),
        0 0 40px rgba(201, 162, 39, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: var(--font-mono); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.philang-nav {
    background: rgba(15, 14, 19, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 55, 80, 0.3);
    padding: 0.75rem 1.5rem;
    position: fixed;
    top: 2px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.philang-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.philang-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-normal);
}

.philang-logo:hover {
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
}

.philang-logo-phi {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold);
}

.philang-logo-text {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--pearl);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    position: relative;
    color: var(--silver);
    text-decoration: none;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: color var(--transition-normal);
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--bone);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════════════
   API STATUS INDICATOR
   ═══════════════════════════════════════════════════════════════════════════ */

.api-status-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(22, 20, 28, 0.6);
    border: 1px solid rgba(61, 55, 80, 0.4);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
}

.status-orb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    transition: all var(--transition-slow);
}

.status-orb.connected {
    background: var(--gold);
    box-shadow:
        0 0 10px var(--gold),
        0 0 20px rgba(201, 162, 39, 0.5);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 15px var(--gold), 0 0 30px rgba(201, 162, 39, 0.5); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ember) 0%, var(--gold) 100%);
    color: var(--void);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--stone);
    color: var(--silver);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--bone);
}

.btn-ghost {
    background: rgba(22, 20, 28, 0.6);
    border: 1px solid rgba(61, 55, 80, 0.4);
    color: var(--pearl);
}

.btn-ghost:hover {
    background: rgba(30, 27, 39, 0.8);
    border-color: rgba(201, 162, 39, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARDS & PANELS
   ═══════════════════════════════════════════════════════════════════════════ */

.card {
    position: relative;
    background: linear-gradient(180deg, rgba(22, 20, 28, 0.9) 0%, rgba(15, 14, 19, 0.95) 100%);
    border: 1px solid rgba(61, 55, 80, 0.4);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-slow);
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-4px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(201, 162, 39, 0.08);
}

.card:hover::before {
    opacity: 1;
}

.panel {
    background: rgba(22, 20, 28, 0.8);
    border: 1px solid rgba(61, 55, 80, 0.3);
    border-radius: var(--radius-md);
}

.panel-header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid rgba(61, 55, 80, 0.3);
}

.panel-body {
    padding: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

.input,
.textarea,
.select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(15, 14, 19, 0.8);
    border: 1px solid rgba(61, 55, 80, 0.4);
    border-radius: var(--radius-sm);
    color: var(--pearl);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: all var(--transition-normal);
}

.input:focus,
.textarea:focus,
.select:focus {
    outline: none;
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.1);
}

.input::placeholder,
.textarea::placeholder {
    color: var(--stone);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRADITION COLORS
   ═══════════════════════════════════════════════════════════════════════════ */

.tradition-phenomenology { --tradition-color: var(--tradition-phenomenology); }
.tradition-spinozism { --tradition-color: var(--tradition-spinozism); }
.tradition-buddhism { --tradition-color: var(--tradition-buddhism); }
.tradition-process { --tradition-color: var(--tradition-process); }
.tradition-poststructuralism { --tradition-color: var(--tradition-poststructuralism); }
.tradition-hegelianism { --tradition-color: var(--tradition-hegelianism); }
.tradition-heideggerianism { --tradition-color: var(--tradition-heideggerianism); }
.tradition-wittgenstein-early { --tradition-color: var(--tradition-wittgenstein-early); }
.tradition-wittgenstein-late { --tradition-color: var(--tradition-wittgenstein-late); }
.tradition-kantianism { --tradition-color: var(--tradition-kantianism); }

/* ═══════════════════════════════════════════════════════════════════════════
   CONCEPT PILLS / TAGS
   ═══════════════════════════════════════════════════════════════════════════ */

.concept-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    border: 1px solid rgba(var(--tradition-color), 0.4);
    background: rgba(var(--tradition-color), 0.1);
    color: var(--tradition-color);
    transition: all var(--transition-normal);
    cursor: default;
}

.concept-pill:hover {
    transform: scale(1.05) translateY(-2px);
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MESSAGES (Counsel, Dialogue)
   ═══════════════════════════════════════════════════════════════════════════ */

.message {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    animation: messageIn 0.4s ease-out;
}

@keyframes messageIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message-counsel {
    background: rgba(30, 27, 39, 0.6);
    border-left: 3px solid var(--tradition-color, var(--indigo-glow));
}

.message-user {
    background: rgba(22, 20, 28, 0.8);
    border: 1px solid rgba(61, 55, 80, 0.3);
}

.message-synthesis {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation: synthGlow 2s ease-in-out infinite;
}

@keyframes synthGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.2); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.4); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLLBARS
   ═══════════════════════════════════════════════════════════════════════════ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--void);
}

::-webkit-scrollbar-thumb {
    background: var(--stone);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--silver);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════════════════
   COUNSELOR ORB
   ═══════════════════════════════════════════════════════════════════════════ */

.counsel-orb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--gold) 0%, var(--ember) 50%, #5c4710 100%);
    box-shadow:
        0 0 30px rgba(201, 162, 39, 0.4),
        0 0 60px rgba(201, 162, 39, 0.2);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(201, 162, 39, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(201, 162, 39, 0.6); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE HEADER
   ═══════════════════════════════════════════════════════════════════════════ */

.page-header {
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid rgba(61, 55, 80, 0.3);
    background: rgba(15, 14, 19, 0.5);
}

.page-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--pearl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.page-icon {
    font-size: 2rem;
    color: var(--gold);
}

.page-subtitle {
    font-size: 0.875rem;
    color: var(--silver);
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════════════════ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--pearl);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--silver);
    font-size: 0.9375rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

.text-gold { color: var(--gold); }
.text-pearl { color: var(--pearl); }
.text-silver { color: var(--silver); }
.text-stone { color: var(--stone); }

.bg-void { background: var(--void); }
.bg-obsidian { background: var(--obsidian); }
.bg-smoke { background: var(--smoke); }

.border-stone { border-color: rgba(61, 55, 80, 0.4); }
.border-gold { border-color: rgba(201, 162, 39, 0.3); }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE HAMBURGER MENU
   ═══════════════════════════════════════════════════════════════════════════ */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pearl);
    transition: all var(--transition-normal);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.mobile-nav-links .nav-link {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Tablet and below */
@media (max-width: 1024px) {
    .page-header-inner {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .page-header-inner > div:last-child {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    body {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .philang-nav {
        padding: 0.5rem 1rem;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-overlay {
        display: block;
    }

    .page-header {
        padding: var(--space-md);
    }

    .page-title {
        font-size: 1.125rem;
    }

    .page-icon {
        font-size: 1.5rem;
    }

    .page-subtitle {
        font-size: 0.8125rem;
    }

    /* Buttons - larger touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
    }

    .btn-ghost {
        padding: 0.5rem 0.75rem;
    }

    /* Form elements - larger touch targets */
    .input,
    .textarea,
    .select {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom */
        padding: 0.875rem 1rem;
    }

    /* Cards */
    .card {
        padding: var(--space-md);
        border-radius: var(--radius-md);
    }

    .card:hover {
        transform: none; /* Disable hover transform on mobile */
    }

    /* Panels */
    .panel {
        border-radius: var(--radius-sm);
    }

    .panel-header,
    .panel-body {
        padding: var(--space-md);
    }

    /* Messages */
    .message {
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--radius-md);
    }

    /* Counselor orb */
    .counsel-orb {
        width: 40px;
        height: 40px;
    }

    /* Section headers */
    .section-title {
        font-size: 1.25rem;
    }

    /* Hide desktop-only elements */
    .desktop-only {
        display: none !important;
    }

    /* Scrollbar - thinner on mobile */
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .philang-nav {
        padding: 0.5rem 0.75rem;
    }

    .philang-logo-text {
        display: none;
    }

    .page-header {
        padding: var(--space-sm) var(--space-md);
    }

    .page-title {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.8125rem;
        padding: 0.625rem 1rem;
    }

    /* Stack header controls */
    .page-header-inner > div:last-child {
        flex-wrap: wrap;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover effects on touch devices */
    .card:hover,
    .btn:hover,
    .nav-link:hover {
        transform: none;
    }

    /* Ensure buttons have active states instead */
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .card:active {
        transform: scale(0.99);
    }

    /* Remove hover underlines */
    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        color: var(--gold);
    }
}

/* Safe area padding for notched devices */
@supports (padding: max(0px)) {
    .philang-nav {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .page-header {
        padding-left: max(var(--space-md), env(safe-area-inset-left));
        padding-right: max(var(--space-md), env(safe-area-inset-right));
    }
}

/* Landscape mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .philang-nav {
        padding: 0.25rem 1rem;
    }

    .page-header {
        padding: var(--space-sm) var(--space-md);
    }

    .counsel-orb {
        width: 32px;
        height: 32px;
    }
}

/* Print styles */
@media print {
    .luminous-bar,
    .philang-nav,
    .mobile-menu-toggle,
    .mobile-nav-overlay,
    body::before {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .card,
    .panel {
        border: 1px solid #ccc;
        box-shadow: none;
    }
}
