@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #0a0f14;
    background-image: 
        radial-gradient(circle at center, transparent 0%, #0a0f14 80%),
        linear-gradient(rgba(199, 242, 132, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199, 242, 132, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    color: #ffffff;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 20px 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    z-index: 10000;
}


.header {
    margin-bottom: 40px;
    position: relative;
    background: rgba(10, 15, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #19242E;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    position: relative;
}

.logo {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #C7F284;
}

.connect-wallet-btn {
    padding: 0px 16px;
    height: 40px;
    background: #C7F2841A;
    color: #C7F284;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
}

.connect-wallet-btn:hover {
    transform: translateY(-2px);
    background: #C7F2842A;
}

.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    gap: 40px;
}

.hero-content {
    text-align: left;
    max-width: 500px;
    flex: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    margin-top: 0;
    background: linear-gradient(135deg, #ffffff 0%, #C7F284 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.btn-primary {
    padding: 0px 24px;
    height: 48px;
    background: #C7F284;
    color: #1a1a1a;
    border: none;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #d4ff62;
}

.btn-secondary {
    padding: 0px 24px;
    height: 48px;
    background: transparent;
    color: #C7F284;
    border: 1px solid #C7F284;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-family: 'Manrope', sans-serif;
    white-space: nowrap;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: #C7F2841A;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
    margin-bottom: 0;
}

.hero-image img {
    width: 400px;
    height: auto;
    display: block;
}

.banner {
    margin: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.banner-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(199, 242, 132, 0.1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 16px;
}

.banner-text {
    text-align: center;
    color: #ffffff;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(199, 242, 132, 0.2);
    border: 2px solid #C7F284;
    border-radius: 25px;
    padding: 8px 16px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.live-icon {
    width: 12px;
    height: 12px;
    animation: pulse-live 2s ease-in-out infinite;
}

.live-text {
    font-size: 14px;
    font-weight: 700;
    color: #C7F284;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-live {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.banner-number {
    display: block;
    font-size: 84px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #C7F284 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-label {
    display: block;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.how-to-participate {
    margin: 80px 0;
    padding: 0;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #C7F284 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}

.step-card {
    background: rgba(25, 36, 46, 0.089);
    border: 1px solid rgba(199, 242, 132, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(199, 242, 132, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.step-svg {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(89%) sepia(8%) saturate(1200%) hue-rotate(67deg) brightness(102%) contrast(89%);
}

.step-content {
    flex: 1;
    text-align: center;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #C7F284;
    background: rgba(199, 242, 132, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(199, 242, 132, 0.3);
}

.airdrop-chart {
    margin: 80px 0;
    padding: 0;
}

.chart-container {
    background: rgba(25, 36, 46, 0.089);
    border: 1px solid rgba(199, 242, 132, 0.2);
    border-radius: 16px;
    padding: 30px 40px 20px 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.chart-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #C7F284 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-wrapper {
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 12px;
}

.growth-chart {
    width: 100%;
    height: 350px;
    display: block;
    max-width: none;
}


.pulse-point {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        r: 5;
        opacity: 1;
    }
    50% {
        r: 8;
        opacity: 0.7;
    }
}

.live-transactions {
    margin-top: 40px;
    padding: 0;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(199, 242, 132, 0.05);
    border: 1px solid rgba(199, 242, 132, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease-out;
}

.transaction-item:hover {
    background: rgba(199, 242, 132, 0.08);
    border-color: rgba(199, 242, 132, 0.2);
    transform: translateX(5px);
}

.transaction-info {
    flex: 1;
}

.transaction-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.token-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.amount {
    font-size: 16px;
    font-weight: 600;
    color: #C7F284;
}

.transaction-address {
    font-size: 12px;
    color: #a0a0a0;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    line-height: 1.3;
}

.transaction-time {
    font-size: 12px;
    color: #a0a0a0;
    white-space: nowrap;
    margin-left: 16px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.transaction-item.removing {
    animation: slideOut 0.5s ease-in forwards;
}

.faq {
    margin: 80px 0;
    padding: 0;
}

.faq-container {
    padding: 0;
}

.faq-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #C7F284 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.faq-item {
    background: rgba(199, 242, 132, 0.05);
    border: 1px solid rgba(199, 242, 132, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(199, 242, 132, 0.08);
    border-color: rgba(199, 242, 132, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(199, 242, 132, 0.05);
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #C7F284;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    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 24px 20px 24px;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

.footer {
    background: rgba(10, 15, 20, 0.95);
    border-top: 1px solid rgba(199, 242, 132, 0.2);
    padding: 40px 0;
    margin-top: 60px;
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-description {
    color: #a0a0a0;
    font-size: 14px;
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #C7F284;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image img {
        width: 100%;
        max-width: 400px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .banner {
        margin: 40px 0;
    }
    
    .banner-image {
        width: 100%;
        border-radius: 12px;
    }
    
    .banner-number {
        font-size: 48px;
    }
    
    .banner-label {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .live-badge {
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .live-icon {
        width: 10px;
        height: 10px;
    }
    
    .live-text {
        font-size: 12px;
    }
    
    .how-to-participate {
        margin: 60px 0;
        padding: 0;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .step-card {
        padding: 20px;
        max-width: 100%;
    }
    
    .step-svg {
        width: 36px;
        height: 36px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .step-number {
        top: 15px;
        right: 15px;
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .airdrop-chart {
        margin: 60px 0;
    }
    
    .chart-container {
        padding: 15px 15px 10px 15px;
    }
    
    .chart-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .growth-chart {
        height: 250px;
        min-width: 600px;
    }
    
    .chart-wrapper {
        margin-bottom: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .airdrop-chart {
        margin: 40px 0;
    }
    
    .live-transactions {
        margin-top: 30px;
    }
    
    .transaction-item {
        padding: 12px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .transaction-time {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .transaction-address {
        font-size: 11px;
    }
    
    .amount {
        font-size: 14px;
    }
    
    .token-logo {
        width: 18px;
        height: 18px;
    }
    
    .faq {
        margin: 60px 0;
    }
    
    .faq-container {
        padding: 0;
    }
    
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 16px 20px;
        font-size: 14px;
    }
    
    .footer {
        margin-top: 40px;
        padding: 30px 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .chart-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .growth-chart {
        height: 200px;
        min-width: 500px;
    }
    
    .chart-container {
        padding: 10px;
    }
    
    .airdrop-chart {
        margin: 30px 0;
    }
}

