/*
Theme Name: GIFPX Theme Live V3
Theme URI: https://example.com/gifpx
Author: Ben
Description: Retro vaporwave-styled GIF gallery theme with local Lightbox.
Version: 1.5
*/

body {
    background-color: #0d001a;
    font-family: 'Press Start 2P', monospace;
    color: #ff66cc;
    text-align: center;
}

h1, h2, h3 {
    color: #cc66ff;
}

a {
    color: #ff33cc;
    text-decoration: none;
}

a:hover {
    text-shadow: 0 0 5px #ff33cc;
}

.gifpx-container {
    border: 2px solid #cc66ff;
    padding: 20px;
    margin: 30px auto;
    max-width: 700px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px #cc66ff;
}

.gifpx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gifpx-item a,
.gifpx-item img {
    cursor: pointer;
}

.gifpx-item img {
    width: 100%;
    border: 2px solid #ff33cc;
    border-radius: 6px;
    box-shadow: 0 0 10px #cc66ff;
    transition: transform 0.3s ease;
}

.gifpx-item img:hover {
    transform: scale(1.1);
}
