@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Rajdhani', Arial, sans-serif;
    background-image: url('https://xwilkinx.com/play/combat/latest/assets/images/bg/splash.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #e0e0e0;
    font-weight: 500;
    margin: 20px;
}

.container {
    max-width: 50vw;
    margin: auto;
    background: #101217bd;
    padding: 20px;
    box-shadow: 0 32px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.container img {
    object-fit: contain;
    max-height: 100px;
}

h1 {
    color: greenyellow;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.1em;
    padding: 5px 1rem 5px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

h2,
h3 {
    color: #FDDA0D;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.player {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
    background: #101217;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.3);
    font-size: 14px;
}

.playerName {
    font-size: 18px;
}

.clanName {
    color: yellow;
}

h2.collapsible {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.content {
    padding: 0;
    display: block;
    letter-spacing: 0.03em;
}

.content.collapsed {
    display: none;
}

a {
    color: #E7AF23;
    text-decoration: none;
    transition: all 0.1s ease;
    font-size: 18px;
    padding: 0;
    margin: 0;
}

a:hover {
    color: white;
}

.header {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}


section {
    margin-bottom: 10px;
}

p,
li {
    line-height: 1.4;
}

.tag {
    padding: 2px 6px;
    margin-left: 6px;
    border-radius: 4px;
    letter-spacing: 0.1em;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.tag.admin {
    background: red;
    color: white;
}

.tag.mod {
    background: orange;
    color: black;
}

.tag.bot {
    background: gray;
    color: white;
}