*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--bg:#081b29;
--card:#0d2436;
--border:#16364b;
--text:#fff;
--muted:#9fb3c4;
--accent:#00abf0;
}

body{
background:var(--bg);
color:var(--text);
font:15px/1.6 Poppins,sans-serif;
}

.page{
width:min(900px,94%);
margin:32px auto;
}

h1{
font:700 1.9rem Cinzel,serif;
margin-bottom:18px;
}

.project-card{
padding:16px;
gap:14px;
align-items:flex-start;
}

.badge{
width:72px;
height:72px;
flex-shrink:0;
}

.project-card h2{
font-size:1rem;
}

.project-card h3{
font-size:.9rem;
}

.project-card p{
font-size:.88rem;
}

.project-card h2{
color:var(--accent);
font-size:1.1rem;
margin-bottom:10px;
}

.project-card h3{
margin:18px 0 6px;
font-size:.95rem;
color:var(--accent);
}

.project-card p{
color:var(--muted);
font-size:.95rem;
}

footer{
margin-top:24px;
padding:16px;
border-top:1px solid var(--border);
text-align:center;
font-size:.85rem;
color:var(--muted);
}

@media(max-width:768px){

.page{
width:95%;
margin:20px auto;
}

h1{
font-size:1.6rem;
}

.project-card{
flex-direction:column;
padding:16px;
gap:16px;
}

.badge{
width:90px;
height:90px;
align-self:center;
}

}

.back-btn{
position:fixed;
top:20px;
right:20px;
z-index:1000;
display:flex;
align-items:center;
justify-content:center;
padding:10px 18px;
background:#7d2e1b;
border:1px solid var(--border);
color:var(--text);
text-decoration:none;
font-size:.9rem;
font-weight:600;
cursor:pointer;
transition:.25s;
}

.back-btn:hover{
background:var(--accent);
border-color:var(--accent);
color:#081b29;
}

.yumi-title{
    color:#ffb703 !important;
}

.seafood-title{
    color:#4fbc18 !important;
}
.project-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    min-height:45px;
}

.project-btn{
    min-width:145px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50px;

    font-size:.85rem;
    font-weight:600;

    letter-spacing:.3px;

    transition:.3s ease;

    text-decoration:none;

    position:relative;
    overflow:hidden;
}

.project-btn.primary{

    background:linear-gradient(
        135deg,
        #00abf0,
        #0077ff
    );

    color:#081b29;

    box-shadow:
    0 8px 20px rgba(0,171,240,.25);
}

.project-btn.primary:hover{

    transform:translateY(-4px);

    box-shadow:
    0 12px 28px rgba(0,171,240,.45);

}

.project-btn.secondary{

    border:1px solid rgba(255,255,255,.25);

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    color:white;

}

.project-btn.secondary:hover{

    background:
    rgba(255,255,255,.18);

    transform:translateY(-4px);

}

.project-btn.placeholder{

    visibility:hidden;

}

@media(max-width:768px){

    .project-buttons{

        gap:12px;

    }

    .project-btn{

        min-width:135px;
        height:35px;
        font-size:.78rem;

    }

}