<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #2ecc71;
    --secondary: #3498db;
    --accent: #e74c3c;
    --background: #ecf0f1;
    --text: #2c3e50;
}

body {
    margin: 0;
    font-family: 'Minecraft', Arial, sans-serif;
    background-color: var(--background);
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo img {
    width: 60px;
    height: 60px;
}

.logo h1 {
    font-size: 2.5em;
    color: var(--primary);
    margin: 0;
}

.studio-intro {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.studio-intro h2 {
    color: var(--primary);
    font-size: 2em;
    margin-bottom: 20px;
}

.studio-intro &gt; p {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.studio-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature {
    padding: 20px;
    background: var(--background);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    display: block;
}

.feature h3 {
    color: var(--secondary);
    margin: 10px 0;
}

.artists-section {
    margin-top: 40px;
}

.artists-section h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
}

#artistGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.artist-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-5px);
}

.avatar-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 60px;
    overflow: hidden;
    border: 4px solid var(--primary);
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    text-align: center;
    color: var(--primary);
    margin: 0 0 10px 0;
}

.bio {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.skill-tag {
    background: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}

.contact {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-item {
    color: var(--accent);
    text-decoration: none;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}</pre></body></html>