/* Basic Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00e676; /* Vibrant Green (like AI art cards) */
    --secondary-color: #6200ea; /* Deep Purple */
    --accent-color: #ff9800; /* Orange/Gold for highlights */
    --dark-bg: #1a1a2e; /* Dark Blue-Purple */
    --dark-bg-alt: #16213e; /* Slightly lighter dark */
    --text-color-light: #e0e0e0;
    --text-color-dark: #333;
    --border-color: rgba(255, 255, 255, 0.1);
    --hover-effect: transform 0.3s ease, background-color 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color-light);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--text-color-light);
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5em;
    text-align: center;
    line-height: 1.2;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.subtitle {
    font-size: 1.3em;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--hover-effect);
    text-align: center;
    white-space: nowrap; /* Prevent wrapping for smaller buttons */
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 20px;
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.tertiary-btn {
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    border: 2px solid var(--secondary-color);
}

.tertiary-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.nav-button {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #ffb74d; /* Lighter accent */
    color: var(--dark-bg); /* Keep text dark */
}


/* Header & Navigation */
header {
    background-color: rgba(26, 26, 46, 0.9); /* Semi-transparent dark background */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a:not(.nav-button) {
    color: var(--text-color-light);
    font-weight: 400;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.nav-links a:not(.nav-button):hover {
    color: var(--primary-color);
}

/* Burger Menu (for mobile) */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    z-index: 1001;
}

.burger div {
    width: 30px;
    height: 3px;
    background-color: var(--text-color-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero-bg.jpg') no-repeat center center/cover; /* Add your hero background image */
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color-light);
    position: relative;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
}


/* Content Sections */
.content-section {
    padding: 80px 0;
    text-align: center;
}

.content-section.alternate-bg {
    background-color: var(--dark-bg-alt);
}

.features-grid, .lore-grid, .p2e-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 40px;
    text-align: left;
}

.feature-item, .lore-item, .benefit-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-item:hover, .lore-item:hover, .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 230, 118, 0.2); /* Shadow with primary color */
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}


/* CTA Mint Section */
.cta-section {
    background: linear-gradient(45deg, var(--secondary-color), var(--dark-bg-alt));
    padding: 100px 0;
    text-align: center;
    color: var(--text-color-light);
}

.cta-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.large-btn {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-color-light);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-color-light);
    font-size: 1.0em;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
}


/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        width: 100%;
        position: absolute;
        top: 90px; /* Adjust based on header height */
        right: 0;
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding: 20px 0;
        height: calc(100vh - 90px); /* Full height minus header */
        overflow-y: auto;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0; /* For animation */
    }

    .burger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .secondary-btn {
        margin-left: 0; /* Remove margin for stacked buttons */
    }

    h2 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .cta-section h2 {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }

    .features-grid, .lore-grid, .p2e-benefits, .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature-item, .lore-item, .benefit-item {
        padding: 25px;
    }

    h2 {
        font-size: 1.8em;
    }

    .cta-section h2 {
        font-size: 2em;
    }

    .large-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

/* Burger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Nav Link Animation */
.nav-links.nav-active li {
    animation: navLinkFade 0.5s ease forwards;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
