body {
    font-family: 'Orbitron', 'Arial Black', Arial, sans-serif;
    background: linear-gradient(120deg, #232526 0%, #414345 100%);
    margin: 0;
    padding: 0;
    text-align: center;
    min-height: 100vh;
    color: #e0e0e0;
}

.main {
    max-width: 700px;
    margin: 20px auto 0 auto; /* reduced top margin */
    background: #333;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
    padding: 16px 8px;
    text-align: left;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.contact-links a {
    margin: 0 8px;
    color: #00e5ff;
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.contact-sep {
    display: none;
}

@media (max-width: 600px) {
    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .contact-links a {
        margin: 0;
        font-size: 1rem;
    }
    .contact-sep {
        display: none;
    }
}

#description {
    background: #2c2c2c;
    border-radius: 12px;
    padding: 24px 18px;
    margin: 24px 0;
    text-align: left;
}

#description dt {
    font-weight: bold;
    color: #ffb300;
    margin-top: 18px;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

#description dd {
    margin-left: 0;
    margin-bottom: 12px;
    color: #e0e0e0;
    font-size: 1rem;
    padding-left: 18px;
}

h1 {
    margin-top: 40px;
    color: #ffb300;
    font-size: 2.8rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

a {
    color: #00e5ff;
    text-decoration: none;
}

a:hover {
    color: #ffb300;
    text-decoration: underline;
}

a i {
    margin-right: 8px;
    color: #ffb300;
}

.image-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin: 40px auto;
    max-width: 1100px;
}

.image-list img {
    width: 220px;
    height: 160px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 1px 4px #00e5ff;
    background: #fff;
    padding: 0;
    object-fit: cover;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    border: 2px solid #ffb300;
}

.image-list img:hover {
    transform: scale(1.07) rotate(-1deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 1.5px 8px #ffb300;
    border-color: #00e5ff;
    cursor: pointer;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* Add this line */
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80vw;
    max-height: 80vh;
    border-radius: 16px;
    box-shadow: 0 8px 32px #000a;
}

.close {
    position: absolute;
    top: 32px;
    right: 48px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1010;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    font-size: 2.5rem;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    transform: translateY(-50%);
    z-index: 1010;
}

.prev {
    left: 40px;
}

.next {
    right: 40px;
}

.caption {
    color: #fff;
    text-align: center;
    margin-top: 18px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
}