 :root {
     --bg: #0f172a;
     --card: #111827;
     --muted: #94a3b8;
     --accent: #22c55e;
     --accent-dark: #16a34a;
     --ring: rgba(34, 197, 94, .35);
 }

 body {
     font-family: Arial, sans-serif;
     background: radial-gradient(1200px 800px at 80% -10%, rgba(34, 197, 94, .08), transparent 60%),
         radial-gradient(900px 600px at -10% 110%, rgba(34, 197, 94, .06), transparent 60%),
         var(--bg);
     color: var(--text);
     font-family: Arial, sans-serif;
     padding: 1rem;
     max-width: 900px;
     margin: auto;
     padding-bottom: 100px;
 }

 h1 {
     text-align: center;
     color: white;
     margin: 1rem 0;
 }

 h4 {
     text-align: center;
     color: white;
 }

 h5 {
     text-align: center;
     color: white;
 }

 .card {
     background: #fff8f0;
     border-radius: 1rem;
     margin-bottom: 1rem;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     padding: 1rem;
     border-left: 5px solid rgba(34, 197, 94, .06);
 }

 .header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     cursor: pointer;
     flex-wrap: wrap;
 }

 .profile {
     display: flex;
     align-items: center;
     flex-grow: 1;
     flex-wrap: wrap;
 }

 .profile img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover;
     margin-right: 1rem;
     border: 2px solid #2e308b;
 }

 .info {
     display: flex;
     align-items: center;
     gap: .8rem;
 }

 .posicao {
     font-size: 1.5rem;
     font-weight: bold;
     padding: .1rem .6rem;
     border-radius: .5rem;
     min-width: 48px;
     text-align: center;
     color: #444;
     background: transparent;
 }

 .posicao.ouro {
     background: #ffd70033;
     color: #b58900;
     font-weight: 900;
     box-shadow: 0 0 6px #b58900a0;
 }

 .posicao.prata {
     background: #c0c0c033;
     color: #666;
     font-weight: 700;
     box-shadow: 0 0 6px #888888a0;
 }

 .posicao.bronze {
     background: #cd7f3233;
     color: #7a4a1a;
     font-weight: 700;
     box-shadow: 0 0 6px #7a4a1aa0;
 }

 .name {
     position: relative;
     font-size: 1rem;
     color: #222;
     cursor: pointer;
 }

 .name .tooltip-text {
     visibility: hidden;
     width: 190px;
     background-color: #555;
     color: #fff;
     text-align: center;
     border-radius: 5px;
     padding: 5px;
     position: absolute;
     z-index: 1;
     bottom: 125%;
     left: 50%;
     margin-left: -95px;
     opacity: 0;
     transition: opacity .3s;
     font-size: .85rem;
     pointer-events: none;
 }

 .name .tooltip-text::after {
     content: "";
     position: absolute;
     top: 100%;
     left: 50%;
     margin-left: -5px;
     border-width: 5px;
     border-style: solid;
     border-color: #555 transparent transparent transparent;
 }

 .name:hover .tooltip-text {
     visibility: visible;
     opacity: 1;
 }

 .score {
     font-size: 1.5rem;
     color: #444;
     font-weight: bold;
     margin-left: auto;
     text-align: right;
     min-width: 90px;
 }

 .accordion {
     margin-top: 1rem;
     display: none;
     border-top: 1px solid #ddd;
     padding-top: 1rem;
     color: #030303;
 }

 .accordion table {
     width: 100%;
     border-collapse: collapse;
 }

 .accordion th,
 .accordion td {
     padding: .5rem;
     text-align: left;
     border-bottom: 1px solid #eee;
 }

 #filtro {
     margin-bottom: 1rem;
     padding: .5rem;
     width: 100%;
     font-size: 1rem;
     border-radius: .5rem;
     border: 1px solid #ccc;
     box-sizing: border-box;
 }



 @media(max-width:600px) {
     body {
         padding: .5rem;
         padding-bottom: 100px;
     }

     .score {
         font-size: 1.2rem;
         min-width: auto;
     }

     .posicao {
         font-size: 1.2rem;
         min-width: 35px;
     }

     
 }