/* Reset and base styles */
* {
    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: #e0e0e0;
    background-color: #121212;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 0;
}

    .navbar.scrolled {
        padding: 0.5rem 0;
        background: rgba(18, 18, 18, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
    transition: transform 0.2s ease;
}

.nav-brand:hover .logo {
    transform: scale(1.1);
}

/* Logo image styling for proper alignment */
.logo-image {
    height: calc(100% - 16px); /* Fits navbar height with some padding */
    min-height: 40px; /* Minimum size for readability */
    max-height: 50px; /* Smaller maximum size for desktop */
    width: auto; /* Maintains aspect ratio */
    max-width: 180px; /* Slightly reduced max width */
    object-fit: contain; /* Ensures image scales properly */
    vertical-align: middle;
}

/* Alternative: If you want a fixed square logo */
.logo-image.square {
    height: calc(100% - 16px);
    width: calc(100% - 16px);
    min-height: 35px;
    min-width: 35px;
    max-height: 40px; /* Reduced for desktop */
    max-width: 40px; /* Reduced for desktop */
    object-fit: cover; /* Crops image to fit square if needed */
    border-radius: 4px; /* Optional: adds slight rounding */
}

.site-name {
    font-weight: 700;
    color: #e0e0e0;
}

/* Desktop Menu */
.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #00bcd4;
        transition: width 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #00bcd4;
    }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

/* Submenu Styles */
.has-submenu .submenu-arrow {
    transition: transform 0.2s ease;
}

.has-submenu:hover .submenu-arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1e;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    margin: 0;
}

.submenu-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 400;
}

    .submenu-link:hover {
        background: #2a2a2a;
        color: #00bcd4;
        padding-left: 1.5rem;
    }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

    .hamburger-line:nth-child(1) {
        margin-bottom: 5px;
    }

    .hamburger-line:nth-child(3) {
        margin-top: 5px;
    }

/* Mobile Menu Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main-content {
    margin-top: 80px; /* Account for fixed navbar */
}

.hero {
    background: #1a1a1a; /* linear-gradient(135deg, #1a1a1a, #2a2a2a);*/
    color: white;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

.cta-button {
    background: #00bcd4;
    color: #121212;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
        background: #00acc1;
    }

.content-section {
    padding: 4rem 0;
}

    .content-section:nth-child(even) {
        background: #1a1a1a;
    }

    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #e0e0e0;
    }

    .content-section p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: #b0b0b0;
    }

    .content-section ul {
        margin-left: 2rem;
        margin-bottom: 1.5rem;
    }

    .content-section li {
        margin-bottom: 0.5rem;
        color: #b0b0b0;
    }

/* Footer */
footer {
    background: #0a0a0a;
    color: #b0b0b0;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

        .nav-menu.active {
            transform: translateX(0);
        }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

        .nav-item:last-child {
            border-bottom: none;
        }

    .nav-link {
        padding: 1rem 1.5rem;
        justify-content: space-between;
    }

        .nav-link::after {
            display: none;
        }

    /* Mobile Submenu */
    .submenu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #2a2a2a;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .has-submenu.active .submenu {
        max-height: 300px;
        padding: 0.5rem 0;
    }

    .submenu-link {
        padding: 0.75rem 2.5rem;
    }

        .submenu-link:hover {
            padding-left: 2.5rem;
            background: #3a3a3a;
        }

    .main-content {
        margin-top: 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-section {
        padding: 2rem 0;
    }

        .content-section h2 {
            font-size: 1.5rem;
        }

    /* Mobile logo adjustments */
    .logo-image {
        height: calc(100% - 6px); /* Slightly smaller padding on mobile */
        min-height: 40px;
        max-height: 45px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

        .hero h1 {
            font-size: 1.75rem;
        }

    /* Extra small mobile logo adjustments */
    .logo-image {
        height: calc(100% - 10px);
        min-height: 30px;
        max-height: 40px;
        max-width: 120px;
    }
}
.mint-card {
    max-width: 560px;
    margin: 1.5rem auto;
    padding: 1.25rem;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    background: #121212;
}

.sub {
    opacity: .8;
    margin-top: .25rem;
}

.cta-button {
    width: 100%;
    padding: .9rem 1.1rem;
    border-radius: 10px;
    font-weight: 700;
}

.trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1rem;
    font-size: .85rem;
    opacity: .9;
    margin: .6rem 0 0;
}

    .trust-inline span::before {
        content: "";
    }

.why-sign {
    margin: 1rem 0 .5rem;
}

    .why-sign ul {
        margin: .4rem 0 0 1rem;
    }

.safety-details {
    margin: .6rem 0;
}

.tiny, .tiny-note {
    font-size: .8rem;
    opacity: .85;
}

.proof {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin: .5rem 0;
}

.chip {
    border: 1px solid #2a2a2a;
    border-radius: 999px;
    padding: .25rem .6rem;
    font-size: .8rem;
    opacity: .9;
}

.live {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    opacity: .85;
    margin-top: .5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
}
/* Tight stacked lines */
.why-lines {
    margin: .4rem 0;
}

    .why-lines p {
        margin: 0; /* remove extra gaps */
        line-height: 1.15; /* tighter than default ~1.4 */
        font-size: .95rem; /* (optional) slightly smaller */
    }

