body {
    margin: 0;
    background: #0f0f0f;
    color: white;
    font-family: Arial, sans-serif;
}

nav {
    background: #1a1a1a;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    margin: 0;
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav li {
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
}

nav li:hover {
    color: #00aaff;
}

section {
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    padding: 10px;
    border-bottom: 1px solid #333;
}

th {
    background: #222;
}
.thumb {
    width: 180px;
    height: 60px;
    border-radius: 6px;
    margin-right: 10px;
    vertical-align: middle;
    object-fit: cover;
}
.level-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    border: 2px solid #222;
}

.level-left {
    display: flex;
    align-items: center;
}

.level-thumb {
    width: 160px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 15px;
}

.level-info h2 {
    margin: 0;
    font-size: 24px;
    color: white;
}

.level-info p {
    margin: 3px 0;
    color: #ccc;
}

.difficulty {
    color: #4cff4c;
    font-weight: bold;
}

/* GREEN STRIPES */
.level-right {
    width: 70px;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        #00ff00,
        #00ff00 10px,
        #003300 10px,
        #003300 20px
    );
    border-radius: 10px;
}
.level-info-page {
    padding: 20px;
}

.level-info-layout {
    display: flex;
    gap: 20px;
    align-items: center;
}

.level-thumb-large {
    width: 300px;
    height: 170px;
    border-radius: 12px;
    object-fit: cover;
}

.level-details p {
    font-size: 18px;
    margin: 6px 0;
}
.victors-box {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #222;
    width: 200px;
    height: fit-content;
}

.victors-box h3 {
    margin-top: 0;
    color: #4cff4c;
}

.victors-box ul {
    list-style: none;
    padding-left: 0;
}

.victors-box li {
    margin: 5px 0;
    color: #ccc;
    font-size: 16px;
}
#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #4cff4c;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    z-index: 9999;

    opacity: 1;
    transition: opacity 1s ease;

    pointer-events: none;
}
