/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2f2f2f;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

/* Header styles */
header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Contact info styles */
.contact-info {
    margin-bottom: 30px;
    text-align: center;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-info p {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Music discography section */
.music-discography {
    margin-bottom: 40px;
    text-align: center;
}

.music-discography p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.music-discography a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    transition: color 0.2s ease;
}

.music-discography a:hover {
    color: #cccccc;
}

/* Pytti section */
.pytti-section {
    margin-bottom: 50px;
    text-align: center;
}

.pytti-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.pytti-section p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.pytti-section p strong {
    font-weight: bold;
}

.pytti-section a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    transition: color 0.2s ease;
}

.pytti-section a:hover {
    color: #cccccc;
}

/* Aliases styles */
.aliases {
    margin-bottom: 40px;
    text-align: center;
}

.aliases p {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Reels section */
.reels {
    text-align: center;
}

.reels h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.reels h3 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: normal;
}

/* Video gallery */
.video-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.video-item iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.video-item h4 {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    font-weight: normal;
}

.music-credit {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #aaaaaa;
    font-style: italic;
    text-align: center;
}

/* Testimonials section */
.testimonials {
    margin-top: 60px;
    text-align: center;
}

.testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #111;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 1001;
}

.lightbox-close:hover {
    color: #cccccc;
    transform: scale(1.1);
}

/* Closing message */
.closing-message {
    text-align: center;
    margin: 40px 0;
}

.closing-message p {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Contact info */
.contact-info {
    text-align: center;
    margin: 40px 0;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-info p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-links {
    margin-top: 15px;
}

.contact-links p {
    margin: 5px 0;
}

.contact-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid #ffffff;
    transition: color 0.2s ease;
}

.contact-links a:hover {
    color: #cccccc;
}

/* YouTube Shorts vertical embed */
.video-item-short iframe {
    width: 315px;
    max-width: 315px;
    height: 560px;
}

/* Demiurge Live section */
.demiurge-live {
    text-align: center;
    margin: 40px 0;
}

.demiurge-live h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.demiurge-live p {
    font-size: 1rem;
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .video-item iframe {
        height: 250px;
        max-width: 100%;
    }
    
    .video-item-short iframe {
        width: 100%;
        max-width: 280px;
        height: 498px;
    }
    
    .contact-info h2,
    .reels h2 {
        font-size: 1.3rem;
    }
    
    .contact-info p,
    .aliases p {
        font-size: 1rem;
    }
    
    .reels h3 {
        font-size: 1.1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px 10px;
    }
    
    header h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .video-item iframe {
        height: 200px;
    }
    
    .video-item-short iframe {
        max-width: 225px;
        height: 400px;
    }
    
    .contact-info h2,
    .reels h2 {
        font-size: 1.2rem;
    }
    
    .contact-info p,
    .aliases p {
        font-size: 0.9rem;
    }
    
    .video-item h4 {
        font-size: 1rem;
    }
    
    .testimonials h2 {
        font-size: 1.5rem;
    }
    .testimonials-subtitle {
        font-size: 0.9rem;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 10px 5px;
    }
    
    header h1 {
        font-size: 1.3rem;
    }
    
    .video-item iframe {
        height: 180px;
    }
    
    .testimonials h2 {
        font-size: 1.3rem;
    }
    .testimonials-subtitle {
        font-size: 0.8rem;
    }
}
