/* Kp-info page specific styles */

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* slate-900 */
}

html.light body {
    background-color: #f8fafc; /* slate-50 */
}

/* Active Kp state */
.active-kp {
    background-color: #14b8a6 !important; /* teal-500 */
    color: #ffffff !important;
    transform: scale(1.05);
}

/* Aurora map visualization */
.aurora-map {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-radius: 12px;
    padding: 2rem;
    min-height: 400px;
}

html.light .aurora-map {
    background: linear-gradient(180deg, #e0f2fe 0%, #cbd5e1 100%);
}

/* Aurora line animation */
.aurora-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #14b8a6, transparent);
    transition: top 0.5s ease;
    box-shadow: 0 0 10px #14b8a6;
}

/* Map marker */
.map-marker {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f472b6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Color demo box */
.color-demo {
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    box-shadow: 0 0 20px currentColor;
}

/* Navigation styles specific to kp-info page */
.kp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18, 18, 18, 0.95);
    padding: 15px 20px;
    border-bottom: 2px solid #14b8a6;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.kp-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kp-nav-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.kp-nav-logo {
    width: 40px;
    height: 40px;
}

.kp-nav-title {
    font-size: 24px;
    font-weight: 600;
    color: #14b8a6;
    letter-spacing: 0.5px;
}

.kp-nav-links {
    display: flex;
    gap: 15px;
}

.kp-nav-link {
    color: #e0f2fe;
    text-decoration: none;
    font-size: 1.5rem;
}

/* Slate-800 background helper */
.bg-slate-800 {
    background: #1e293b;
}
