* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
    padding: 2rem;
}

header {
    text-align: left;
    margin-bottom: 3rem;
}

header h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #333;
    margin: 0;
}

.video-showcase {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.video-container {
    flex: 1;
    min-width: 400px;
}

.video-thumbnail {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-thumbnail img {
    width: 100%;
    height: 315px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button {
    background: rgba(255,0,0,0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-description {
    flex: 1;
    min-width: 300px;
}

.video-description h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.video-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.artwork-section {
    width: 100%;
}

.artwork-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    text-align: left;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.artwork-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.artwork-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1rem;
    object-fit: contain;
}

.caption {
    text-align: left;
}

.caption h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #333;
    font-weight: 600;
}

.caption p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.lightbox img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 1.5rem;
    text-align: center;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.lightbox-info p {
    color: #666;
    font-size: 1rem;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.close:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .video-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .video-container {
        min-width: auto;
    }
    
    .video-description {
        min-width: auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.5rem;
    }
    
    .gallery-grid {
        gap: 1.5rem;
    }
}