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

/* Screen reader only - for SEO and accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

body {
    font-family: 'Inter', ui-sans-serif, -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #f1f1f1;
    background-color: #000000;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

main {
    padding: 40px 0;
}

header {
    text-align: center;
    margin-bottom: 60px;
}

.logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    display: block;
    border-radius: 9999px;
    object-fit: fill;
}

.header-text h1 {
    font-size: 48px;
    font-weight: 600;
    color: #f1f1f1;
    margin-bottom: 10px;
}

.header-text p {
    font-size: 18px;
    color: #f1f1f1;
}

.gallery-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25.6px;
    justify-content: center;
    margin-bottom: 60px;
}

.minting-section {
    margin-bottom: 60px;
}

.minting-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25.6px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-grid .gallery-item {
    width: 366.938px;
    max-width: 100%;
}

.gallery-item {
    margin: 0;
    text-align: center;
    display: flex;
    width: 366.938px;
    max-width: 100%;
}

.gallery-item a {
    display: flex;
    flex-direction: column;
    text-decoration: underline;
    color: #f1f1f1;
    transition: all 0.3s ease;
    width: 100%;
}

.gallery-item a:hover {
    opacity: 0.8;
}

.gallery-item img {
    width: 366.938px;
    height: 366.938px;
    object-fit: cover;
    display: block;
    margin-bottom: 10px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.gallery-item figcaption {
    font-size: 16px;
    color: #f1f1f1;
}

.activities-section {
    margin-bottom: 60px;
    text-align: center;
}

.activities-section > p {
    font-size: 18px;
    margin-bottom: 20px;
}

.activities-links {
    display: block;
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.activities-links a {
    display: block;
    width: 480px;
    max-width: 100%;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 18px;
    padding: 14.006px 25.994px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 9999px;
    text-align: center;
    margin: 0 auto 15px auto;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.activities-links a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.activities-links a strong {
    font-weight: 600;
}

.social-section {
    margin-bottom: 40px;
}

.social-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.social-links li {
    margin: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f1f1f1;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

footer {
    text-align: center;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
    margin-top: 60px;
}

footer p {
    font-size: 14px;
    color: #999;
}

footer a {
    color: #f1f1f1;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .header-text h1 {
        font-size: 36px;
    }

    .gallery-section {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-section .gallery-item {
        width: 100%;
        max-width: 366.938px;
    }
    
    .gallery-section .gallery-item img {
        width: 100%;
        height: auto;
        max-width: 366.938px;
        max-height: 366.938px;
    }

    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-item,
    .gallery-grid .gallery-item {
        width: 100%;
        max-width: 366.938px;
    }
    
    .gallery-item img {
        width: 100%;
        height: auto;
        max-width: 366.938px;
        max-height: 366.938px;
    }

    .activities-links {
        width: 100%;
        padding: 0 20px;
    }
    
    .activities-links a {
        width: 100%;
    }

    .social-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 28px;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .activities-links a {
        font-size: 16px;
    }
}

