/* ═══════════════════════════════════════════════════════════
   screens.css — Consolidated (1,861 lines)
   All screen styles: core battle screens, menus (bros, items, stage, learning, gym),
   components (status, caught, misc)
   Generated by Scripts/consolidate-css.js
   Source files: screens.css, screens-core-battle.css, screens-menu-bros-items.css,
                 screens-menu-stage-learning.css, screens-menu-gym.css,
                 screens-components-status-caught.css, screens-components-misc.css

   ═══ TABLE OF CONTENTS ═══════════════════════════════════
   §1  FIGHT SCREEN         — .fightContainer, player/enemy info, moves list
   §2  CAPTURE SCREEN       — .captureContainer, capture menu, progress
   §3  BROS SCREEN          — .brosContainer, party list, member cards
   §4  ITEM SELECT SCREEN   — .itemSelectContainer, wave info, grid, money
   §5  STAGE SELECT SCREEN  — .stageSelectContainer, stage grid, cards
   §6  SCHOOL INTERACTION   — .schoolInteractionContainer, spell learning
   §7  SEX SHOP INTERACTION — .sexShopInteractionContainer, sex move learning
   §8  GYM INTERACTION      — .gymInteractionContainer, membership, facilities, needs
   §9  STATUS SCREEN        — .statusContainer, character, stats, needs, moves, evolution
   §10 CAUGHT SCREEN        — .caughtContainer, stats, image, sparkle animations
   §11 FULL PARTY SCREEN    — .fullPartyContainer, release list
   §12 LEARN MOVE SCREEN    — .learnMoveContainer, learn options
   §13 DICKDEX SCREEN       — .dickdexContainer, grid, entries
   §14 SETTINGS SCREEN      — .settingsContainer, controls, save actions
   §15 GAME OVER / VICTORY  — .gameOverContainer, .victoryContainer, stats
   §16 REWARD SCREENS       — .itemRewardContainer, .moneyRewardContainer
   §17 CONFIRM DIALOG       — .confirm-overlay, .confirm-dialog, fadeIn/scaleIn
   ═══════════════════════════════════════════════════════════ */

/* ─── Source: screens.css ───────────────────────────────── */

/* ╔═══════════════════════════════════════════════════════════════════════════════╗
   ║  screens.css — SPLIT into two smaller files for faster AI navigation         ║
   ║                                                                              ║
   ║  Core screen styles (fight, capture, bros, item select, stage select,        ║
   ║  school, sex shop, gym) → styles/screens-core.css                           ║
   ║                                                                              ║
   ║  Component screen styles (status, caught, full party, learn move,            ║
   ║  dickdex, settings, game over/victory, rewards) → styles/screens-components.css ║
   ║                                                                              ║
   ║  Both files are loaded in index.html via <link> tags.                        ║
   ║  Edit the appropriate sub-file instead of this one.                          ║
   ╚═══════════════════════════════════════════════════════════════════════════════╝ */

/* ─── Source: screens-core-battle.css ───────────────────────────────── */

/* ========================================================================
   Bro Rogue — Core Battle Screens CSS
   Split from screens-core.css — contains Fight + Capture screen styles
   ======================================================================== */

/* ── FIGHT SCREEN ────────────────────────────────────────── */
.fightContainer {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 1fr 4fr 1fr;
    padding: 1rem;
    gap: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2a2a2a;
}

/* Player Info (Left column) */
.fightPlayerInfo {
    grid-column: 1;
    grid-row: 1;
    padding: 0.5rem;
    background-color: rgb(0 0 0 / 50%);
    border-radius: 6px;
    border: 1px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-self: start;
    max-width: 200px;
}

/* Enemy Info (Right column) */
.fightEnemyInfo {
    grid-column: 3;
    grid-row: 1;
    padding: 0.5rem;
    background-color: rgb(0 0 0 / 50%);
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-self: start;
    max-width: 200px;
}

.fightMovesList {
    grid-column: 1 / 4;
    grid-row: 3;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background-color: rgb(0 0 0 / 50%);
    border-radius: 8px;
    overflow-x: auto;
    align-self: start;
}

.moveButton {
    padding: 0.3rem 0.6rem;
    background: linear-gradient(135deg, var(--primary-color), #d94444);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.7rem;
    transition: all 0.15s ease;
    white-space: nowrap;
    box-shadow:
        0 1px 4px rgb(0 0 0 / 25%),
        inset 0 1px 0 rgb(255 255 255 / 12%);
}

.moveButton:hover {
    background: linear-gradient(135deg, var(--secondary-color), #37a89f);
    transform: translateY(-1px);
    box-shadow:
        0 3px 10px rgb(0 0 0 / 35%),
        inset 0 1px 0 rgb(255 255 255 / 18%);
}

.moveButton:active {
    transform: translateY(1px) scale(0.97);
    box-shadow:
        0 1px 3px rgb(0 0 0 / 25%),
        inset 0 3px 6px rgb(0 0 0 / 30%);
    transition: all 0.05s ease;
}

.moveButton:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #555;
}

/* Character Sprites Row */
.fightCharacterRow {
    grid-column: 1 / 4;
    grid-row: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.playerCharacterFight {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.enemyCharacterFight {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.backBtn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* ── CAPTURE SCREEN ──────────────────────────────────────── */
.captureContainer {
    text-align: center;
    padding: 2rem;
    background-color: rgb(0 0 0 / 70%);
    border-radius: 8px;
    max-width: 500px;
}

.captureContainer h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.captureMenu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.captureProgress {
    background-color: rgb(255 255 255 / 10%);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.progressItem {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

/* ─── Source: screens-menu-bros-items.css ───────────────────────────────── */

/* Bro Rogue — Menu: Bros & Item Select CSS */

/* Split from screens-core-menu.css */

/* Contains: Bros screen + Item Select screen styles */

/* ── BROS SCREEN ─────────────────────────────────────────── */
.brosContainer {
    width: 90%;
    max-width: 800px;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: rgb(0 0 0 / 70%);
    padding: 2rem;
    border-radius: 8px;
}

.brosContainer h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.partyList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    flex: 1;
    overflow-y: auto;
}

.partyMember {
    background-color: rgb(255 255 255 / 10%);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.partyMember:hover {
    background-color: rgb(255 255 255 / 20%);
    border-color: var(--primary-color);
}

.partyMember img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.partyMember span {
    display: block;
    font-size: 0.9rem;
}

/* ── ITEM SELECT SCREEN ──────────────────────────────────── */
.itemSelectContainer {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: rgb(0 0 0 / 70%);
    padding: 2rem;
    border-radius: 8px;
}

.waveInfo {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.itemSelectGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    flex: 1;
    overflow-y: auto;
}

.itemCard {
    background-color: rgb(255 255 255 / 10%);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.itemCard img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.itemCard:hover {
    background-color: rgb(255 255 255 / 20%);
    border-color: var(--primary-color);
}

.itemSelectBottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.moneyDisplay {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--success-color);
}

/* ─── Source: screens-menu-stage-learning.css ───────────────────────────────── */

/* Bro Rogue — Menu: Stage Select & Learning CSS */

/* Split from screens-core-menu.css */

/* Contains: Stage Select + School + Sex Shop screen styles */

/* ── STAGE SELECT SCREEN ─────────────────────────────────── */
.stageSelectContainer {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stageSelectContainer h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    text-shadow: 2px 2px 8px rgb(0 0 0 / 80%);
    letter-spacing: 2px;
}

.stageGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    flex: 1;
    overflow-y: auto;
    padding: 0.5rem;
}

/* Stage card - solid color gradient with emoji */
.stageCard {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    min-height: 200px;
    border: 2px solid rgb(255 255 255 / 15%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgb(0 0 0 / 40%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stageCard:hover {
    border-color: var(--primary-color);
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgb(255 107 107 / 35%);
}

.stageCard:active {
    transform: scale(0.97);
}

/* Large emoji centered on card */
.stageEmoji {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
    filter: drop-shadow(2px 4px 6px rgb(0 0 0 / 30%));
    user-select: none;
}

/* Stage name label */
.stageCardLabel {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 2px 6px rgb(0 0 0 / 50%);
    letter-spacing: 1px;
    text-align: center;
    padding: 0 0.5rem;
}

/* ── SCHOOL INTERACTION SCREEN ───────────────────────────── */
.schoolInteractionContainer {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 2rem;
}

.schoolInteractionContainer h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
}

.spellLearningArea {
    background-color: rgb(0 0 0 / 70%);
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
}

.spellLearningArea h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.spellGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.spellCard {
    background-color: rgb(255 255 255 / 10%);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.spellCard:hover {
    background-color: rgb(255 255 255 / 20%);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.spellCard.learned {
    background-color: rgb(81 207 102 / 20%);
    border-color: var(--success-color);
}

.spellName {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.spellDescription {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.spellProgress {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.spellProgress.completed {
    color: var(--success-color);
    font-weight: bold;
}

.schoolActions {
    text-align: center;
}

.schoolActions .btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.schoolActions .btn:hover {
    background-color: #ff5252;
}

.noSpells {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    padding: 2rem;
    background-color: rgb(255 255 255 / 5%);
    border-radius: 8px;
    border: 1px dashed #666;
}

/* ── SEX SHOP INTERACTION SCREEN ─────────────────────────── */
.sexShopInteractionContainer {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 2rem;
}

.sexShopInteractionContainer h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
}

.sexMoveLearningArea {
    background-color: rgb(0 0 0 / 70%);
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
}

.sexMoveLearningArea h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.sexMoveGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.sexMoveCard {
    background-color: rgb(255 255 255 / 10%);
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.sexMoveCard:hover {
    background-color: rgb(255 255 255 / 20%);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.sexMoveCard.learned {
    background-color: rgb(81 207 102 / 20%);
    border-color: var(--success-color);
}

.sexMoveName {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.sexMoveDescription {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.sexMoveProgress {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.sexMoveProgress.completed {
    color: var(--success-color);
    font-weight: bold;
}

.sexShopActions {
    text-align: center;
}

.sexShopActions .btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sexShopActions .btn:hover {
    background-color: #ff5252;
}

/* ─── Source: screens-menu-gym.css ───────────────────────────────── */

/* Bro Rogue — Menu: Gym Interaction CSS */

/* Split from screens-core-menu.css */

/* Contains: Gym interaction screen styles (membership, facilities, needs panel) */

/* ── GYM INTERACTION SCREEN ──────────────────────────────── */
.gymInteractionContainer {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 2rem;
}

.gymInteractionContainer h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 80%);
}

/* Membership purchase area */
.gymMembershipArea {
    background-color: rgb(0 0 0 / 75%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.gymMembershipEmoji {
    font-size: 4rem;
    filter: drop-shadow(2px 4px 8px rgb(0 0 0 / 40%));
    animation: gymEmojiPulse 2s ease-in-out infinite;
}

@keyframes gymEmojiPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.gymMembershipInfo {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.5;
}

.gymMembershipPrice {
    font-size: 2rem;
    font-weight: bold;
    color: var(--success-color);
    text-shadow: 0 0 10px rgb(81 207 102 / 40%);
}

.gymMembershipButtons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.gymBuyBtn {
    background: linear-gradient(135deg, var(--success-color), #3dbb50);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow:
        0 2px 8px rgb(0 0 0 / 25%),
        inset 0 1px 0 rgb(255 255 255 / 15%);
}

.gymBuyBtn:hover {
    background: linear-gradient(135deg, #40c057, #2f9e44);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgb(81 207 102 / 40%),
        inset 0 1px 0 rgb(255 255 255 / 20%);
}

.gymBuyBtn:active {
    transform: translateY(1px) scale(0.97);
    box-shadow:
        0 1px 4px rgb(0 0 0 / 30%),
        inset 0 3px 6px rgb(0 0 0 / 30%);
    transition: all 0.05s ease;
}

.gymBuyBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gymLeaveBtn {
    background: linear-gradient(135deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 6%));
    color: #ccc;
    border: 1px solid rgb(255 255 255 / 20%);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow:
        0 1px 4px rgb(0 0 0 / 15%),
        inset 0 1px 0 rgb(255 255 255 / 8%);
}

.gymLeaveBtn:hover {
    background: linear-gradient(135deg, rgb(255 255 255 / 22%), rgb(255 255 255 / 12%));
    color: #fff;
    transform: translateY(-1px);
    box-shadow:
        0 3px 10px rgb(0 0 0 / 25%),
        inset 0 1px 0 rgb(255 255 255 / 15%);
}

.gymLeaveBtn:active {
    transform: translateY(1px) scale(0.97);
    box-shadow:
        0 1px 3px rgb(0 0 0 / 20%),
        inset 0 3px 6px rgb(0 0 0 / 25%);
    transition: all 0.05s ease;
}

/* Facilities area */
.gymFacilitiesArea {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Needs panel with portrait + animated bars */
.gymNeedsPanel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgb(0 0 0 / 55%);
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 10%);
    width: 100%;
    max-width: 700px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Character portrait */
.gymNeedsChar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    border-right: 1px solid rgb(255 255 255 / 10%);
    flex-shrink: 0;
}

.gymNeedsCharImg {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: rgb(255 255 255 / 5%);
}

.gymNeedsCharInfo {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.gymNeedsCharName {
    font-size: 1.05rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.gymNeedsCharLevel {
    font-size: 0.85rem;
    color: #aaa;
}

.gymNeedsCharMood {
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Needs bars */
.gymNeedsBars {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
    min-width: 250px;
}

.gymNeedBarRow {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gymNeedBarIcon {
    font-size: 0.9rem;
    width: 1.3rem;
    text-align: center;
    flex-shrink: 0;
}

.gymNeedBarLabel {
    font-size: 0.75rem;
    color: #ccc;
    min-width: 3.2rem;
    flex-shrink: 0;
    font-weight: bold;
}

.gymNeedBarTrack {
    flex: 1;
    height: 10px;
    background: rgb(255 255 255 / 10%);
    border-radius: 5px;
    overflow: hidden;
    min-width: 0;
}

.gymNeedBar {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.gymNeedBarHunger {
    background: linear-gradient(90deg, #ff6b6b, #ff8787);
}

.gymNeedBarHygiene {
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
}

.gymNeedBarEnergy {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.gymNeedBar.low {
    box-shadow: 0 0 8px rgb(255 0 0 / 50%);
    animation: gymNeedBarLowPulse 1s ease-in-out infinite;
}

@keyframes gymNeedBarLowPulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Heal flash - green pulse when needs increase */
.gymNeedBar.heal-flash {
    animation: gymNeedBarHealFlash 0.6s ease-out;
}

@keyframes gymNeedBarHealFlash {
    0% {
        filter: brightness(2.5);
    }

    40% {
        filter: brightness(1.5);
    }

    100% {
        filter: brightness(1);
    }
}

.gymNeedBarValue {
    font-size: 0.8rem;
    color: #fff;
    min-width: 1.8rem;
    text-align: right;
    font-weight: bold;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.gymNeedBarValue.flash-green {
    animation: gymNeedValuePop 0.5s ease-out;
}

@keyframes gymNeedValuePop {
    0% {
        color: var(--success-color);
        transform: scale(1.3);
    }

    50% {
        color: var(--success-color);
        transform: scale(1.1);
    }

    100% {
        color: #fff;
        transform: scale(1);
    }
}

/* Hide old badges summary */
.gymNeedsSummary {
    display: none;
}

.gymFacilitiesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
    width: 100%;
}

.gymFacilityCard {
    background: rgb(0 0 0 / 65%);
    border: 2px solid rgb(255 255 255 / 15%);
    border-radius: 10px;
    padding: 1.2rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    overflow: hidden;
}

.gymFacilityCard:hover:not(.used) {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgb(255 107 107 / 25%);
    background: rgb(0 0 0 / 80%);
}

.gymFacilityCard.used {
    opacity: 0.45;
    cursor: not-allowed;
    border-color: rgb(255 255 255 / 6%);
}

.gymFacilityCard.used .gymFacilityUsed {
    display: block;
}

.gymFacilityEmoji {
    font-size: 2.5rem;
    line-height: 1;
}

.gymFacilityName {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.gymFacilityDesc {
    font-size: 0.8rem;
    color: #aaa;
    line-height: 1.3;
}

.gymFacilityCost {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--success-color);
}

.gymFacilityUsed {
    display: none;
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: bold;
}

.gymFacilitiesBottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.gymFacilitiesBottom .moneyDisplay {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--success-color);
}

/* ─── Source: screens-components-status-caught.css ───────────────────────────────── */

/* Bro Rogue — Screen Components: Status, Caught & Party CSS */

/* Split from screens-components.css */

/* Contains: Status screen + Caught screen + Full Party screen styles */

/* ── STATUS SCREEN ───────────────────────────────────────── */
.statusContainer {
    width: 90%;
    max-width: 900px;
    height: 90%;
    display: flex;
    flex-direction: column;
    background-color: rgb(0 0 0 / 70%);
    padding: 2rem;
    border-radius: 8px;
    overflow-y: auto;
}

.statusHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.statusHeader h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.statusContent {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.statusCharacter {
    display: flex;
    gap: 2rem;
    background-color: rgb(255 255 255 / 10%);
    padding: 1.5rem;
    border-radius: 8px;
}

.statusCharImage img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    background-color: rgb(255 255 255 / 5%);
}

.statusCharInfo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.statusCharName {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.statusCharLevel {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.statusCharType {
    font-size: 1rem;
    color: var(--text-color);
}

.statusMood {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.statusExp {
    margin-top: 0.5rem;
}

.expBarContainer {
    width: 100%;
    height: 20px;
    background-color: rgb(255 255 255 / 20%);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.expBar {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.expText {
    font-size: 0.9rem;
    text-align: center;
}

.statusStats {
    background-color: rgb(255 255 255 / 10%);
    padding: 1.5rem;
    border-radius: 8px;
}

.statusStats h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.statItem {
    background-color: rgb(255 255 255 / 5%);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgb(255 255 255 / 10%);
}

.statLabel {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.statValue {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-color);
}

.statusNeeds {
    background-color: rgb(255 255 255 / 10%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.statusNeeds h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.needsGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.needItem {
    background-color: rgb(255 255 255 / 5%);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgb(255 255 255 / 10%);
}

.needLabel {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.needBarContainer {
    width: 100%;
    height: 8px;
    background-color: rgb(255 255 255 / 10%);
    border-radius: 4px;
    overflow: hidden;
}

.needBar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.hungerBar {
    background: linear-gradient(90deg, #ff6b6b, #ff8787);
}

.funBar {
    background: linear-gradient(90deg, #4ecdc4, #44a3a0);
}

.socialBar {
    background: linear-gradient(90deg, #51cf66, #40c057);
}

.bladderBar {
    background: linear-gradient(90deg, #ffd93d, #ffcd3c);
}

.hygieneBar {
    background: linear-gradient(90deg, #a78bfa, #8b5cf6);
}

.energyBar {
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.statusMoves {
    background-color: rgb(255 255 255 / 10%);
    padding: 1.5rem;
    border-radius: 8px;
}

.statusMoves h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.movesList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.moveItem {
    background-color: rgb(255 255 255 / 5%);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgb(255 255 255 / 10%);
}

.moveName {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.moveDetails {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.8;
}

.statusEvolution {
    background-color: rgb(255 255 255 / 10%);
    padding: 1.5rem;
    border-radius: 8px;
}

.statusEvolution h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.evolutionInfo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.evolutionInfo div {
    font-size: 1rem;
}

.evolutionInfo span {
    color: var(--secondary-color);
    font-weight: bold;
}

/* ── CAUGHT SCREEN ───────────────────────────────────────── */
.caughtContainer {
    width: 90%;
    max-width: 900px;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: rgb(0 0 0 / 70%);
    padding: 2rem;
    border-radius: 8px;
    animation: caughtEntrance 0.6s ease-out;
}

.caughtMessage {
    text-align: center;
    font-size: 1.5rem;
    color: var(--success-color);
    font-weight: bold;
    animation: messageGlow 1.5s ease-out;
}

.caughtStats {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    flex: 1;
    overflow-y: auto;
    align-items: start;
}

.caughtInfoPanel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.broImage {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.broImage img {
    max-width: min(350px, 25vw);
    max-height: min(400px, 60vh);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.statsList,
.movesList {
    background-color: rgb(255 255 255 / 10%);
    padding: 0.8rem;
    border-radius: 8px;
}

.statsList {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.15rem;
    animation: slideInRight 0.5s ease-out 0.2s both;
}

.stat {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0.4rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgb(255 255 255 / 5%);
}

.stat:nth-child(odd) {
    border-right: 1px solid rgb(255 255 255 / 5%);
    padding-right: 0.6rem;
}

.stat:nth-child(even) {
    padding-left: 0.6rem;
}

.statName {
    font-weight: bold;
}

.movesList h4 {
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.moveItem {
    padding: 0.2rem 0.4rem;
    font-size: 0.85rem;
}

.movesList {
    animation: slideInRight 0.5s ease-out 0.35s both;
}

/* Caught screen animations */
@keyframes caughtEntrance {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    60% {
        opacity: 1;
        transform: scale(1.02) translateY(-2px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes messageGlow {
    0% {
        text-shadow: 0 0 0 rgb(81 207 102 / 0%);
        transform: scale(0.9);
    }

    50% {
        text-shadow:
            0 0 20px rgb(81 207 102 / 80%),
            0 0 40px rgb(81 207 102 / 40%);
        transform: scale(1.08);
    }

    100% {
        text-shadow: 0 0 0 rgb(81 207 102 / 0%);
        transform: scale(1);
    }
}

/* Golden glow ring around captured character */
.broImage::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(255 215 0 / 15%) 0%, transparent 70%);
    animation: captureGlow 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes captureGlow {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Orbiting sparkle star 1 */
.broImage::after {
    content: '✦';
    position: absolute;
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 8px rgb(255 215 0 / 80%);
    animation: sparkleOrbit1 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkleOrbit1 {
    0% {
        transform: translate(-60px, -60px) scale(0);
        opacity: 0;
    }

    20% {
        transform: translate(-50px, -50px) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(0, -70px) scale(1);
        opacity: 1;
    }

    80% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: translate(60px, -60px) scale(0);
        opacity: 0;
    }
}

/* Extra sparkle particles */
@keyframes sparklePop {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.8;
    }

    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(15px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── FULL PARTY SCREEN ───────────────────────────────────── */
.fullPartyContainer {
    text-align: center;
    padding: 2rem;
    background-color: rgb(0 0 0 / 70%);
    border-radius: 8px;
    max-width: 600px;
}

.fullPartyMessage {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.releaseList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-height: 300px;
    overflow-y: auto;
}

.releaseItem {
    background-color: rgb(255 255 255 / 10%);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.releaseItem:hover {
    background-color: rgb(255 255 255 / 20%);
}

/* ─── Source: screens-components-misc.css ───────────────────────────────── */

/* Bro Rogue — Screen Components: Learn, DickDex, Settings, Game Over & Rewards CSS */

/* Split from screens-components.css */

/* Contains: Learn Move + DickDex + Settings + Game Over/Victory + Reward screen styles */

/* ── LEARN MOVE SCREEN ───────────────────────────────────── */
.learnMoveContainer {
    text-align: center;
    padding: 2rem;
    background-color: rgb(0 0 0 / 70%);
    border-radius: 8px;
    max-width: 500px;
}

.learnMoveMessage {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.learnMoveOptions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── DICKDEX SCREEN ──────────────────────────────────────── */
.dickdexContainer {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: rgb(0 0 0 / 70%);
    padding: 2rem;
    border-radius: 8px;
}

.dickdexContainer h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
}

.dickdexGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    flex: 1;
    overflow-y: auto;
}

.dickdexEntry {
    background-color: rgb(255 255 255 / 10%);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.dickdexEntry:hover {
    background-color: rgb(255 255 255 / 20%);
}

.dickdexEntry img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.dickdexEntry span {
    display: block;
    font-size: 0.85rem;
}

/* ── SETTINGS SCREEN ─────────────────────────────────────── */
.settingsContainer {
    text-align: center;
    padding: 2rem;
    background-color: rgb(0 0 0 / 70%);
    border-radius: 8px;
    max-width: 500px;
}

.settingsList {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    padding: 1rem;
}

.settingsList label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.settingsList input[type='checkbox'] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.settingsList input[type='range'] {
    flex: 1;
    cursor: pointer;
}

.settingsActions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.settingsBtn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

/* ── GAME OVER & VICTORY SCREENS ─────────────────────────── */
.gameOverContainer,
.victoryContainer {
    text-align: center;
    padding: 2rem;
    background-color: rgb(0 0 0 / 70%);
    border-radius: 8px;
    max-width: 500px;
}

.gameOverContainer h2,
.victoryContainer h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--danger-color);
}

.victoryContainer h2 {
    color: var(--success-color);
}

.gameOverStats,
.victoryStats {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ── REWARD SCREENS ──────────────────────────────────────── */
.itemRewardContainer {
    text-align: center;
    padding: 2rem;
    background-color: rgb(0 0 0 / 70%);
    border-radius: 8px;
}

.rewardMessage {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--success-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.rewardMessage img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: rgb(255 255 255 / 10%);
    padding: 4px;
    border-radius: 8px;
}

.rewardAnimation {
    width: 100px;
    height: 100px;
    margin: 1rem auto;
    animation: rewardPulse 0.5s infinite;
}

@keyframes rewardPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.moneyRewardContainer {
    text-align: center;
    padding: 2rem;
    background-color: rgb(0 0 0 / 70%);
    border-radius: 8px;
}

.moneyMessage {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--success-color);
}

/* ── CONFIRM DIALOG ──────────────────────────────────────── */
.confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease-out;
}

.confirm-dialog {
    background: #1a1a2e;
    border: 2px solid #e94560;
    border-radius: 12px;
    padding: 24px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 32px rgb(0 0 0 / 50%);
    animation: scaleIn 0.2s ease-out;
}

.confirm-message {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 20px;
    white-space: pre-line;
}

.confirm-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.confirm-no {
    padding: 10px 24px;
    border: 1px solid #555;
    border-radius: 8px;
    background: linear-gradient(135deg, #2a2a3e, #222236);
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow:
        0 1px 3px rgb(0 0 0 / 20%),
        inset 0 1px 0 rgb(255 255 255 / 6%);
}

.confirm-no:hover {
    background: linear-gradient(135deg, #3a3a4e, #2e2e42);
    color: #fff;
    border-color: #888;
    box-shadow:
        0 3px 8px rgb(0 0 0 / 30%),
        inset 0 1px 0 rgb(255 255 255 / 10%);
}

.confirm-no:active {
    transform: translateY(1px) scale(0.97);
    box-shadow:
        0 1px 2px rgb(0 0 0 / 20%),
        inset 0 2px 5px rgb(0 0 0 / 25%);
    transition: all 0.05s ease;
}

.confirm-yes {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #e94560, #c73a52);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow:
        0 2px 6px rgb(0 0 0 / 25%),
        inset 0 1px 0 rgb(255 255 255 / 15%);
}

.confirm-yes:hover {
    background: linear-gradient(135deg, #ff6b81, #e94560);
    transform: translateY(-1px);
    box-shadow:
        0 4px 12px rgb(233 69 96 / 40%),
        inset 0 1px 0 rgb(255 255 255 / 20%);
}

.confirm-yes:active {
    transform: translateY(1px) scale(0.97);
    box-shadow:
        0 1px 3px rgb(0 0 0 / 25%),
        inset 0 3px 6px rgb(0 0 0 / 30%);
    transition: all 0.05s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}
