/* Screenshots Page Styles */

/* Navigation */
.page-nav {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.page-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    max-height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f25c78;
}

/* Screenshots Header */
.screenshots-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.screenshots-header h1 {
    font-size: 3rem;
    color: #e8e8e8;
    margin-bottom: 20px;
    font-weight: 300;
}

.header-description {
    font-size: 1.2rem;
    color: #b8b8b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Screenshot Gallery */
.screenshot-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.screenshot-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 92, 120, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.screenshot-info {
    padding: 25px;
}

.screenshot-info h3 {
    color: #e8e8e8;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.screenshot-info p {
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Screenshot Info Section */
.screenshot-info-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.info-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-content h2 {
    font-size: 2.5rem;
    color: #f25c78;
    margin-bottom: 30px;
    font-weight: 400;
}

.info-content p {
    font-size: 1.1rem;
    color: #b8b8b8;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Back Navigation */
.back-navigation {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.5);
}

.back-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Modal for full-size screenshots */
.screenshot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    cursor: pointer;
}

.screenshot-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

/* Responsive Design */
@media (max-width: 768px) {
    .screenshots-header h1 {
        font-size: 2.5rem;
    }
    
    .header-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .screenshot-item img {
        height: 200px;
    }
    
    .screenshot-info {
        padding: 20px;
    }
    
    .info-content {
        padding: 0 20px;
    }
    
    .info-content h2 {
        font-size: 2rem;
    }
    
    .back-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .screenshots-header {
        padding: 60px 0 40px;
    }
    
    .screenshot-gallery {
        padding: 60px 0;
    }
    
    .screenshots-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .screenshot-item img {
        height: 180px;
    }
    
    .screenshot-info {
        padding: 15px;
    }
    
    .screenshot-info h3 {
        font-size: 1.2rem;
    }
    
    .screenshot-info p {
        font-size: 0.95rem;
    }
}