/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #a5ff00; /* Lime green */
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    color: #333;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pfp-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 50%;
    border: 6px solid #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 3px solid #1a1a1a;
    cursor: pointer;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #a5ff00;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #a5ff00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
    padding: 100px 20px;
    background-color: rgba(255, 255, 255, 0.1);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    font-weight: 800;
}

.story-text p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: 100px 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   LORE SECTION
   ============================================ */
.lore {
    padding: 100px 20px;
    background-color: rgba(255, 255, 255, 0.1);
}

.lore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lore-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    font-weight: 800;
}

.lore-text p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 20px;
    line-height: 1.8;
}

.lore-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid #1a1a1a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ON-CHAIN SECTION
   ============================================ */
.onchain {
    padding: 100px 20px;
}

.onchain-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.onchain-box {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    border: 4px solid #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.onchain-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.ca-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ca-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid #1a1a1a;
    flex: 1;
    min-width: 200px;
    word-break: break-all;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 3px solid #1a1a1a;
    background-color: #1a1a1a;
    color: #a5ff00;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.copy-btn.copied {
    background-color: #4caf50;
    color: white;
}


.burn-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.burn-link {
    display: block;
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.burn-link:hover {
    background-color: #1a1a1a;
    color: #a5ff00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community {
    padding: 100px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.community-text {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.community-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 3px solid #1a1a1a;
    background-color: rgba(0, 0, 0, 0.1);
}

.footer p {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-links {
    margin-top: 30px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background-color: #1a1a1a;
    color: #a5ff00;
}

/* ============================================
   FADE-IN ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        display: flex;
        justify-content: center;
    }

    .story-content,
    .lore-content {
        grid-template-columns: 1fr;
    }

    .story-image,
    .lore-image {
        order: -1;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .onchain-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
        padding: 40px 20px;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .story,
    .gallery,
    .lore,
    .onchain,
    .community {
        padding: 60px 20px;
    }

    .ca-container {
        flex-direction: column;
    }

    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

