/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 25%, #2d1b4e 50%, #1a0d2e 75%, #0a0a0a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Purple Theme Variables */
:root {
    --primary-purple: #8b5cf6;
    --secondary-purple: #a855f7;
    --dark-purple: #6b21a8;
    --light-purple: #c4b5fd;
    --accent-purple: #f3e8ff;
    --deep-black: #0a0a0a;
    --card-bg: rgba(15, 7, 28, 0.8);
    --border-purple: rgba(139, 92, 246, 0.3);
    --glow-purple: rgba(139, 92, 246, 0.5);
    --text-secondary: #cbd5e1;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%);
    --gradient-card: linear-gradient(135deg, rgba(15, 7, 28, 0.9) 0%, rgba(30, 15, 50, 0.8) 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-purple);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-logo .logo {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple);
    text-shadow: 0 0 10px var(--glow-purple);
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    padding: 1rem;
    display: none;
    min-width: 200px;
    backdrop-filter: blur(20px);
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-purple);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px var(--glow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-purple);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 4px 20px var(--glow-purple);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 0;
}

.hero-icon {
    width: 600px;
    height: 600px;
    filter: hue-rotate(270deg) brightness(1.5);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-purple) 50%, var(--light-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--primary-purple);
    font-weight: 700;
    text-shadow: 0 0 10px var(--glow-purple);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Countdown Section */
.countdown-section {
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.countdown-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-purple);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    text-shadow: 0 0 20px var(--glow-purple);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

.countdown-cta {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.binance-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.binance-logo {
    width: 200px;
    margin-bottom: 1rem;
}

.binance-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.huma-logo {
    width: 80px;
    height: 80px;
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    text-align: center;
}

.partners h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-purple);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.partner-item {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-purple);
}

.partner-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.partner-item span {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Claim Section */
.claim-section {
    padding: 4rem 0;
    position: relative;
}

.claim-bg {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 0;
}

.claim-icon {
    width: 400px;
    height: 400px;
    filter: hue-rotate(270deg) brightness(1.5);
}

.claim-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.claim-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.claim-content > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.claim-form {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.claim-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.claim-form > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.wallet-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wallet-input {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
}

.wallet-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Presale Section */
.presale-section {
    padding: 4rem 0;
    position: relative;
}

.presale-bg {
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 0;
}

.presale-icon {
    width: 400px;
    height: 400px;
    filter: hue-rotate(270deg) brightness(1.5);
}

.presale-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.presale-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.presale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.presale-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.presale-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.price-info {
    margin-bottom: 2rem;
}

.price-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.price, .min-purchase {
    color: var(--primary-purple);
    font-weight: 700;
}

.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.amount-input label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.amount-field {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
}

.amount-field:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.tokens-display {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: var(--primary-purple);
    font-weight: 600;
}

.payment-method label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.currency-select {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
}

.currency-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.currency-item {
    width: 50px;
    height: 50px;
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.currency-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.currency-item img {
    width: 30px;
    height: 30px;
}

.presale-details {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.presale-details h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-purple);
}

.detail-item:last-of-type {
    border-bottom: none;
}

.detail-item span:first-child {
    color: var(--text-secondary);
}

.detail-item span:last-child {
    color: var(--primary-purple);
    font-weight: 600;
}

.presale-note {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.presale-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Leaderboard Section */
.leaderboard {
    padding: 4rem 0;
    position: relative;
}

.leaderboard-bg {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 0;
}

.leaderboard-icon {
    width: 400px;
    height: 400px;
    filter: hue-rotate(270deg) brightness(1.5);
}

.leaderboard h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.leaderboard > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.leaderboard-table {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.table-header {
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 2px solid var(--border-purple);
    font-weight: 700;
    color: var(--primary-purple);
}

.table-row {
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-purple);
    transition: all 0.3s ease;
}

.table-row:hover {
    background: rgba(139, 92, 246, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row span:first-child {
    color: var(--primary-purple);
    font-weight: 700;
}

.table-row span:nth-child(2) {
    color: var(--text-secondary);
    font-family: 'Courier New', monospace;
}

.table-row span:last-child {
    color: var(--primary-purple);
    font-weight: 600;
    text-align: right;
}

/* Documentation Section */
.documentation {
    padding: 4rem 0;
    position: relative;
}

.doc-bg {
    position: absolute;
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 0;
}

.doc-icon {
    width: 400px;
    height: 400px;
    filter: hue-rotate(270deg) brightness(1.5);
}

.documentation h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.documentation > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.doc-item {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.doc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-purple);
}

.doc-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: hue-rotate(270deg) brightness(1.5);
}

.doc-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
}

.doc-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-doc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.btn-doc img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    position: relative;
}

.faq-bg {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 0;
}

.faq-icon {
    width: 400px;
    height: 400px;
    filter: hue-rotate(270deg) brightness(1.5);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.faq > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question span:first-child {
    font-weight: 600;
    color: var(--primary-purple);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--gradient-card);
    border-top: 1px solid var(--border-purple);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-purple);
}

.footer-info p {
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: hue-rotate(270deg) brightness(1.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-purple);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .presale-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 40px 1fr 120px;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.8rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .presale-card,
    .presale-details,
    .claim-form,
    .leaderboard-table {
        padding: 1.5rem;
    }

    h2 {
        font-size: 2rem !important;
    }

    .table-header,
    .table-row {
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Interactive Elements */
.btn:active {
    transform: scale(0.98);
}

.countdown-item:hover {
    transform: scale(1.05);
}

.partner-item:hover img {
    transform: scale(1.1);
}

.doc-item:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced gradients for better visual appeal */
.hero {
    background:
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a0d2e 25%, #2d1b4e 50%, #1a0d2e 75%, #0a0a0a 100%);
}

.claim-section,
.presale-section,
.leaderboard,
.documentation,
.faq {
    background:
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 30%);
}

/* Airdrop Dashboard Styles */
.airdrop-dashboard {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    animation: slideIn 0.5s ease-out;
}

.airdrop-dashboard h3 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.user-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid var(--border-purple);
}

.wallet-address-display {
    font-family: 'Courier New', monospace;
    color: var(--primary-purple);
    font-weight: 600;
    word-break: break-all;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.balance-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.balance-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-purple);
}

.balance-icon {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.balance-info h4 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.balance-amount {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.referral-card {
    grid-column: span 2;
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
}

.referral-info h4 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.referral-info > p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.referral-link-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.referral-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-purple);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
}

.referral-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.referral-stats span {
    color: var(--text-secondary);
}

.referral-stats strong {
    color: var(--primary-purple);
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Payment Instructions Styles */
.payment-instructions {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-purple);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.payment-address {
    margin-bottom: 1rem;
}

.payment-address label {
    display: block;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.address-container {
    display: flex;
    gap: 0.5rem;
}

.payment-address-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-purple);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.payment-amount {
    margin-bottom: 1rem;
}

.payment-amount label {
    display: block;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.crypto-amount-display {
    color: var(--primary-purple);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.payment-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
}

.payment-warning p {
    color: #fca5a5;
    font-size: 0.85rem;
    margin: 0;
}

.payment-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* QR Code Modal Styles */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qr-modal.active {
    opacity: 1;
}

.qr-content {
    background: var(--gradient-card);
    border: 1px solid var(--border-purple);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    backdrop-filter: blur(20px);
}

.qr-content h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.qr-code {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: inline-block;
}

.qr-address {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-purple);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    word-break: break-all;
    margin: 1rem 0;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    z-index: 10001;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-purple);
}

.notification-success {
    background: var(--gradient-primary);
}

.notification-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification-info {
    background: var(--gradient-secondary);
}

/* Dashboard Responsive Updates */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .referral-card {
        grid-column: span 1;
    }

    .dashboard-actions {
        flex-direction: column;
    }

    .referral-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .address-container {
        flex-direction: column;
    }

    .copy-btn {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .airdrop-dashboard {
        padding: 1.5rem;
    }

    .balance-card {
        flex-direction: column;
        text-align: center;
    }

    .balance-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .payment-instructions {
        padding: 1rem;
    }

    .qr-content {
        padding: 1.5rem;
    }
}
