.pvp-builds-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 35px;
    padding-bottom: 10%;
    background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
    font-family: 'Fredoka', Arial, Helvetica, sans-serif;
}

.pvp-builds-wrap-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pvp-builds-wrap__text {
    font-size: 40px;
    font-weight: 700;
    color: #002f7a;
    text-shadow: 1px 3px 6px rgba(0,0,0,0.15);
    margin-bottom: 10px;
    text-align: center;
}

.pvp-builds-wrap__desc {
    font-size: 15px;
    width: 70%;
    text-align: center;
    color: rgb(37, 37, 37);
}











.pvp-builds-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 90%;
    gap: 25px;
    margin: 35px;
}

/* Base button style */
.pvp-builds-buttons button {
    font-size: 16px;
    padding: 12px 22px;
    border-radius: 14px;
    font-family: 'Fredoka', Arial, Helvetica, sans-serif;
    font-weight: 600;

    color: #000000;
    background: linear-gradient(145deg, #ffffff, #cdcdcd);
    border: none;

    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.18);
    transition:
        transform 0.2s ease,
        background 0.3s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

/* Hover effect (same as values buttons) */
.pvp-builds-buttons button:hover {
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 0 6px rgba(255, 255, 255, 0.5);
}
.builds-buttons-all:hover {
    background: linear-gradient(145deg, #265dff, #002eb5);    
}
.builds-buttons-begginer:hover {
    background: linear-gradient(145deg, #098100, #028c00);    
}
.builds-buttons-advanced:hover {
    background: linear-gradient(145deg, #837800, #c98900);    
}
.builds-buttons-skilled:hover {
    background: linear-gradient(145deg, #860000, #c70000);    
}

/* Keep shared active effects, but no fixed color */
.pvp-builds-buttons button.active {
    color: #ffffff;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.3),
        inset 0 0 6px rgba(255, 255, 255, 0.5);
}
.builds-buttons-all.active {
    background: linear-gradient(145deg, #265dff, #002eb5);
}

.builds-buttons-begginer.active {
    background: linear-gradient(145deg, #098100, #028c00);
}

.builds-buttons-advanced.active {
    background: linear-gradient(145deg, #837800, #c98900);
}

.builds-buttons-skilled.active {
    background: linear-gradient(145deg, #860000, #c70000);
}



/* Click animation */
.pvp-builds-buttons button:active {
    transform: scale(0.96);
}
/* ============================= */
/* PvP BUILDS – RESPONSIVE MEDIA */
/* ============================= */

@media (max-width: 900px) {
    .pvp-builds-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .pvp-builds-wrap__text {
        transform: scale(0.75);
    }

    .pvp-builds-wrap__desc {
        width: 90%;
        font-size: 14px;
    }

    .pvp-builds-buttons button {
        font-size: clamp(12px, 3.5vw, 15px);
        padding: 10px 16px;
    }
}











.popular-trades-input-box {
    display: flex;
    gap: 12px;
    width: 70%;
}

/* --- INDIVIDUAL SEARCH BOX (matches val-search-input-box) --- */
.popular-trades-input-box-1,
.popular-trades-input-box-2 {
    position: relative;
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
}

/* --- ICON (matches val-search-input-icon) --- */
.popular-trades-your-input-picture {
    position: absolute;
    left: 14px;
    height: 60%;
    opacity: 0.65;
    pointer-events: none;
}

/* --- INPUT (matches val-search-input) --- */
.popular-trades-your-input,
.popular-trades-their-input {
    width: 100%;
    height: 100%;
    padding-left: 48px;
    font-size: 15px;

    border-radius: 10px;
    border: 1.8px solid #e3e3e3;
    background: #fafafa;

    outline: none;
    transition: 0.25s ease;
}

/* --- HOVER (exact) --- */
.popular-trades-your-input:hover,
.popular-trades-their-input:hover {
    background: #ffffff;
    border-color: #d5d5d5;
}

/* --- FOCUS (exact) --- */
.popular-trades-your-input:focus,
.popular-trades-their-input:focus {
    border-color: #ffca00;
    box-shadow: 0 0 6px rgba(255, 200, 0, 0.45);
    background: #ffffff;
}

/* --- MOBILE STACK (same behavior) --- */
@media (max-width: 700px) {
    .popular-trades-input-box {
        flex-direction: column;
    }
}





















/* ===============================
   MAIN WRAP
================================ */
.pvp-builds-container {

    width: 80%;
    display: grid;
    gap: 50px;
    grid-template-columns: auto;
    justify-content: center;
    margin-top: 30px;
    padding: 0 10px;
}

/* ===============================
   RARITY FRAME (Skilled = Red Glow)
================================ */
.pvp-builds-rarity-type {
    width: 100%;
    max-width: 920px;
    border-radius: 28px;
    padding: 5px;
    background: linear-gradient(120deg, #fd0000, #b10000);
    box-shadow: 0 8px 25px rgba(177,0,0,0.4);
    display: flex;
    justify-content: center;
}

/* ===============================
   BUILD CARD (Neumorphic)
================================ */
.pvp-builds-slot {
    width: 100%;
    border-radius: 22px;
    background: #f0f0f3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 8px 8px 15px rgba(0,0,0,0.08),
                -8px -8px 15px rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ===============================
   BUILD TYPE BADGE
================================ */
.pvp-builds-slot-info {
    display: flex;
    justify-content: center;
}

.slot-info-main {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(145deg, #4e89ff, #002eb5);
    box-shadow: 0 3px 10px rgba(0,46,181,0.35);
}

/* ===============================
   ITEMS GRID
================================ */
.pvp-builds-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* ITEM CARD */
.pvp-builds-items > div {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #ffffff, #e3e3e3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.08),
                -4px -4px 10px rgba(255,255,255,0.6);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.pvp-builds-items > div:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255,255,255,0.6), 0 0 12px rgba(0,0,0,0.15);
}

/* ITEM IMAGES */
.pvp-builds-items img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

/* ITEM NAMES */
.pvp-builds-items span {
    font-size: 12px;
    font-weight: 600;
    color: #222222;
    text-align: center;
}

/* ===============================
   PROS / CONS BOX
================================ */
.pvp-builds-slot-pros,
.pvp-builds-slot-cons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pvp-builds-slot-pros span:first-child,
.pvp-builds-slot-cons span:first-child {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 10px;
    border-radius: 16px;
}

.pvp-builds-slot-pros span:first-child {
    background: #28a745;
}

.pvp-builds-slot-cons span:first-child {
    background: #dc3545;
}

/* Text details */
.pvp-builds-slot-pros span:not(:first-child),
.pvp-builds-slot-cons span:not(:first-child) {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    flex: 1 1 100%;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 900px) {
    .pvp-builds-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .pvp-builds-slot {
        gap: 12px;
        padding: 15px;
    }

    .slot-info-main {
        font-size: 12px;
        padding: 4px 10px;
    }

    .pvp-builds-items img {
        width: 40%;
        height: 40%;
    }

    .pvp-builds-items span,
    .pvp-builds-slot-pros span:not(:first-child),
    .pvp-builds-slot-cons span:not(:first-child) {
        font-size: 11px;
    }
}