* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ff1493;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2d 100%);
    padding: 20px 0;
    border-bottom: 2px solid #ff1493;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
    position: relative;
    width: 100%;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #ff1493;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav-link:hover {
    background-color: rgba(255, 20, 147, 0.2);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
}

/* Main Content */
main {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
    width: 100%;
}

/* About Page Styles */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #ff1493;
}

.about-container h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

.about-container h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ff69b4;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.about-container p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

.about-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.about-container li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.about-container strong {
    font-size: 1.2em;
    color: #ff69b4;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    align-items: center;
}

.gallery-item {
    width: 100%;
    max-width: 800px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    padding: 30px 0;
}

.pagination-btn {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #000;
    border: none;
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.5);
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    font-size: 1.3em;
    font-weight: bold;
    color: #ff1493;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2d 100%);
    padding: 30px 0;
    border-top: 2px solid #ff1493;
    box-shadow: 0 -4px 20px rgba(255, 20, 147, 0.3);
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-content p {
    color: #ff1493;
    font-size: 1em;
}

.footer-date {
    font-weight: bold;
    font-size: 1.2em;
    text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

/* Preview Page Styles */
.preview-body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
}

.preview-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.6);
}

.image-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.image-wrapper img {
    max-width: 100vw;
    max-height: 100vh;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.image-wrapper img.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 1.8em;
    }
    
    nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9em;
        padding: 6px 12px;
    }
    
    .pagination {
        flex-direction: column;
        gap: 20px;
    }
    
    .pagination-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    
    .close-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
        top: 20px;
        right: 20px;
    }
}

