/* style.css */
body {
    background-color: #0d0d0d;
    color: #dcdcdc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #4dd0e1;
}

.navbar-custom {
    background-color: #1a1a1a;
    box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.album-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
    justify-content: center;
}

.album-card {
    margin: 8px;
    background-color: #1b1b1b;
    border-radius: 10px;
    overflow: hidden;
    flex: 0 0 calc(16.66% - 16px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.album-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

.album-card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #2a2a2a;
}

.album-title {
    text-align: center;
    font-size: 1rem;
    margin: 6px;
    color: #eeeeee;
}

.album-username {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #999999;
}

@media (max-width: 1440px) {
    .album-card {
        flex: 0 0 calc(25% - 16px);
    }
}
@media (max-width: 768px) {
    .album-card {
        flex: 0 0 calc(50% - 16px);
    }
}

.ad-area {
    text-align: center;
    margin-top: 10px;
}

.pagination-container {
    text-align: center;
    margin: 15px 0;
}

.pagination .page-link {
    color: #dcdcdc;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 6px;
    margin: 0 3px;
    padding: 6px 12px;
    transition: all 0.2s;
}

.pagination .page-link:hover {
    background-color: #4dd0e1;
    border-color: #4dd0e1;
    color: #0d0d0d;
}

.pagination .page-item.active .page-link {
    background-color: #ff7043;
    border-color: #ff7043;
    color: #fff;
}

.jump-page input.jump-input {
    width: 60px;
    margin: 0 5px;
    height: 36px;
    padding: 0 8px;
    border-radius: 6px;
    border: 1px solid #444;
    background-color: #222;
    color: #fff;
    text-align: center;
}

.jump-page input.jump-input:focus {
    outline: none;
    border-color: #4dd0e1;
}

.jump-page button.go-btn {
    color: #fff;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.jump-page button.go-btn:hover {
    background-color: #4dd0e1;
    border-color: #4dd0e1;
    color: #0d0d0d;
}

footer {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #222;
}
