css /* Global Styles */ body { background-color: #f7f7f7; font-family: 'Bebes', cursive; font-size: 20px; line-height: 1.2; color: #333; padding: 0; margin: 0; box-sizing: border-box; } body::before { content: ""; display: block; position: fixed; top: 0; left: 0; width: 100%; height: 50px; background-color: #f7f7f7; border-bottom: 4px solid #333; z-index: -1; } body::after { content: ""; display: block; position: fixed; top: 0; right: 0; width: 100%; height: 50px; background-color: #f7f7f7; border-top: 4px solid #333; z-index: -1; } h1 { font-weight: bold; font-family: 'Bebes', cursive; font-size: 36px; line-height: 1.2; margin: 0; padding: 10px 10px 10px 20px; color: #333; background: linear-gradient(-45deg, #f7f7f7 0 0 10px 10px, #f7f7f7 0 0 10px 10px); box-shadow: 0 0 0 rgba(0, 0, 0, 0.5); border: 4px solid #000; border-radius: 0 10px 10px 0; } /* Leaderboard Styles */ .leaderboard { background: #f7f7f7; border: 4px solid #000; border-radius: 10px 10px 0 0; padding: 20px 20px 10px 20px; box-shadow: 0 0 0 rgba(0, 0, 0, 0.5); display: grid; grid-template-columns: 100px 200px 100px 200px; grid-gap: 20px; grid-template-columns: 100px 200px; margin: 20px 0; } .leaderboard-item { background: #f7f7f7; border: 4px solid #000; border-radius: 10px 10px 10px 0; padding: 10px 20px; grid-area: 1 / 1 / 2 / 2; grid-column: 1; grid-row: 1; box-shadow: 0 0 0 rgba(0, 0, 0, 0.5); text-align: center; font-weight: bold; font-family: 'Bebes', cursive; font-size: 24px; line-height: 1.2; color: #333; text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); } .leaderboard-item:hover { background: #f7f7f7; border: 4px solid #000; box-shadow: 0 0 0 rgba(0, 0, 0, 0.5); transform: scale(1.1); transition: all 0.2s ease-out; z-index: 1; position: relative; } .leaderboard-item::after { content: ""; display: block; position: absolute; bottom: -10px; right: 20px; background: linear-gradient(-45deg, #f7f7f7 0 0 10px 10px, #f7f7f7 0 0 10px 10px); box-shadow: 0 0 0 rgba(0, 0, 0, 0.5); border: 4px solid #000; border-radius: 50%; width: 20px; height: 20px; z-index: 1; } .leaderboard-item::before { content: ""; display: block; position: absolute; top: 10px; left: 20px; background: linear-gradient(-45deg, #f7f7f7 0 0 10px 10px, #f7f7f7 0 0 10px 10px); box-shadow: 0 0 0 rgba(0, 0, 0, 0.5); border: 4px solid #000; border-radius: 0 50%; width: 20px; height: 20px; z-index: 1; }