/* NAVBAR -------------- */
body {
    margin: 0;
}

.navigation{
    width: 100%;
    background: linear-gradient(
        180deg,
        #ff9966,
        rgb(242, 179, 137)
    );
    border-color: black;
    border-bottom: solid;

    display:flex;
    justify-content:center;
    flex-direction: row;
    align-items:center;
}

.navigation h1{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}

.navigation image{
    size: 150px;
}

/* TESTING */

body {
    font-family: 'Montserrat', sans-serif;
}

#demon-list {
    margin-top: 20px;
    width: 80%;
    margin: 30px auto;

    height: 80vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.level-card {

    min-height: 180px;
    border-radius: 6px;
    border-style: solid;
    border-color: rgb(212, 212, 212);
    background: white;
    display: grid;
    grid-template-columns: 320px 1fr;
    overflow: hidden;
}
 
.level-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    background: #000 center / contain no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b8f9b;
    font-size: 22px;
}
 
.level-card__rank {
    position: absolute;
    top: 8px;
    left: 8px;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    padding: 2px 10px;
    border-radius: 3px;
}
 
.level-card__body {
    display: flex;
    flex-direction: column;
}
 
.level-card__title {
    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: 700;
    font-size: 32px;
    color: #000000;
    padding: 12px 18px 4px;
}

.level-card__tags {
    display: flex;
    align-items: center;
    gap: 6px;
}

.level-card__tag {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.level-card__stats {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}
 
.level-card__attempts {
    font-size: 22px;
    color: #000000;
}
 
.level-card__attempts small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: rgba(101, 101, 101, 0.736);
}
 
.level-card__meta {
    text-align: right;
    font-size: 12px;
    color: rgba(101, 101, 101, 0.736);
    line-height: 1.5;
}
 
.level-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
}
 
.level-card__link {
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
 
.level-card__rating {
    font-weight: 700;
    font-size: 15px;
    color: #000000;
}
 
.level-card--pending .level-card__link {
    color: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.45);
}
 
@media (max-width: 480px) {
    .level-card {
        grid-template-columns: 1fr;
    }
}

/* CLAUDE AAAA */

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 900px) {
    .page-grid {
        grid-template-columns: 1fr;
        width: 92%;
    }

    .navigation {
        flex-wrap: wrap;
        gap: 16px;
    }

    .navigation a img {
        height: 34px;
    }
}

/* ====================================================
   ROOT / RESET
==================================================== */
:root {
    --orange-gradient: linear-gradient(180deg, #ff9966, rgb(242, 179, 137));
    --panel-bg: #ffffff;
    --panel-border: #bbbbbb;
    --changelog-orange: #f2934f;
    --changelog-grey: #959595;
    --social-card-bg: #fbe6d3;
    --font-body: Verdana, Geneva, Tahoma, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    font-family: var(--font-body);
}