body {
    min-height: 100vh;
    background: #0a0a0a url('meow.webp') no-repeat center center fixed;
    background-size: cover;
    color:white;
    backdrop-filter: blur(10px);
    font-size: 16px;
    margin: 0;
    padding: 0;
}

h1 {
    align-items: center;
    text-align: center;
    vertical-align: auto;
    margin: auto;
    padding: 10px;
    backdrop-filter: blur(3px);
    border-radius: 8px;
    width: 40%;
    font-size: 50px;
    text-shadow: 2px 2px #000;
}

.section-header {
    align-items: center;
    text-align: center;
    margin: auto;
    margin-bottom: 5px;
    padding: 5px;
    background: rgba(92, 91, 91, 0.4);
    backdrop-filter: blur(3px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    width: 40%;
    text-shadow: 2px 2px #000;
}

.match-container {
    align-items: center;
    text-align: center;
    margin: auto;
    margin-bottom: 5px;
    padding: 5px;
    background: rgba(92, 91, 91, 0.25);
    width: 40%;
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.2s;
    gap : 10px;
}

.match-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--highlight);
    cursor: pointer;
  }

.vs {
    font-style: bold;
    filter: drop-shadow(1px 1px 0 #000);
    flex-shrink: 0;
    white-space: nowrap;
    text-align: center;
}

.player-container {
    flex: 1;
    padding: 1px;
    vertical-align: auto;
    gap: 3px;
}
.player-container.left {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
.player-container.right {
    display: flex;
    align-items: center;
    text-align: left;
}

.player-container img {
    filter: drop-shadow(1px 1px 0 #000);
}

.player-elo {
        filter: drop-shadow(1px 1px 0 #000);
}


.player-container.left img {
    padding-left: 5px;
}
.player-container.right img {
    padding-right: 5px;
}
.player-container.left svg {
    padding-left: 5px;
}
.player-container.right svg {
    padding-right: 5px;
}


.player-container svg {
    
    animation: breathe 5s infinite;
}

@keyframes breathe {
    0%, 100% {
        filter: 
            drop-shadow(1px 1px 0 #000)
            drop-shadow(0 0 0px rgba(255, 0, 0, 0.0))
    }
    50% {
        filter: 
            drop-shadow(1px 1px 0 #000)
            drop-shadow(0 0 0px rgba(255, 0, 0, 0.0))
            drop-shadow(0 0 2px rgba(255, 0, 0, 0.9));
    }
}

.netherite {
    --highlight: rgb(238, 231, 130);
    border: 3px solid var(--highlight);
    border-radius: 8px;
}

.diamond {
    --highlight: rgb(130, 216, 238);
    border: 3px solid var(--highlight);
    border-radius: 8px;
}

.emerald {
    --highlight: rgb(130, 238, 139);
    border: 3px solid var(--highlight);
    border-radius: 8px;
}

.gold {
    --highlight: rgb(243, 184, 23);
    border: 3px solid var(--highlight);
    border-radius: 8px;
}

.iron {
    --highlight: rgb(233, 233, 233);
    border: 3px solid var(--highlight);
    border-radius: 8px;
}

.coal {
    --highlight: rgb(46, 46, 46);
    border: 3px solid var(--highlight);
    border-radius: 8px;
}
 



.player-info {
    filter: drop-shadow(1px 1px 0 #000);
}
.player-container .live {
    animation: breathe 5s ease-in-out infinite;
}

.player-container .live {
    animation: breathe 5s ease-in-out infinite;
}

.avatar-16 {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

p {
    text-align: center;
    background-color: rgba(0,0,0,0.3);
    width: 58%;
    margin:auto;
    margin-bottom: 10px;
    padding-bottom: 1px;
}
a {
    color:inherit;
}

@media only screen and (max-width: 1000px) {
    .section-header {width: 80%;}
    .match-container {width: 80%;}
    h1 {width: 80%;}
    p {width: 80%;}
}