:root {
    --p-purple: #9945FF;
    --p-green: #14F195;
    --p-blue: #00C2FF;
    --p-gold: #FFD700;
    --dark-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background: var(--dark-bg);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Dynamic Background --- */
.app-wrapper {
    position: relative;
    min-height: 100vh;
}

.bg-scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s infinite alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--p-purple);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--p-blue);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--p-green);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.mesh-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 100px);
    }
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: 0.3s;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    z-index: 1001;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

/* --- Buttons --- */
.btn-primary-sm {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-sm:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* --- Main Content --- */
.main-content {
    padding-top: 10rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.hero-hub {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(20, 241, 149, 0.1);
    color: var(--p-green);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: var(--p-green);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--p-green);
}

.status-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--p-green);
    border-radius: 50%;
    animation: p-wave 2s infinite;
}

@keyframes p-wave {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.neon-text {
    background: linear-gradient(90deg, #fff, var(--p-purple), var(--p-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 500px;
}

/* --- Launch Card --- */
.launch-card {
    position: relative;
    padding: 2px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent, rgba(153, 69, 255, 0.2));
    overflow: hidden;
}

.card-inner {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(40px);
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-box .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box .value {
    font-size: 1.75rem;
    font-weight: 800;
}

.btn-claim-giant {
    width: 100%;
    padding: 1.5rem;
    border-radius: 20px;
    border: none;
    background: linear-gradient(135deg, var(--p-purple), var(--p-blue));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(153, 69, 255, 0.3);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-claim-giant:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(153, 69, 255, 0.5);
}

.supported-wallets-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.w-icon img {
    width: 24px;
    height: 24px;
    opacity: 0.6;
}

.supported-wallets-v2 span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Bento Features --- */
.bento-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 8rem;
    padding: 0 2rem;
}

.feature-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 3rem 2rem;
    border-radius: 32px;
    transition: 0.4s;
}

.feature-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.f-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--p-blue);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.4);
}

/* --- Modals --- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-card {
    position: relative;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 32px;
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    transform: translateY(20px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-card.success {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #14F195;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(20, 241, 149, 0.3));
}

.modal-card.success h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tx-hash-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid var(--border);
    text-align: left;
}

.modal.active .modal-card {
    transform: translateY(0);
}

.tx-hash-box span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

#txHash {
    display: block;
    word-break: break-all;
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.5;
    background: none;
    padding: 0;
    border: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.wallet-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--p-purple);
}

.wallet-option img {
    width: 32px;
    height: 32px;
}

.wallet-option .tag {
    margin-left: auto;
    background: var(--p-purple);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
}

/* --- Footer --- */
.footer {
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: #fff;
}

/* --- FAQ Page --- */
.faq-hero {
    grid-template-columns: 1fr;
    text-align: center;
}

.faq-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem;
}

.faq-grid .launch-card {
    height: auto;
}

.faq-grid .card-inner {
    padding: 2.5rem;
}

.faq-q-blue {
    color: var(--p-blue);
    margin-bottom: 1rem;
}

.faq-q-purple {
    color: var(--p-purple);
    margin-bottom: 1rem;
}

.faq-q-green {
    color: var(--p-green);
    margin-bottom: 1rem;
}

.faq-q-gold {
    color: var(--p-gold);
    margin-bottom: 1rem;
}

.faq-a {
    color: rgba(255, 255, 255, 0.6);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .main-title {
        font-size: 4rem;
    }

    .hero-hub {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .faq-grid {
        gap: 1.5rem;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

    .live-status {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        z-index: 2000;
        transform: translateX(100%);
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        display: flex !important;
    }

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

    .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .main-title {
        font-size: 3rem;
    }

    .stats-grid {
        gap: 0.75rem;
    }

    .stat-box .value {
        font-size: 1.25rem;
    }

    .bento-features {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1rem;
        margin-top: 2rem;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10000;
        width: 30px;
        height: 30px;
        padding: 0;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        transition: 0.3s;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}