*{
    font-family: 'Inter', sans-serif;
}
html, body{
    margin: 0;
    overflow-x: hidden;
}
body{
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,0.03),
            transparent 350px
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255,255,255,0.025),
            transparent 450px
        ),
        radial-gradient(
            circle at 50% 40%,
            rgba(255,255,255,0.02),
            transparent 500px
        ),
        #0f1113;
		
		
		
		padding-right: 220px;
}

body::-webkit-scrollbar{
    width: 8px;
}

body::-webkit-scrollbar-track{
    background: #151719;
}

body::-webkit-scrollbar-thumb{
    background: #2d3136;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover{
    background: #3a3f45;
}
body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:40px 40px;
    z-index:-1;
}
.hidden {
    display: none !important;
}


/* Barra superior */
.topbar{
    width:100%;
    height:70px;
    background:#1e1e1e;
    border-bottom:1px solid #333;

    display:flex;
    align-items:center;
    padding:0 20px;
}

/* Logo */
.logo{
    height:50px;
    width:auto;
}

/* Contenedor del buscador */
.search-container{
    flex:1;
    display:flex;
    justify-content:center;
}

/* Input */
.search-box{
    width:400px;
    max-width:80%;

    padding:10px 15px;

    border:none;
    border-radius:20px;

    background:#2b2b2b;
    color:white;
    outline:none;
}

.search-box::placeholder{
    color:#aaa;
}
.filters-panel{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    padding:20px;

    background:#111;
    border-bottom:1px solid #1f1f1f;
}

.dropdown{
    position:relative;
}

.dropdown-btn{
    background:#181818;
    color:#fff;

    border:1px solid #262626;
    border-radius:2px;

    padding:12px 16px;

    min-width:170px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;

    transition:all .2s ease;
}

.dropdown-btn:hover{
    background:#1d1d1d;
    border-color:#333;
}

.dropdown-menu{
    position:absolute;
    top:calc(100% + 8px);
    left:0;

    width:100%;

    background:#181818;

    border:1px solid #262626;
    border-radius:12px;

    overflow:hidden;

    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);

    transition:.2s ease;

    z-index:100;
}

.dropdown.active .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-item{
    padding:12px 14px;
    color:#ddd;
    cursor:pointer;

    transition:background .15s ease;
}

.dropdown-item:hover{
    background:#252525;
}


/* Animaciones */
.filters-panel.show{
    animation:slideDown 0.6s ease forwards;
}

.filter.show{
    opacity:1;
    transform:translateY(0);
}

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
.footer{
    position:relative;

    width:100%;
    min-height:60px;

    background:#1a1a1a;
    border-top:1px solid #333;

    display:flex;
    align-items:center;

    padding:0 25px;
}

.footer p{
    color:#888;
    font-size:14px;
}

.footer-links{
    position:absolute;
    left:50%;
    transform:translateX(-50%);

    display:flex;
    gap:25px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
    font-size:14px;
}

.footer-links a:hover{
    color:white;
}
.models-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, 220px);
    justify-content: center;
    gap: 10px;
    padding: 20px;
}
.model-card {
    width: 100%;
}
.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:40px;
}

.pagination button{
    background:#111315;
    color:#dcdcdc;
    border:1px solid #222;
    border-radius:10px;
    padding:10px 18px;
    cursor:pointer;
    transition:all .2s ease;
    font-size:14px;
}

.pagination button:hover{
    background:#1a1d20;
    border-color:#333;
    transform:translateY(-1px);
}

.pagination button:active{
    transform:translateY(0);
}

#pageInfo{
    color:#8b8b8b;
    font-size:14px;
    min-width:100px;
    text-align:center;
}.sidebar{
    position: fixed;
    top: 0;
    right: 0;

    width: 220px;
    height: 100vh;

    background: #2a2d31;
    border-left: 1px solid #3a3d42;

    display: flex;
    flex-direction: column;

    padding: 20px 15px;
    box-sizing: border-box;

    z-index: 1000;
}.sidebar-btn{
    display: flex;
    align-items: center;
cursor: pointer;
    width: 100%;
    min-height: 50px;

    margin-bottom: 10px;
    padding: 0 15px;

    background: #33373c;
    border: none;

    border-radius: 10px;

    color: #e5e5e5;
    text-decoration: none;

    transition: background .2s ease;
}

.sidebar-btn:hover{
    background: #454a50;
}



.projects-section{
    margin-top:90px;
    text-align:center;

    background: rgba(26, 28, 31, 0.8);

    padding-top:30px;
    padding-bottom:40px;

    border-radius:20px;
}

.section-title{
    display:inline-block;

    background:#2d3136;
    color:#e5e5e5;

    padding:10px 20px;

    border-radius:12px;

    margin-bottom:50px;
}

.projects-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.project-card{
    width:200px;

    border-radius:12px;
    overflow:hidden;

    cursor:pointer;
    transition:.2s;
}

.project-card:hover{
    transform:translateY(-4px) scale(1.02);
}

.project-cover{
    width:100%;
    aspect-ratio:2/3;

    object-fit:cover;
    display:block;
}.comments-wrapper {
  background: #111; /* o el color que quieras */
  padding: 15px;
  border-radius: 10px;
}