/* =========================================================
   NORTH POLE CONTROL CENTER
   Upload to: /assets/css/control-center.css
   ========================================================= */

.northpole-hero {
    max-width: 1500px;
    margin: 0 auto 26px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: center;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(255,215,120,.16), transparent 32%),
        linear-gradient(180deg, rgba(10,9,4,.78), rgba(22,6,5,.78));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(14px);
}

.northpole-hero h1 {
    margin: 0 0 14px;
    font-family: Georgia, serif;
    font-size: clamp(44px, 5vw, 78px);
    line-height: .94;
    color: #fff3d4;
}

.northpole-hero p {
    max-width: 820px;
    margin: 0;
    color: #fff8e9;
    font-size: 20px;
    line-height: 1.45;
}

.northpole-score-card {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(95,12,11,.94), rgba(36,4,4,.96));
    border: 1px solid rgba(244,202,100,.55);
    text-align: center;
}

.northpole-score-card span,
.northpole-stats span {
    display: block;
    color: #f5cf6d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 900;
}

.northpole-score-card strong {
    display: block;
    margin: 8px 0 14px;
    font-family: Georgia, serif;
    font-size: 54px;
    color: #fff3d4;
}

.northpole-progress {
    height: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(244,202,100,.35);
}

.northpole-progress div {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #a86a16, #f2c45b, #fff1ad);
}

.northpole-stats {
    max-width: 1500px;
    margin: 0 auto 26px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.northpole-stats div {
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.northpole-stats strong {
    display: block;
    margin-top: 8px;
    font-family: Georgia, serif;
    color: #fff3d4;
    font-size: 36px;
}

.northpole-layout {
    max-width: 1500px;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: start;
}

.northpole-layout.lower {
    grid-template-columns: .9fr 1.1fr;
}

.northpole-panel {
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255,215,120,.14), transparent 35%),
        linear-gradient(180deg, rgba(67,22,10,.96), rgba(16,8,5,.96));
    border: 1px solid rgba(244,202,100,.55);
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
}

.northpole-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 20px;
}

.northpole-panel-head h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 34px;
    color: #ffe3a4;
}

.northpole-panel-head a {
    padding: 11px 15px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(244,202,100,.45);
    color: #fff3d6;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.health-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(244,202,100,.28);
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
}

.health-item span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #7a1515, #3b0505);
    color: #fff3d6;
    font-weight: 900;
}

.health-item.complete span {
    background: linear-gradient(180deg, #45d982, #0e5c32);
    color: #fff;
}

.health-item strong {
    color: #fff3d6;
    font-size: 14px;
}

.recommendation-list {
    display: grid;
    gap: 14px;
}

.recommendation-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(244,202,100,.28);
}

.recommendation-card p {
    margin: 0 0 14px;
    color: #f6ead0;
    line-height: 1.45;
}

.recommendation-card a {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f2c45b, #a86a16);
    color: #1d0800;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.control-preview {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(244,202,100,.45);
    background: #140606;
}

.control-preview-hero {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.control-preview-body {
    padding: 24px;
}

.control-preview-body span {
    color: #f5cf6d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    font-weight: 900;
}

.control-preview-body h3 {
    margin: 10px 0;
    font-family: Georgia, serif;
    color: #fff3d4;
    font-size: 34px;
    line-height: 1;
}

.control-preview-body p {
    color: #f6ead0;
    line-height: 1.4;
}

.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quick-action-grid a {
    min-height: 88px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(244,202,100,.35);
    color: #fff3d6;
    font-weight: 900;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .2s ease;
}

.quick-action-grid a:hover {
    transform: translateY(-4px);
    border-color: #f4d06d;
    background: linear-gradient(180deg, #7d1612, #3b0808);
}

@media (max-width: 1200px) {
    .northpole-hero,
    .northpole-layout,
    .northpole-layout.lower,
    .northpole-stats,
    .health-grid {
        grid-template-columns: 1fr;
    }
}
