/* ========================================
   BOTS UPDATES
   GREEN PROJECT © 2026
======================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --bg:#101010;
    --bg2:#181818;
    --card:#1d1d1d;
    --border:#2d2d2d;

    --accent:#8BC34A;
    --accentHover:#9CCC65;

    --text:#ffffff;
    --text2:#bcbcbc;

    --added:#66BB6A;
    --changed:#FFD54F;
    --fixed:#EF5350;

    --shadow:0 15px 35px rgba(0,0,0,.35);

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:var(--bg);

    color:var(--text);

    min-height:100vh;

}


/* =========================== */

.background{

    position:fixed;

    inset:0;

    background:
        radial-gradient(circle at top,#222 0%,#111 45%,#0d0d0d 100%);

    z-index:-2;

}

/* =========================== */

header{

    width:min(1200px,95%);

    margin:auto;

    padding:60px 0 30px;

    text-align:center;

}

header h1{

    font-size:52px;

    font-weight:700;

    letter-spacing:4px;

    margin-bottom:18px;

}

header p{

    color:var(--text2);

    line-height:30px;

    font-size:17px;

}

/* =========================== */

.toolbar {

    width: min(1000px, 95%);

    margin: 30px auto;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

}

.toolbar input{

    flex:1;

    background:var(--card);

    color:white;

    border:1px solid var(--border);

    border-radius:12px;

    padding:15px 18px;

    font-size:15px;

    outline:none;

    transition:.25s;

}

.toolbar input:focus{

    border-color:var(--accent);

    box-shadow:0 0 0 3px rgba(139,195,74,.18);

}

.toolbar select {

    background:#1b1b1b;

    color:white;

    border:1px solid #303030;

    padding:12px 20px;

    border-radius:10px;

    min-width:250px;

    font-size:15px;

}

/* =========================== */

.updates{

    width:min(1200px,95%);

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(420px,1fr));

    gap:25px;

    padding-bottom:70px;

}

/* =========================== */

.card{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:18px;

    padding:28px;

    box-shadow:var(--shadow);

    transition:.25s;

    animation:show .45s ease;

}

.card:hover{

    transform:translateY(-6px);

    border-color:#3b3b3b;

}

/* =========================== */

.card-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:18px;

}

.product{

    display:inline-block;

    font-size:12px;

    text-transform:uppercase;

    color:var(--accent);

    letter-spacing:2px;

    margin-bottom:10px;

}

.card h2{

    font-size:26px;

    line-height:34px;

}

.version{

    background:var(--accent);

    color:#111;

    font-weight:700;

    padding:7px 14px;

    border-radius:50px;

    white-space:nowrap;

}

/* =========================== */

.meta{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:10px;

    color:var(--text2);

    margin-bottom:25px;

    font-size:14px;

}

/* =========================== */

.section{

    margin-bottom:22px;

    padding-left:16px;

}

.section h3{

    margin-bottom:10px;

    font-size:17px;

}

.section ul{

    padding-left:18px;

}

.section li{

    margin:8px 0;

    color:#ddd;

    line-height:24px;

}

/* =========================== */

.added{

    border-left:4px solid var(--added);

}

.added h3{

    color:var(--added);

}

.changed{

    border-left:4px solid var(--changed);

}

.changed h3{

    color:var(--changed);

}

.fixed{

    border-left:4px solid var(--fixed);

}

.fixed h3{

    color:var(--fixed);

}


/* =========================== */

.button{

    display:inline-block;

    margin-top:12px;

    background:var(--accent);

    color:#111;

    text-decoration:none;

    padding:13px 22px;

    border-radius:10px;

    font-weight:600;

    transition:.25s;

}

.button:hover{

    background:var(--accentHover);

}

/* =========================== */

footer{

    border-top:1px solid var(--border);

    text-align:center;

    padding:35px;

    color:#777;

    font-size:14px;

}

/* =========================== */

@keyframes show{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/* =========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#151515;

}

::-webkit-scrollbar-thumb{

    background:#3a3a3a;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#555;

}

/* =========================== */

@media(max-width:900px){

    .updates{

        grid-template-columns:1fr;

    }

    .toolbar{

        flex-direction:column;

    }

    .toolbar select{

        width:100%;

    }

}

@media(max-width:650px){

    header h1{

        font-size:38px;

    }

    .card{

        padding:20px;

    }

    .card h2{

        font-size:22px;

    }

    .card-top{

        flex-direction:column;

    }

    .version{

        align-self:flex-start;

    }

}

.admin-button{


display:inline-block;


margin-top:20px;


padding:12px 22px;


background:#8bc34a;


color:#111;


border-radius:10px;


text-decoration:none;


font-weight:600;


transition:.2s;


}



.admin-button:hover{


transform:translateY(-2px);


background:#9ccc65;


}

.search-button {

    background:#8bc34a;

    color:#111;

    border:none;

    padding:12px 25px;

    border-radius:10px;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.2s;

}


.search-button:hover {

    background:#9ccc65;

    transform:translateY(-2px);

}