/* ==========================================================================
   1. GLOBAL BODY & TYPOGRAPHY
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;800;900&display=swap');

@font-face {
    font-family: 'PokemonSolid';
    src: url('https://www.iamfredperry.co.uk/Pokemon/PokemonSolid.woff2') format('woff2'),
         url('https://www.iamfredperry.co.uk/Pokemon/PokemonSolid.woff') format('woff'),
         url('https://www.iamfredperry.co.uk/Pokemon/PokemonSolid.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Press Start 2P', monospace;
    text-align: center;
    color: #f5f5f5;
    background: linear-gradient(to bottom, #1e40af 0%, #000000 50%);
    background-size: cover;
    background-attachment: fixed;
    text-shadow: 1px 1px #000;
}

/* ==========================================================================
   2. HEADINGS & PROSE
   ========================================================================== */
h1, h2 {
    font-size: 28px;
    font-weight: 900;
    margin: 20px 0 10px 0;
    line-height: 36px;
    color: #ffcb05; /* bright yellow like Pokémon HP text */
    text-shadow: 2px 2px #000; /* pixel shadow for retro look */
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 15px 0 10px 0;
    text-shadow: 1px 1px #000;
}

h4 {
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    text-shadow: 1px 1px #000;
} 

p {
    font-weight: 600;
} 

small {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    color: #e5e7eb;
    margin: 6px 0;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

b {
    font-weight: 900;
    font-size: 14px;
    color: #ffd700; /* gold highlight for top players */
    text-shadow: 1px 1px #000;
}

.TextLarge {
    font-size: 22px;
    text-shadow: 2px 2px #000;
}

.IntroductionText {
    padding: 0 2%;
    text-align: left;
    max-width: 600px;
    margin: 26px auto 40px auto;
    line-height: 22px;
}

/* ==========================================================================
   3. MODERNIZED FORMS, INPUTS & COMPONENT CARDS
   ========================================================================== */
form {
    width: 100%;
    max-width: 440px;
    margin: 40px auto;
    background: rgba(15, 23, 42, 0.85); /* Premium deep cyber slate */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 203, 5, 0.25); /* Subtle gold framing aura */
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                0 0 25px rgba(30, 64, 175, 0.25);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Base Inputs Clean Up */
input,
select {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    padding: 0 16px;
    border: 2px solid #334155;
    background-color: #f8fafc;
    font-family: 'Roboto', sans-serif; /* Cleaner typography for modern data entry */
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
    text-indent: 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #ffcb05; /* Custom game-yellow interactive highlight ring */
    box-shadow: 0 0 0 4px rgba(255, 203, 5, 0.3), 
                inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

label {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Action Buttons Restyling */
button,
.edit-button,
.button-option > span {
    font-family: 'Press Start 2P', monospace;
    cursor: pointer;
    width: 100%;
    height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: #f5f5f5;
    border: none;
    border-bottom: 4px solid #1e3a8a; /* 3D Retro tactile effect */
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

button:hover,
.edit-button:hover,
.button-option > span:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
}

button:active,
.edit-button:active,
.button-option > span:active {
    transform: translateY(2px);
    border-bottom-width: 0px;
    box-shadow: 0 2px 4px rgba(30, 64, 175, 0.2);
}

/* Generic Interface Containers */
.Card {
    border: 1px solid #34343495;
    width: 100%;
    background: #020617;
    color: #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.BackgroundWhite {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.CheckBox {
    width: 30px;
    height: 30px;
    accent-color: #f44336;
}

.card-checkbox {
    width: 30px;
    height: 30px;
    transform: scale(1.2);
}

.card-checkbox:checked + .custom-checkbox::before {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.error {
    border: 2px solid #F20619 !important;
}

.error-message {
    color: #F20619;
    display: none;
    margin-top: 5px;
}

/* ==========================================================================
   4. LAYOUT GRID & FLEX UTILITIES
   ========================================================================== */
.Container {
    max-width: 1080px;
    margin: 20px auto;
    border-radius: 16px;
}

main {
    padding: 14px;
}

header {
    background: black;
}

.main-content {
    flex: 1;
    overflow-y: auto;
}

.FlexRow {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.FlexColumn {
    display: flex;
    flex-direction: column;
}

.FlexColumnRow {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.Logo {
    width: 160px;
    margin-bottom: 10px;
}

hr {
    border: none;
    border-top: 3px dashed #222;
    margin: 40px 8%;
}

.Hidden {
    display: none !important;
}

.FullSize {
    height: fit-content;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* ==========================================================================
   5. PROFILE & NAVIGATION
   ========================================================================== */
.ProfileIcon {
    width: 90px;
    height: 90px;
    top: 30px;
    right: 30px;
    padding: 10px;
    background: #f5f5f5;
    border: solid 1px #cdcdcd;
    border-radius: 50%;
    position: absolute;
}

.ProfileIcon > img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.ProfileMenu {
    display: none;
    z-index: 2;
    padding: 20px;
    position: absolute;
    right: 6%;
    top: 120px;
    background: #f5f5f5;
    border: solid 1px #cdcdcd;
    border-radius: 14px;
    height: 300px;
    width: 300px;
}

.Navigation {
    padding: 10px;
}

.Navigation a {
    text-decoration: none;
    margin-right: 10px;
    padding: 8px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 15px 0 10px 0;
    text-shadow: 1px 1px #000;
}

/* Navigation visibility structures */
.Profile, .ChangePokemon, .Party, .Attendees, .Quest, .Battle, 
.WhosThatPokemon, .KakunaOrMetapod, .Collection, .PokemonCardCollections, 
.Binder1025, .Binders, .Stats, .Maxim1025Binder, .Jari1025Binder, 
.Fred1025Binder, .Stefan1025Binder, .Wouter1025Binder, .Esmee1025Binder {
    display: none;
}

/* ==========================================================================
   6. POKÉMON SELECTION & CARDS METAGAME
   ========================================================================== */
.pokemon-selector {
    margin: 20px 0;
}

.pokemon-images {
    display: flex;
    justify-content: center;
    padding: 2%;
    flex-wrap: wrap;
}

.pokemon-images img {
    width: 80px;
    height: auto;
    margin: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.pokemon-images img:hover {
    transform: scale(1.2);
}

.pokemon-images img.selected {
    width: 160px;
    height: 160px;
    background: linear-gradient(to bottom, #f44336 49%, #222 49%, #222 51%, #fff 51%);
    border: 4px solid #222;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    padding: 20px;
    margin: 20px;
}

.pokemon-images img[data-selected="true"] {
    filter: grayscale(100%);
    opacity: 0.5;
}

.BlackedOutPokemon {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 255, 1) 0%, rgba(0, 191, 255, 1) 60%, rgba(0, 0, 0, 0) 100%);
    position: relative;
    margin: auto;
    filter: blur(20px);
}

.BlackedOutPokemon img {
    margin: auto;
    padding-top: 40px;
    width: 400px;
    display: block;
    filter: brightness(0);
}

.NotCollected {
    background-color: #333;
    opacity: 0.3;
}

/* Custom Binder Grid Layout */
.BinderContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.Binder {
    display: flex;
    flex-direction: column;
    width: 300px;
    max-width: 300px;
    background: linear-gradient(135deg, #f8f8f8, #d6e3f8);
    border-radius: 20px;
    box-shadow: inset 0 0 0 4px #34343495, 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    align-self: center;
}

.Binder:hover {
    transform: scale(1.03);
    box-shadow: inset 0 0 0 4px #34343495, 0 12px 28px rgba(0, 0, 0, 0.3);
}

.Binder:hover .BinderImage img {
    transform: scale(1.10);
    transition: transform 0.5s ease;
}

.BinderImage {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    padding-bottom: 30px;
    background: #ffffff33;
    align-self: center;
}

.BinderImage img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.BinderText {
    background: #343434;
    color: #f9f9f9;
    width: 100%;
    padding: 12px;
    text-align: center;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-sizing: border-box;
}

.BinderText h2 {
    margin: 4px 0;
    font-size: 1.2rem;
}

.BinderText h3 {
    margin: 2px 0 0 0;
    font-size: 1rem;
    color: #dcdcdc;
}

/* Individual Trading Cards */
.CardContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2px;
}

.PokemonCard {
    display: flex;
    flex-direction: column;
    z-index: 1;
    width: 180px;
    aspect-ratio: 2 / 3;
    background: linear-gradient(135deg, #f8f8f8, #d6e3f8);
    border: 5px solid #fbc53195;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
    padding: 6px;
    margin: 6px;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.PokemonCard:hover {
    transform: scale(1.1);
    transition: transform 0.3s;
}

.PokemonCard > img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    margin-bottom: 20px;
    margin-top: -20px;
}

.CollectedBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 300px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f8f8, #d6e3f8);
    box-shadow: inset 0 0 0 6px #456456;
    border-radius: 20px;
    z-index: 3;
}

.CollectedBoxBackground {
    content: " ";
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #45645690;
    z-index: 2;
}

/* ==========================================================================
   7. INTERACTION CONTROLS, RADIO BUTTONS & POPUPS
   ========================================================================== */
.party-details {
    margin-top: 20px;
}

.response-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.button-option input[type="radio"] {
    display: none;
}

.button-option input[type="radio"]:checked + span {
    background-color: #01478d;
    border-color: #28a745;
    color: #fff;
}

#selected-pokemon-name {
    margin-right: 5px;
}

.challenge-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    max-width: 500px;
    min-width: 320px;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    display: none;
    text-align: center;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%);
}

.party-member-popup {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    color: #F20619;
    padding: 15px;
    border-radius: 8px;
    display: none;
    text-align: center;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn {
    padding: 10px;
    background-color: #ff0000;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.selected {
    background-color: #f0a500;
    color: white;
}

/* ==========================================================================
   8. STATS DISPLAY PANELS & PROGRESS BARS
   ========================================================================== */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.stats-card {
    border: 1px solid #34343495;
    border-radius: 12px;
    width: 100%;
    background: #020617;
    color: #e5e7eb;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,.4);
    box-sizing: border-box;
}

.card-header {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #1e293b;
    font-weight: 600;
    font-size: 16px;
}

.card-row:last-child {
    border-bottom: none;
}

.card-left {
    flex: 1;
    margin-right: 12px;
}

.card-name {
    font-weight: 600;
}

.card-value {
    min-width: 60px;
    text-align: right;
    font-weight: 700;
}

.progress {
    height: 8px;
    background: #1e293b;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 6px;
}

.progress > div {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.quick-box {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 10px;
    padding: 12px;
}

.quick-box strong {
    display: block;
}

.gen-bar {
    margin-top: 6px;
    font-size: 12px;
    color: #94a3b8;
}

.dominant {
    color: #facc15;
}

/* Top Level Global Collectors Info Dashboard */
.TopCollector {
    display: flex;
    align-items: center; 
    gap: 30px; 
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.TopCollector .Binder {
    flex-shrink: 0;
    width: 220px;   
    height: 220px;
}

.TopCollector .BinderImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.TopCollector .stats {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.TopCollector .progress {
    width: 100%;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
    height: 20px; 
    margin-bottom: 10px;
}

.TopCollector .progress div {
    height: 100%;
    background-color: #4caf50;
}

.TopCollector .card-row {
    font-size: 14px;
    display: flex;
    justify-content: space-between; 
}

.GenerationBorder {
    width: -webkit-fill-available;
    padding: 20px;
    border-bottom: 6px solid #000;
    margin-bottom: 20px;
}

#countdown {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333;
}

.loading-bar-container {
  width: 100%;
  height: 30px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.loading-bar {
  width: 0%;
  height: 100%;
  background-color: #4caf50;
  transition: width 1s ease-in-out;
}

/* ==========================================================================
   9. DATATABLES & ATTENDANCE
   ========================================================================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

th {
  background-color: #343434;
  color: #fff;
  padding: 14px 10px;
  text-align: center;
}

td {
  padding: 14px 10px;
  border-top: 1px solid #34343495;
  border-left: 1px solid #34343495;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

tr td:first-child,
tr th:first-child {
  border-left: none;
}

tbody tr:hover {
  background-color: #f4f4f4;
}

td, th {
  word-wrap: break-word;
}

.Attendees, .ChallengingVs {
    display: flex;
    flex-direction: column;
}

.Attendees ul, .ChallengingVs ul, .Battle ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.Attendance, .ReadyForBattle {
    flex: 0 1 auto;
    font-weight: 600;
    list-style-type: none;
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px;
    padding-right: 20px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    max-width: fit-content;
}

.Attendance:hover, .ReadyForBattle:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.Attendance > img, .ReadyForBattle > img {
    width: 60px;
    margin-right: 10px;
}

.AttendanceInfo {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   10. MAP MODULES & MEDIA ASSETS
   ========================================================================== */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: black;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-section iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.Quest img {
    width: 100%;
    border-radius: 10px;
}

#map {
    height: 100vh;
    width: 100vw;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    background-color: #a0a0a0;
}

.GameBar {
    position: fixed;
    top: 10px;
    width: 80%;
    left: 10%;
}

.distance-indicator {
    position: relative;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 8px;
    color: #000;
    margin-top: 10px;
}

.GameButtons {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    position: relative;
    padding: 8px;
}

.GameButtons > button {
    background: #F20619;
    width: 40px;
    height: 40px;
    padding: 6px;
    font-size: 24px;
    border-radius: 8px;
}

.GameButtons > button:hover {
    background: #333;
}

.PullIn {
    padding: 10px;
}

.Screen {
    background-color: #ff0000;
    border: 2px solid #000;
    border-radius: 10px;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
}

.Screen2 {
    background-color: #ff0000;
    border: 2px solid #000;
    border-radius: 10px;
    height: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.BackgroundRed {
    background-color: #F20619;
}

/* ==========================================================================
   11. CSS ANIMATIONS & ANIMATED POKÉBALL COMPONENT
   ========================================================================== */
@keyframes moveAndScale {
    0% {
        transform: scale(0.2) translateZ(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1) translateZ(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    top: 300px;
  }
  100% {
    opacity: 1;
    top: 200px;
  }
}

.player-icon {
    width: 40px;
    height: 40px;
    animation: pulse 1.5s infinite;
}

.pokeball {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #f44336 49%, #444 49%, #444 51%, #fff 51%);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid black;
    animation: moveAndScale 2s forwards;
    transform-origin: center;
}

.top-half {
    width: 100%;
    height: 50%;
    background-color: #F20619;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    position: absolute;
    top: 0;
}

.bottom-half {
    width: 100%;
    height: 50%;
    background-color: #ffffff;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    position: absolute;
    bottom: 0;
}

.border {
   position: absolute;
   width: 99%;
   margin-left: -1%;
   height: 10px;
   background-color: #444;
   top: 50%;
   transform: translateY(-50%);
   border: solid #000 2px;
   z-index: 2;
}

.button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35px;
    height: 35px;
    background-color: #444;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border: 2px solid black;
}

.ButtonCover {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35px;
    height: 35px;
    background-color: #444444;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.Inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 23px;
    height: 23px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 2px solid black;
}

.ButtonInner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 1px solid #000;
}

.ButtonInner:hover {
    background: #f44336;
}

.shine {
    position: absolute;
    top: 0%;
    left: 15%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 50%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.9;
    z-index: 4;
}

.small-shine {
    position: absolute;
    top: 70%;
    left: 20%;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(255, 255, 255, 1), transparent);
    border-radius: 50%;
    pointer-events: none;
    opacity: 1;
    z-index: 5;
}

/* ==========================================================================
   12. MEDIA QUERIES & RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (min-width: 800px) {
    .stats-card {
        width: 48%;
    }
    .Profile .stats-card {
        width: 100%;
    }
}

@media (max-width: 800px) {
    .Binder {
        width: 90%;
        max-width: none;
    }
}

@media (max-width: 960px) {
    .Container {
        border-radius: 0;
        margin: 0;
    }
    
    .PokemonCard {
        width: 200px;
    }
    
    .ProfileIcon {
        width: 60px;
        height: 60px;
        top: 20px;
        right: 20px;
        padding: 6px;
    }
    
    .Logo {
        max-width: 260px;    
    }
    
    .loading-bar-container {
       height: 20px;
    }
    
    .TopCollector {
        flex-direction: column;
    }
    
    .FlexColumnRow {
       flex-direction: column;
    }
}