:root{
    --bg:#0b0f14;
    --line:rgba(255,255,255,.10);
    --muted:#a7b3c7;
    --text:#f3f6ff;
    --brand:#ff7a18;
    --brand2:#ffcf5a;
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:system-ui,-apple-system,Segoe UI,Roboto;
    background:radial-gradient(900px 600px at 20% 0%, rgba(255,122,24,.18), transparent 60%),var(--bg);
    color:var(--text);
}

a{text-decoration:none;color:inherit}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 16px;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:70px;
}

.logo{
    width:36px;
    height:36px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--brand),var(--brand2));
}

.btn{
    padding:10px 16px;
    border-radius:14px;
    font-weight:900;
    border:1px solid var(--line);
    background:rgba(255,255,255,.05);
}

.btn.primary{
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    border:0;
    color:#1b120a;
}

.hero{
    padding:50px 0;
}

h1{
    font-size:42px;
    margin:0;
}

.sub{
    color:var(--muted);
    margin-top:10px;
    max-width:700px;
}

/* GRID 4 PER ROW */
.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:30px;
}

@media(max-width:1100px){
    .grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:600px){
    .grid{grid-template-columns:1fr;}
}

.card{
    border:1px solid var(--line);
    border-radius:18px;
    padding:14px;
    background:rgba(255,255,255,.04);
    transition:all .2s ease;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.4);
}

.thumb{
    height:160px;
    border-radius:14px;
    overflow:hidden;
    background:#000;
    margin-bottom:12px;
}

.thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.card h3{
    margin:6px 0 4px 0;
    font-size:15px;
    font-weight:700;
}

.desc{
    color:var(--muted);
    margin:0;
    font-size:14px;
}


.updateForm input,
.updateForm textarea{
width:100%;
padding:8px;
margin-top:4px;
margin-bottom:10px;
border-radius:6px;
border:1px solid #333;
background:#000;
color:#fff;
}

.updateForm textarea{
height:80px;
}

.saveBtn{
background:#ff7a18;
border:0;
padding:8px 14px;
border-radius:8px;
font-weight:700;
cursor:pointer;
}

.updateMsg{
margin-top:8px;
color:#7cff7c;
font-size:13px;
}

.editMode input,
.editMode textarea{
width:100%;
padding:8px;
margin-top:5px;
margin-bottom:10px;
border-radius:6px;
border:1px solid #333;
background:#000;
color:#fff;
}

.editMode textarea{
height:80px;
}

.saveBtn{
background:#ff7a18;
border:0;
padding:8px 14px;
border-radius:8px;
font-weight:700;
cursor:pointer;
margin-right:5px;
}

.cancelBtn{
background:#444;
border:0;
padding:8px 14px;
border-radius:8px;
color:#fff;
cursor:pointer;
}

.updateMsg{
margin-top:8px;
color:#7cff7c;
font-size:13px;
}








.gbtn{
    padding:10px 16px;
    border-radius:14px;
    font-weight:900;
    border:1px solid var(--line);
    background:rgba(255,255,255,.05);
}

.gbtn.primary{
    background:linear-gradient(135deg,var(--brand),var(--brand2));
    border:0;
    color:#1b120a;
}







/* GOOGLE BUTTON */

.gbtn.google{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    width:100%;
    padding:12px 18px;
    border-radius:14px;
    font-weight:900;
    border:1px solid var(--line);
    background:#ffffff;
    color:#333;
    cursor:pointer;
    transition:all .2s ease;
}

.gbtn.google:hover{
    background:#f5f5f5;
}

/* GOOGLE ICON */

.gbtn.google img{
    width:64px;
    height:64px;
}


