*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Inter', sans-serif;
}

body{
    background:#101010;
    color:#fff;
    padding:40px;
    background-attachment: fixed
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:linear-gradient(145deg,rgba(23, 26, 33, 0.9),rgba(17, 19, 23, 0.9));
    border:1px solid rgba(23, 26, 33, 0.5);
    border-radius:18px;
    padding:20px;
    transition:0.3s ease;
    position:relative;
}

.card:hover{
    transform:translateY(-6px);
    border-color:rgb(247, 31, 114);
    box-shadow:0 0 25px rgba(247,31,114,0.25);
}

.dots{
    display:flex;
    gap:6px;
    margin-bottom:25px;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
}

.yellow{background:#facc15;}
.orange{background:#fb923c;}
.gray{background:#6b7280;}
.blue{background:#3b82f6;}
.green{background:#22c55e;}
.purple{background:#a855f7;}

.card h3{
    font-size:18px;
    margin-bottom:20px;
    font-weight:600;
}

.image{
    width:100%;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.image img{
    max-height:100%;
    max-width:100%;
    object-fit:contain;
}

.stats{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,0.03);
    padding:10px 14px;
    border-radius:10px;
    font-size:14px;
    margin-bottom:12px;
}

.weapon-count{
    display:flex;
    align-items:center;
    gap:8px;
    color:#22c55e;
    font-weight:600;
}

.weight{
    color:#9ca3af;
}

.add-btn{
    width:100%;
    padding:10px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.1);
    background:transparent;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.add-btn:hover{
    background:#f71f72;
    border-color:#f71f72;
}

.min-btn{
    right: 2%;
    width: 25px;
    padding:1px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.1);
    background:transparent;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.min-btn:hover{
    background:#f71f72;
    border-color:#f71f72;
}

.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
    font-weight: bold;
}

.header_emoji{
    font-size:25px;
}

.btn{
    width:25%;
    padding:10px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.1);
    background:transparent;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#f71f72;
    border-color:#f71f72;
}

.quantity{
    display:flex;
    align-items:center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.input{
    width: 500px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    padding: 5px;
}

input:focus{
    outline: none;
    border-color: #f71f72;
}

.input2{
    width: 250px;
    position: sticky;
    z-index: 1000;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    padding: 5px;
    margin: 20px;
}

.input2:focus{
    outline: none;
    border-color: #f71f72;
}

.logo{
    width: 200px;
    margin-bottom: 20px;
    position: fixed;
    z-index: 1000;
    opacity: 3;
    bottom: 1px;
    right: 20px;
}

.calc-btn{
    width:fit-content;
    padding:10px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.1);
    background:transparent;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
    margin-top: 10px;
    margin-bottom: 10px;
}

.calc-btn:hover{
    background:#f71f72;
    border-color:#f71f72;
}

.rmv-btn{
    width:fit-content;
    padding: 5px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.1);
    background:transparent;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
}

.rmv-btn:hover{
    background:#f71f72;
    border-color:#f71f72;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}


.custom-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: sticky;
    font-size: 16px;
    user-select: none;
}

.checkmark {
    top:5px;
    width: 20px;
    height: 20px;
    background-color: #1c1f26;
    border: 2px solid #444;
    border-radius: 6px;
    margin-right: 10px;
    transition: all 0.2s ease;
    position: relative;
}

.custom-checkbox:hover .checkmark {
    border-color: #f71f72;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: #f71f72;
    border-color: #f71f72;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark::after {
    display: block;
}

.custom-checkbox .checkmark::after {
    left: 25%;
    top: 7%;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    padding-top: 10px;
    color: #ddd;
    font-weight:bold
}

.commands-container{
    width: fit-content;
    padding:10px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,0.1);
    background:transparent;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
    margin-top: 10px;
    margin-bottom: 10px;
}

.label{
    color: #ddd;
    font-weight: bold;
}

.label2{
    color: #ddd;
    font-weight: bold;
    font-size: 35px;
}

.label3{
    color: #ddd;
    font-size: 14px;
    font-style: italic;
}

.label4{
    color: #ddd;
    font-weight: bold;
    font-size: 25px;
    align-items: center;
}

.totals{
opacity: 0;
position: fixed;
}

.extra{
    width: 300px;
    position: fixed;
    bottom: 5%;
    right: 3%;
    padding:10px;
    border-radius:10px;
    color:#fff;
    cursor:pointer;
    transition:0.3s;
    margin-top: 10px;
    margin-bottom: 10px;
    background:linear-gradient(145deg,rgba(23, 26, 33, 0.9),rgba(17, 19, 23, 0.9));
    border:1px solid rgba(23, 26, 33, 0.5);
}

.extra:hover{
    transform:translateY(-6px);
    border-color:rgb(247, 31, 114);
    box-shadow:0 0 25px rgba(247,31,114,0.25);
}

