.more-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%);
    animation: fadeIn 0.8s ease forwards;
    font-family: 'Fredoka', Arial, Helvetica, sans-serif;
}

/* TITLE */
.more-wrap h1 {
    font-size: 52px;
    font-weight: 700;
    color: #002f7a;
    text-shadow: 1px 3px 6px rgba(0,0,0,0.15);
    margin: 0;
    margin-bottom: 35px;
    animation: slideDown 0.7s ease;
}
.more-wrap h3 {
    width: 95%;
    font-size: 18px;
    font-weight: 500;
    color: #4a5d7a; /* softer blue-gray */
    max-width: 650px; /* keeps it readable */
    text-align: center;
    line-height: 1.6;
    margin: 0;
    margin-bottom: 45px;
}


/* GRID */
.more-wrap-tools {
    display: grid;
    width: 92%;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    animation: fadeUp 0.8s ease;
}
@media (max-width: 750px) {
    .more-wrap-tools {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------- */
/* TOOL CARDS — SMOOTH PREMIUM VERSION */
/* --------------------------------------------- */

.tools-trades,
.tools-codes,
.tools-pvp,
.tools-scams {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(150deg, #ffffff, #e5ffff);
    padding: 26px;
    border-radius: 22px;
    position: relative;
    transition: 0.35s ease;
    cursor: pointer;

    /* softer & cleaner shadow */
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.3),
        inset 0 0 12px rgba(255,255,255,0.45);
}


/* soft light sheen */
.tools-trades::before,
.tools-codes::before,
.tools-pvp::before,
.tools-scams::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.32), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    overflow: hidden;
}

/* SMOOTH hover (less extreme) */
.tools-trades:hover,
.tools-codes:hover,
.tools-pvp:hover,
.tools-scams:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 16px 32px rgba(0,0,0,0.15),
        0 0 14px rgba(0,120,255,0.35),
        inset 0 0 18px rgba(255,255,255,0.55);
}

.tools-trades:hover::before,
.tools-codes:hover::before,
.tools-pvp:hover::before,
.tools-scams:hover::before {
    opacity: 1;
}

/* --------------------------------------------- */
/* TEXT INSIDE CARD */
/* --------------------------------------------- */

.tools-trades span,
.tools-codes span,
.tools-pvp span,
.tools-scams span {
    font-size: 26px;
    font-weight: 700;
    color: #005fb7;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    transition: 0.28s ease;
}

.tools-trades:hover span,
.tools-codes:hover span,
.tools-pvp:hover span,
.tools-scams:hover span {
    color: #0078ff;
    text-shadow: 0 0 10px rgba(0,130,255,0.45);
}

/* --------------------------------------------- */
/* IMAGES */
/* --------------------------------------------- */

.tools-trades-img,
.tools-codes-img,
.tools-pvp-img,
.tools-scams-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 16px;
    transition: 0.35s ease;
    filter: brightness(0.95);
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}


@media (max-width: 700px) {
    .more-wrap h1 {
        font-size: 40px;
    }
}



.tools-pvp-desc {
    padding-top: 20px;
    font-size: 12px !important;
    color: gray !important;
}