/* --------------------------------------------------------------
   SOLID NAVY BACKGROUND + GOLD TRIM
-------------------------------------------------------------- */
.exo-starfield {
    position: relative;
    padding: 28px 20px;
    border-radius: 14px;
    overflow: hidden;
    background: #001233;
    border: 2px solid #d4af37;
    box-shadow:
        0 0 14px rgba(212, 175, 55, 0.55),
        inset 0 0 22px rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------
   MAIN TITLE — CENTERED GOLD GLOW
-------------------------------------------------------------- */
.exo-main-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd86b;
    margin-bottom: 26px;
    line-height: 1.45; /*spacing added to increase space between wrapped text on two lines*/
    letter-spacing: 1px;
    text-shadow:
        0 0 10px rgba(255, 215, 100, 0.9),
        0 0 20px rgba(255, 215, 100, 0.7),
        0 0 36px rgba(0, 40, 90, 1);
}

/* --------------------------------------------------------------
   STACKED COUNT BLOCKS
-------------------------------------------------------------- */
.exo-count-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 23px;
}

.exo-count-block:first-of-type {
    margin-bottom: 34px;
}

/* --------------------------------------------------------------
   PLANET TALLY ICON — PNG VERSION
-------------------------------------------------------------- */
.exo-planet-icon {
    width: 152px; /* Main saturn icon at top is much bigger */
    height: auto;
    margin-bottom: 12px;
    display: inline-block;
    cursor: pointer;
    filter:
        drop-shadow(0 0 12px rgba(255, 170, 90, 0.95))
        drop-shadow(0 0 24px rgba(255, 130, 70, 0.85))
        drop-shadow(0 0 40px rgba(255, 90, 40, 0.75));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.exo-planet-icon:hover {
    transform: scale(1.15) rotate(10deg);
    filter:
        drop-shadow(0 0 18px rgba(255, 180, 100, 1))
        drop-shadow(0 0 36px rgba(255, 140, 80, 0.95))
        drop-shadow(0 0 60px rgba(255, 100, 50, 0.9));
}

/* --------------------------------------------------------------
   COUNT NUMBERS + LABELS
-------------------------------------------------------------- */
.exo-count {
    font-size: 2.2rem;
    font-weight: 800; /* added slighly more weight to labels */
    color: #ffd86b;
    font-family: 'Georgia', serif;
    text-shadow:
        0 0 8px rgba(255, 215, 100, 0.9),
        0 0 16px rgba(255, 215, 100, 0.6),
        0 0 32px rgba(0, 40, 90, 0.9);
    transition: all 0.4s ease;
}

.exo-label {
    margin-top: 13px; /*spacing added to increase space between text and tally numbers*/
    font-size: 1.0rem;
    color: #ffd86b;
    font-family: 'Georgia', serif;
    text-shadow:
        0 0 6px rgba(255, 215, 100, 0.8),
        0 0 12px rgba(255, 215, 100, 0.6),
        0 0 20px rgba(0, 40, 90, 0.9);
}

/* --------------------------------------------------------------
   LAST UPDATED — CENTERED + SATURN PNG ICONS
-------------------------------------------------------------- */
.exo-updated-wrapper {
    text-align: center;
    margin-top: 18px;
    margin-bottom: 10px;
}

.exo-updated-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd86b;
    text-shadow:
        0 0 8px rgba(255, 215, 100, 0.9),
        0 0 16px rgba(255, 215, 100, 0.7),
        0 0 28px rgba(0, 40, 90, 1);
    margin-bottom: 4px;
}

.exo-updated-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffd86b;
    text-shadow:
        0 0 6px rgba(255, 215, 100, 0.8),
        0 0 14px rgba(255, 215, 100, 0.6),
        0 0 24px rgba(0, 40, 90, 0.9);
}

/* --------------------------------------------------------------
   SATURN PNG ICON — Glow, Hover, Scaling
-------------------------------------------------------------- */
.exo-saturn-icon {
    width: 44px; /* these two saturn icons on both sides of the Last Update label are much smaller */
    height: auto;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;

    filter:
        drop-shadow(0 0 14px rgba(255, 150, 80, 0.95))
        drop-shadow(0 0 28px rgba(255, 110, 50, 0.85))
        drop-shadow(0 0 44px rgba(255, 70, 20, 0.75));

    transition: transform 0.35s ease, filter 0.35s ease;
}

.exo-saturn-icon:hover {
    transform: scale(1.18) rotate(10deg);
    filter:
        drop-shadow(0 0 20px rgba(255, 170, 90, 1))
        drop-shadow(0 0 40px rgba(255, 130, 70, 0.95))
        drop-shadow(0 0 70px rgba(255, 90, 40, 0.9));
}

/* --------------------------------------------------------------
   CATEGORY GRID
-------------------------------------------------------------- */
.exo-categories {
    margin-top: 24px;
    padding-top: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.5);
}

.exo-categories-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd86b;
    font-family: 'Georgia', serif;
    margin-bottom: 10px;
    text-shadow:
        0 0 8px rgba(255, 215, 100, 0.9),
        0 0 16px rgba(255, 215, 100, 0.7),
        0 0 28px rgba(0, 40, 90, 1);
}

.exo-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}

/* --------------------------------------------------------------
   CATEGORY TILE
-------------------------------------------------------------- */
.exo-category-tile {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    position: relative;
    transition: all 0.35s ease;
}

.exo-category-tile > * {
    pointer-events: none;
}

.exo-category-tile:hover {
    transform: scale(1.06);
    border-color: rgba(255, 215, 100, 0.9);
    box-shadow:
        0 0 12px rgba(255, 215, 100, 0.8),
        0 0 24px rgba(255, 215, 100, 0.6);
}

.exo-category-icon {
    font-size: 2.0rem;
    color: #ffd86b;
    text-shadow:
        0 0 6px rgba(255, 215, 100, 0.8),
        0 0 14px rgba(255, 215, 100, 0.6),
        0 0 28px rgba(0, 40, 90, 0.9);
}

/* --------------------------------------------------------------
   NEPTUNE-LIKE — BIGGER ICY GIANT WORLD AS SVG
-------------------------------------------------------------- */
.exo-category-tile.neptune-like .exo-neptune-svg {
    width: 4.2rem;      /* was 2.6rem — now big like a gas giant */
    height: 4.2rem;
    filter:
        drop-shadow(0 0 12px rgba(120, 190, 255, 0.95))
        drop-shadow(0 0 24px rgba(80, 150, 255, 0.85))
        drop-shadow(0 0 36px rgba(40, 120, 255, 0.75));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.exo-category-tile.neptune-like:hover .exo-neptune-svg {
    transform: scale(1.18);
    filter:
        drop-shadow(0 0 18px rgba(150, 210, 255, 1))
        drop-shadow(0 0 32px rgba(100, 170, 255, 0.95))
        drop-shadow(0 0 52px rgba(60, 130, 255, 0.9));
}

/* --------------------------------------------------------------
   GAS GIANT — Jupiter + Glow + Bands
-------------------------------------------------------------- */
.exo-category-tile.gas-giant .exo-category-icon {
    font-size: 3.2rem;
    position: relative;
    z-index: 3;
    text-shadow:
        0 0 14px rgba(255, 150, 80, 1),
        0 0 28px rgba(255, 120, 60, 0.95),
        0 0 46px rgba(255, 90, 40, 0.85),
        0 0 70px rgba(200, 60, 20, 0.75);
}

.exo-category-tile.gas-giant::before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    right: -24px;
    bottom: -24px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 160, 90, 0.45) 0%,
        rgba(255, 110, 50, 0.30) 40%,
        rgba(0, 0, 0, 0) 80%
    );
    box-shadow:
        0 0 26px rgba(255, 150, 80, 0.9),
        0 0 50px rgba(255, 110, 50, 0.7),
        0 0 80px rgba(255, 80, 20, 0.6);
    pointer-events: none;
    z-index: 1;
}

.exo-category-tile.gas-giant .exo-category-icon::after {
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;
    top: -30%;
    left: -30%;
    border-radius: 50%;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 200, 150, 0.35) 0px,
        rgba(255, 200, 150, 0.35) 10px,
        rgba(255, 140, 80, 0.35) 20px,
        rgba(255, 140, 80, 0.35) 30px
    );
    mix-blend-mode: screen;
    opacity: 0.40;
    animation: jupiterBands 18s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes jupiterBands {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.exo-category-tile.gas-giant:hover .exo-category-icon {
    transform: scale(1.18);
    text-shadow:
        0 0 18px rgba(255, 160, 90, 1),
        0 0 36px rgba(255, 130, 70, 1),
        0 0 60px rgba(255, 90, 40, 1),
        0 0 90px rgba(200, 60, 20, 1);
}

/* --------------------------------------------------------------
   SUPER-EARTH HERO TILE
-------------------------------------------------------------- */
.super-earth {
    position: relative;
    overflow: visible;
}

.super-earth-icon {
    font-size: 3.6rem;
    margin-bottom: 6px;
    text-shadow:
        0 0 12px rgba(120, 180, 255, 1),
        0 0 24px rgba(120, 180, 255, 0.9),
        0 0 40px rgba(0, 80, 180, 1),
        0 0 60px rgba(0, 120, 255, 0.7);
}

.super-earth::before {
    content: "";
    position: absolute;
    top: -22px;
    left: -22px;
    right: -22px;
    bottom: -22px;
    border-radius: 20px;
    background: radial-gradient(
        circle,
        rgba(120, 190, 255, 0.45) 0%,
        rgba(0, 80, 180, 0.25) 40%,
        rgba(0, 0, 0, 0) 80%
    );
    box-shadow:
        0 0 22px rgba(120, 180, 255, 0.9),
        0 0 38px rgba(120, 180, 255, 0.7),
        0 0 60px rgba(0, 80, 180, 0.6);
    animation: superEarthShimmer 4.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes superEarthShimmer {
    0% { transform: scale(1) rotate(0deg); opacity: 0.75; }
    50% { transform: scale(1.12) rotate(180deg); opacity: 1; }
    100% { transform: scale(1) rotate(360deg); opacity: 0.75; }
}

.super-earth:hover::before {
    box-shadow:
        0 0 30px rgba(150, 210, 255, 1),
        0 0 50px rgba(150, 210, 255, 0.9),
        0 0 80px rgba(0, 80, 180, 1);
    transform: scale(1.15);
}

.super-earth:hover .super-earth-icon {
    transform: scale(1.12);
    text-shadow:
        0 0 18px rgba(150, 210, 255, 1),
        0 0 36px rgba(150, 210, 255, 0.9),
        0 0 60px rgba(0, 100, 200, 1);
}

/* --------------------------------------------------------------
   SUN → EARTH ICON ROW
-------------------------------------------------------------- */
.exo-star-icons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.exo-star-icons::before {
    content: "";
    position: absolute;
    width: 46px;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(255, 215, 100, 0.0) 0%,
        rgba(255, 215, 100, 0.9) 40%,
        rgba(255, 215, 100, 0.9) 60%,
        rgba(255, 215, 100, 0.0) 100%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 8px rgba(255, 215, 100, 0.9),
        0 0 16px rgba(255, 215, 100, 0.7),
        0 0 28px rgba(255, 215, 100, 0.5);
    pointer-events: none;
}

.exo-sun-icon {
    font-size: 2.6rem;
}

/* --------------------------------------------------------------
   FORCE REMOVAL OF ANY REMAINING GREAT RED SPOT
-------------------------------------------------------------- */
.exo-category-tile.gas-giant .exo-category-icon::before {
    content: none !important;
    display: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* --------------------------------------------------------------
   RESTORE GOLD LABEL STYLING
-------------------------------------------------------------- */
.exo-category-label {
    color: #ffd86b !important;
    font-family: 'Georgia', serif !important;
    text-shadow:
        0 0 6px rgba(255, 215, 100, 0.8),
        0 0 12px rgba(255, 215, 100, 0.6),
        0 0 20px rgba(0, 40, 90, 0.9) !important;
}
