body{
    margin:0;
    background:#0f1117;
    color:#fff;
    font-family:Arial,sans-serif;
}

.container{
    width:1200px;
    max-width:95%;
    margin:auto;
    padding:40px 0;
}

h1{
    margin-bottom:30px;
}

.album-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fill,minmax(280px,1fr));

    gap:20px;
}

.album-card{
    background:#1a1d29;
    border:1px solid #2d3345;
    border-radius:12px;
    padding:30px;
    text-decoration:none;
    color:#fff;
}

.album-card:hover{
    border-color:#4f8cff;
}
.back-btn{
    display:inline-block;
    margin-bottom:20px;
    color:#4f8cff;
    text-decoration:none;
}

.photo-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fill,minmax(320px,1fr));

    gap:20px;
}

.photo-card{
    background:#1a1d29;
    border:1px solid #2d3345;
    border-radius:12px;
    overflow:hidden;
}
.photo-card img{
    width:100%;
    max-height:350px;
    object-fit:contain;
    background:#000;
}

.photo-info{
    padding:15px;
}

.photo-info h3{
    margin-bottom:10px;
}
#lightbox{
    display:none;
    position:fixed;
    z-index:99999;
    left:0;
    top:0;
    width:100vw;
    height:100vh;
    background:rgba(0,0,0,0.95);

    justify-content:center;
    align-items:center;

    position:fixed;
}
#lightbox-img{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    max-width:95%;
    max-height:95%;
}
.photo-info h3{
    margin-bottom:10px;
}

.photo-info p{
    color:#c8cedd;
}
.album-card{
    background:#1a1d29;
    border:1px solid #2d3345;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

.album-card:hover{
    transform:translateY(-3px);
    border-color:#4f8cff;
}

.album-cover{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.album-content{
    padding:20px;
}

.album-content h2{
    margin-bottom:10px;
}

.album-content p{
    color:#aab3c5;
}
#prev-btn,
#next-btn{
    position:fixed;
    top:50%;
    transform:translateY(-50%);
    font-size:70px;
    color:#fff;
    cursor:pointer;
    user-select:none;
    z-index:100000;
    padding:20px;
    font-weight:bold;
}

#prev-btn{
    left:25px;
}

#next-btn{
    right:25px;
}