:root {
    --bg: #121212;
    --text: #e0e0e0;
    --accent: #2ecc71;
    --card: #1e1e1e;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    text-transform: lowercase; 
    font-family: 'Inter', sans-serif; 
}

body { 
    background: var(--bg); 
    color: var(--text); 
    line-height: 1.6; 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}

/* Original Nav Style */
nav { 
    padding: 2rem; 
    text-align: center; 
}

nav a { 
    text-decoration: none; 
    color: var(--text); 
    margin: 0 15px; 
    opacity: 0.7; 
    transition: 0.3s; 
}

nav a:hover { opacity: 1; }

/* Main Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

/* Left-aligned text container */
.about-content {
    text-align: left;
    max-width: 600px;
    width: 100%;
}

/* Horizontal Gallery */
.gallery-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 20px 0;
    width: 100%;
    scrollbar-width: none;
}
.gallery-container::-webkit-scrollbar { display: none; }
.gallery-container img {
    height: 250px;
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Vertical Downloads */
.download-section { 
    margin-top: 4rem; 
    width: 100%;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start; /* Stacked but starts left */
}

.dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    min-width: 240px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dl-btn:hover {
    transform: scale(1.05) rotate(var(--rotation));
}

.dl-btn img { 
    width: 20px; 
    height: 20px; 
    filter: brightness(0) invert(1); 
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.lb-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 2100;
}

.lb-arrow:hover { opacity: 0.5; }

/* Use a simple CSS arrow or your own SVG icons */
.lb-arrow::after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    border-top: 4px solid white;
    border-right: 4px solid white;
}

.lb-prev { left: 30px; transform: translateY(-50%) rotate(-135deg); }
.lb-next { right: 30px; transform: translateY(-50%) rotate(45deg); }

.lb-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background: var(--card);
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: left;
}

footer { padding: 2rem; text-align: center; opacity: 0.5; }
