* { box-sizing: border-box; } body { background-color: #111827; font-family: Arial, sans-serif; color: white; font-weight: 200; } header, main { max-width: 960px; margin: 0 auto; } header { padding: 32px 0; text-align: center; } h1 { font-size: 48px; font-weight: bold; margin-bottom: 16px; text-align: center; } a:link { font-size: 18px; color: #FFFFFF; text-decoration-line: none; } a:visited { color: #FFFFFF; } a:hover { color: #FFD21E; } a:active { color: #FFD21E; } .link { font-weight: 200; } .user { font-weight: 900; } table { border-collapse: collapse; margin: auto; font-weight: 200; } td, th { border: 0px; height: 40px; padding-left: 20px; padding-right: 20px; text-align: left; font-weight: 200; } p { font-size: 18px; font-weight: 200; } main { padding: 32px 0; } section { padding: 32px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); background-color: #111827; position: relative; overflow: hidden; } section::before, section::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; margin: -10px; background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); } section::after { filter: blur(10px); } .leaderboard ul { list-style: none; padding: 0; margin: 0; } .leaderboard li { display: flex; align-items: center; border-bottom: 1px solid #ddd; padding: 16px 0; } .leaderboard img { width: 50px; height: 50px; border-radius: 50%; margin-right: 16px; } .leaderboard h3 { font-size: 24px; font-weight: bold; margin-bottom: 4px; } .leaderboard p { font-size: 16px; margin-bottom: 8px; } .leaderboard a { color: #007bff; text-decoration: none; } .leaderboard a:hover { text-decoration: underline; } .notes { padding: 32px; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); background-color: #111827; position: relative; overflow: hidden; } .notes::before, .notes::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; margin: -10px; background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); } .notes::after { filter: blur(10px); } .notes h2 { font-size: 28px; font-weight: bold; margin-bottom: 24px; } .notes p { font-size: 18px; } .tabs { display: flex; justify-content: space-between; border-bottom: 1px solid #ddd; margin-bottom: 32px; } .tabs input[type="radio"] { display: none; } .tabs label { padding: 16px; cursor: pointer; position: relative; overflow: hidden; } .tabs label::before, .tabs label::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: -1; margin: -10px; background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); } .tabs label::after { filter: blur(10px); } .tabs label:hover { background-color: #222222; } .tab-content { display: none; } .tab-content.active { display: block; }