@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@500&family=Noto+Sans:wght@400;700&display=swap');

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

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: #161616;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Top Banner */
.top-banner {
    background-color: #1a1a1a;
    padding: 15px 20px;
    text-align: center;
    border-bottom: 2px solid #333;
}

.top-banner p {
    margin: 0;
    color: #ffffff;
    font-size: 1.1em;
}

/* Header */
header {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.logo-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.logo-container img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-family: 'Work Sans', sans-serif;
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero .subtitle {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 30px;
}

/* Announcement Banner */
.announcement {
    background-color: #1a1a1a;
    padding: 30px 20px;
    text-align: center;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
}

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

.announcement p {
    font-size: 1.1em;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styling */
section {
    padding: 60px 20px;
}

section h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #ff6b6b;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background-color: #1a1a1a;
}

.faq-item {
    margin-bottom: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #333;
}

.faq-question {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.8em;
    color: #ffffff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.faq-answer-content {
    padding: 0 20px 20px 20px;
}

.faq-item p {
    margin-bottom: 15px;
}

.faq-item ul {
    margin-left: 30px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.faq-item li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.roadmap {
    background-color: #0f0f0f;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.roadmap-item {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 3px solid #ff6b6b;
}

/* Creators Section */
.creators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.creator-card {
    background-color: transparent;
    padding: 20px 40px;
    text-align: center;
}

.creator-card img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 30px;
    display: block;
    border: 5px solid #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.creator-card h3 {
    font-family: 'Work Sans', sans-serif;
    font-size: 2em;
    margin-bottom: 20px;
    color: #ffffff;
}

.creator-card p {
    color: #e0e0e0;
    font-size: 1.2em;
    line-height: 1.6;
}

/* Mailing List Form */
.mailing-list {
    background-color: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
}

.mailing-list h2 {
    margin-bottom: 20px;
}

.mailing-list p {
    margin-bottom: 30px;
}

.form-group {
    max-width: 500px;
    margin: 0 auto 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #333;
    background-color: #0f0f0f;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1em;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b6b;
}

.btn {
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ff5252;
}

.required {
    color: #ff6b6b;
}

/* Footer */
footer {
    background-color: #0f0f0f;
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid #333;
}

footer p {
    margin-bottom: 10px;
    color: #999;
}

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

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

/* Contact Section */
.contact-info {
    margin-top: 20px;
    font-size: 1.1em;
}

.contact-info a {
    color: #ff6b6b;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2em;
    }
    
    section h2 {
        font-size: 2em;
    }
    
    .creators {
        grid-template-columns: 1fr;
    }
    
    .nft-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    header {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .nft-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* NFT Collection Gallery */
.nft-gallery {
    text-align: center;
    padding: 40px 20px;
}

.nft-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.nft-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nft-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.nft-item img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 300px;
    object-fit: cover;
}

.nft-gallery p {
    font-style: italic;
    color: #999;
    margin-top: 20px;
}
