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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Navigation */
nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f7931a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #f7931a;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.tagline {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
}

.featured-punk {
    max-width: 300px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.featured-punk img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: pixelated;
}

.info-box {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 2rem auto;
    max-width: 800px;
}

.info-box h2 {
    color: #f7931a;
    margin-bottom: 1rem;
}

.info-box p {
    color: #555;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: #f7931a;
    color: white;
}

.btn-secondary {
    background-color: #1a1a1a;
    color: white;
}

/* Content Section */
.content-section {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.content-section h1 {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* Instructions */
.instructions {
    margin: 2rem 0;
}

.step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #f7931a;
    border-radius: 5px;
}

.step h2 {
    color: #f7931a;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step p {
    color: #555;
}

.info-box h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
    padding-left: 0;
}

.info-box ul li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.info-box ul li:before {
    content: "✓";
    color: #f7931a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Gallery */
.gallery-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.punk-card {
    background-color: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
    color: inherit;
}

.punk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    cursor: pointer;
}

.punk-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.punk-number {
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Punk Detail Page */
.punk-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.punk-image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.punk-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.punk-info {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #f7931a;
}

.punk-info h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.trait-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
}

.trait-item:last-child {
    border-bottom: none;
}

.trait-label {
    font-weight: bold;
    color: #666;
    text-transform: capitalize;
}

.trait-value {
    color: #1a1a1a;
    text-transform: capitalize;
}

.zecscription-number {
    color: #f7931a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.zecscription-number:hover {
    color: #d67e15;
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: #f7931a;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .punk-detail {
        grid-template-columns: 1fr;
    }
}
