html, body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    align-items: center;
    padding: 0;
    background-color: #2c2c2c;
}

.header div {
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.header h1 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 20px 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 1px solid #2E6F40;
    border-right: 1px solid #2E6F40;
    color: #68BA7F;
}

.header h1:hover {
    background-color: #2E6F40;
}

.content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.main {
    padding: 20px;
    color: #68BA7F;
    text-align: center;
}

.gear {
    display: flex;
    gap: 20px;
    margin: 20px;
}

.melee, .ranged, .curios {
    border: 2px solid #2E6F40;
    border-radius: 8px;
    padding: 15px;
    background-color: #2c2c2c80;
}

.melee, .ranged {
    flex: 1;
    margin: 0;
    text-align: center;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.curios {
    flex: 1;
    margin: 0;
    text-align: center;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    margin-bottom: 10px;
}

.item-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #2E6F40;
    border-radius: 4px;
    margin: 2px 0;
    padding: 4px 8px;
    background: #2c2c2ccc;
    transition: all 0.3s ease;
    width: 400px;
    gap: 8px;
}

.item-box:hover {
    background: #3c3c3ce6;
}

.curio-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2E6F40;
    border-radius: 4px;
    margin: 2px;
    padding: 4px 8px;
    background: #2c2c2ccc;
    transition: all 0.3s ease;
    width: 80px;
    gap: 8px;
    text-align: center;
    color: #ffffff;
}

.curio-box:hover {
    background: #3c3c3ce6;
}

.weapon-name {
    font-size: 14px;
    transition: color 0.3s ease;
    flex: 1;
    text-align: left;
    color: #ffffff;
}

.stat {
    font-size: 12px;
    color: #a0a0a0;
    font-style: italic;
    margin: 2px 0 6px 0;
    padding: 1px 4px;
    background-color: rgba(45, 90, 45, 0.2);
    border-radius: 3px;
    border-left: 2px solid #2E6F40;
}

.footer {
    margin-top: auto;
    text-align: center;
    background-color: #2c2c2c;
    border-top: 1px solid #2E6F40;
    color: #68BA7F;
}

.footer a {
    color: #68BA7F;
}

.footer a:hover {
    text-decoration: underline;
}

span {
    color: #ffffff;;
}

.checkbox {
    pointer-events: none;
}