
.calc-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,250,255,0.9));
    margin-top: 35px;
    padding-bottom: 10%;
}

.calc-main__calc-title {
    padding-bottom: 2%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;

}
h1 {
    padding: 0;
    margin: 0;
}
/* Main title */
.calc-title {
    font-size: 40px;       /* Large title */
    font-weight: 700;
    color: #002f7a;
    margin-bottom: 0px;
}

/* Description paragraph */
.calc-description {
    width: 95%;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .calc-title {
        font-size: 30px;
    }

    .calc-description {
        font-size: 13px;
    }
}








.calc-main__trade {
    padding-top: 2%;
    padding-bottom: 2%;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,250,255,0.9));
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;    
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.calc-main__trade-text {
    font-size: 40px;
    font-weight: 600;
    color: #003a85; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}
.calc-main__trade-text-game {
    width: 275px;
    justify-content: center;
    background: linear-gradient(135deg, #004cbf, #0d0083);
    padding: 10px 16px;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 115, 239, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
@media (max-width: 700px) {
    .calc-main__trade-text, .calc-main__trade-text-game {
        transform: scale(0.7);
    }
}


.calc-main__wl {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}


.calc-main__wl-measure {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 30px;
    font-weight: 500;
    color: #000000;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}




























.calc-main__wl-measure-bar {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
    height: 30px;
    border-radius: 20px;
    border: 2px solid #000000ff; 
    overflow: hidden;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.3), 0 2px 5px rgba(0,0,0,0.2);
    background-color: #eceff1; 
    margin-bottom: 5%;
}

.calc-main__wl-measure-text {
    font-weight: 600;
    margin-bottom: 5px;
}

.calc-main__wl-measure-bar-text,
.calc-main__wl-measure-bar-text2 {
    position: absolute;
    z-index: 2;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.calc-main__wl-measure-bar-text {
    left: 12px;
    color: rgb(255, 255, 255);
    font-weight: 500;
}

.calc-main__wl-measure-bar-text2 {
    right: 12px;
}


.measure-bar-your,
.measure-bar-their {
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
    border-radius: 0px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
    transition: width 0.6s ease-in-out, background 0.6s ease;
}

.measure-bar-their {
    right: 0;
    background: linear-gradient(90deg, #00ff6a, #00d26c); 
}

.measure-bar-your {
    left: 0;
    background: linear-gradient(90deg, #d70000, #ff1744); 
}




























.calc-main__wl-box {
    display: flex;
    width: 100%;
    flex-direction: row;
    column-gap: 5%;
}

.calc-main__wl-box-both {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px;
}

.calc-main__wl-box-your-text,
.calc-main__wl-box-their-text {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #000000;
}


.calc-main__wl-box-slot-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff; 
    border-radius: 12px;
    padding: 10px;
}


.calc-main__wl-box-slot-info {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    justify-content: space-evenly;
    border-radius: 10px;
    background: linear-gradient(135deg, #0040a1, #0d0083);
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.2);
}

.wl-box__slot-info-value,
.wl-box__slot-info-price,
.wl-box__slot-info-demand {
    display: flex;
    flex-direction: row;
    column-gap: 7px;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}


.calc-main__wl-box-slot-info img {
    height: 60%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}


.wl-box__slots-container {
    display: grid;
    width: 100%;
    justify-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: linear-gradient(135deg, #1976d2, #2196f3);
    border-radius: 15px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.2);
}


.wl-box__slots {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Fredoka', Arial, Helvetica, sans-serif;
    font-weight: 500;
    background-color: #ffffff; /* bright yellow for contrast */
    width: 80%;
    border-radius: 10px;
    min-height: 120px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}
.wl-box__slots:hover {
    transform: scale(1.03);
    cursor: pointer;
    box-shadow: 0 12px 20px rgba(0,0,0,0.25);
}





.wl-box__discord {
    padding-top: 3%;
    padding-bottom: 3%;
    display: flex;
    justify-content: center; 
}
@media (max-width: 700px) {
    .wl-box__discord {
        transform: scale(0.8);
    }
}


.wl-box__discord-trade {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px; 
    background: linear-gradient(135deg, #1b6cbe, #0169bf);
    border: none;
    border-radius: 14px;
    padding: 14px 28px;
    font-size: 23px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25), inset 0 -3px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}


.wl-box__discord-trade img.wl-box__discord-trade-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}


.wl-box__discord-trade:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35), inset 0 -3px 0 rgba(255,255,255,0.25);
}


.wl-box__discord-trade:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2), inset 0 -2px 0 rgba(255,255,255,0.2);
}




.wl-box-slot-add-image {
    width: 30%;
    width: 30%;
}










.wl-box-slots-fruit-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    align-items: center;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    background: transparent; 
}


.wl-box-slots-fruit-quantity {
    position: absolute;
    top: 3%;
    left: 3%;
    background: #000000; 
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 2px 7px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
    z-index: 11;
    text-align: center;
}


.wl-box-slots-fruit-item-permanent {
    position: absolute;
    top: 3%;
    right: 3%;
    background: linear-gradient(45deg, #ffdd55, #ffaa00); 
    color: #5a3e00;
    font-weight: 700;
    font-size: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 2px 6px;
    white-space: nowrap;
    z-index: 10;
    text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

.wl-box-slots-fruit-item-image {
    width: 70%;
    max-width: 90px;
    min-width: 50px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    transition: transform 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.wl-box-slots-fruit-item-value {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    padding: 2px 6px;
    background: rgba(255,255,255,0.9);
    text-align: center;
}


@media (max-width: 900px) {
    .wl-box-slots-fruit-quantity { font-size: 12px; padding: 1px 5px; }
    .wl-box-slots-fruit-item-permanent { font-size: 10px; padding: 1px 3px; }
    .wl-box-slots-fruit-item-image { width: 70%;}
    .wl-box-slots-fruit-item-value { font-size: 20px;}
}

@media (max-width: 500px) {
    .wl-box-slots-fruit-quantity { font-size: 10px; padding: 1px 5px; }
    .wl-box-slots-fruit-item-permanent { font-size: 9px; padding: 1px 2px; }
    .wl-box-slots-fruit-item-image { width: 35%; max-width: 40px; }
    .wl-box-slots-fruit-item-value { font-size: 15px; padding: 1px 2px; }
}









.calculator-questions-box {

    margin-top: 6%;
    margin-bottom: 6%;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    padding: 10px 0;
    margin-left: 1.5%;
    max-width: 750px;
}

.calculator-questions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 90%;
}


.calculator-question-card {
    background: linear-gradient(145deg, #ffffff, #f3f7ff);
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
    padding: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    z-index: 1;
}

.calculator-question-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 28px rgba(0, 45, 120, 0.12);
}


.calculator-question {
    font-size: 34px;
    font-weight: 800;
    color: #003a85;
    position: relative;
    padding-left: 15px;
}

.calculator-question::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(180deg, #265dff, #002eb5);
}


.calculator-question-info {
    color: #373737;
    line-height: 1.6;
}
