:root{
    --bg:#121212;
    --text:#e5e7eb;
    --muted:#66b2b2;
    --border:#e5e7eb;
    --accent:#66b2b2;
    --code:#222222;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--bg);
    color:var(--text);
    font-family:Inter,system-ui,sans-serif;
    line-height:1.7;
}

.container{
    width:min(850px,92%);
    margin:auto;
}

header{
    padding:70px 0 40px;
    border-bottom:1px solid var(--border);
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:60px;
}

.logo{
    font-weight:700;
    font-size:1rem;
}

.links{
    display:flex;
    gap:12px;
}

.button{
    text-decoration:none;
    color:var(--text);
    border:1px solid var(--border);
    border-radius:10px;
    padding:10px 16px;
    transition:.15s;
    font-weight:500;
    background:#222222;
    cursor:pointer;
    font-size:.95rem;
}

.button:hover{
    background:#020202;
}

.hero h1{
    font-size:3rem;
    line-height:1.1;
    margin-bottom:16px;
}

.hero p{
    color:var(--muted);
    max-width:650px;
    font-size:1.1rem;
}

main{
    padding:70px 0;
}

section{
    margin-bottom:90px;
}

h2{
    font-size:2rem;
    margin-bottom:20px;
}

p{
    color:var(--muted);
    margin-bottom:18px;
}

.contact-box{
    display:flex;
    flex-direction:column;
    gap:16px;
    max-width:700px;
}

input,
textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid var(--border);
    border-radius:10px;
    font-family:inherit;
    font-size:1rem;
    resize:vertical;
    outline:none;
}

input:focus,
textarea:focus{
    border-color:var(--accent);
}

code{
    background:#f3f4f6;
    padding:3px 7px;
    border-radius:6px;
    font-family:Consolas,monospace;
}

pre{
    background:var(--code);
    color:white;
    padding:22px;
    border-radius:14px;
    overflow:auto;
    margin-top:20px;
}

pre code{
    background:none;
    color:inherit;
    padding:0;
}

footer{
    border-top:1px solid var(--border);
    padding:40px 0;
    color:var(--muted);
    font-size:.95rem;
}
.icon-button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    text-decoration:none;
    color:var(--text);

    border:1px solid var(--border);
    border-radius:10px;

    padding:10px 16px;

    transition:.15s;
    background:white;
    font-weight:500;
}

.icon-button:hover{
    background:#f5f5f5;
}

.icon-button i{
    font-size:18px;
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:18px;
}

.item{
    border:1px solid var(--border);
    border-radius:14px;
    padding:14px;
    background:white;
}

.item img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:10px;
    background:#f3f4f6;
    margin-bottom:10px;
}

.item h3{
    font-size:1rem;
    margin-bottom:4px;
}

.item p{
    font-size:.9rem;
    color:var(--muted);
    margin:0;
}
.gallery{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
}

.gallery img{
    width:100%;
    border-radius:14px;
    border:1px solid var(--border);
    background:#f3f4f6;
}

.specs{
    border:1px solid var(--border);
    border-radius:14px;
    overflow:hidden;
}

.row{
    display:flex;
    justify-content:space-between;
    padding:14px 16px;
    border-bottom:1px solid var(--border);
    font-size:.95rem;
}

.row:last-child{
    border-bottom:none;
}

.row span:first-child{
    color:var(--muted);
}
footer{
    border-top:1px solid var(--border);
    padding:40px 0;
    color:var(--muted);
    font-size:.95rem;
}

footer .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    flex-wrap:wrap;
}

footer{
    color:var(--muted);
}
footer a{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-left:8px;
    color:white;
    text-decoration:none;

    transition:0.2s ease;
    opacity:0.85;
}

footer a:hover{
    opacity:1;
    transform:translateY(-2px);
}

footer i{
    color:white;
    font-size:1.2rem;
}
