* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f23 100%);
    color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    padding: 8px 16px;
    transition: all 0.3s;
    border-radius: 25px;
}

.navbar a:hover {
    background: #ffaa00;
    color: #000;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 48px;
    color: #ffaa00;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #aaa;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.photo-card {
    background: rgba(20, 20, 40, 0.8);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #333;
}

.photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #ffaa00;
}

.photo-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background-color: #000;}

.photo-card:hover img {
    transform: scale(1.05);
}

.photo-info {
    padding: 15px;
}

.photo-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffaa00;
    margin-bottom: 8px;
}

.photo-details {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
}

.photo-description {
    font-size: 14px;
    color: #ccc;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
    border: 2px solid #ffaa00;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    margin: 0 20px;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ffaa00;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    color: #555;
    border-top: 1px solid #333;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 700px) {
    .navbar a {
        margin: 0 8px;
        font-size: 14px;
    }
    .page-header h1 {
        font-size: 32px;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
    .photo-card img {
        height: 220px;
    }
}