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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #070A15;
    color: #ffffff;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background-color: #070A15;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 52px;
    width: auto;
    transition: opacity 0.2s ease;
}

.logo img:hover {
    opacity: 0.8;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    color: #59678A;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #ABC4FF;
    background-color: #1C243E;
}

.nav-link.active {
    color: #ABC4FF;
    background-color: #1C243E;
}

.nav-link.launchlab {
    background: linear-gradient(90deg, #F59E0B 0%, #EF4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.new-badge {
    background-color: #F59E0B;
    color: #1F2937;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    margin-left: 6px;
}

.dropdown svg {
    transition: transform 0.2s ease;
}

.dropdown:hover svg {
    transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rewards-link {
    color: #EC4899;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    background: linear-gradient(90deg, #EC4899 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    transition: opacity 0.2s ease;
}

.rewards-link:hover {
    opacity: 0.8;
}

.priority {
    display: flex;
    align-items: center;
    gap: 4px;
}

.priority-label {
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 400;
}

.priority-value {
    background: linear-gradient(90deg, #06B6D4 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 16px;
    font-weight: 600;
}

.settings-btn {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-btn:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.connect-wallet-btn {
    background: linear-gradient(90deg, #06B6D4 0%, #3B82F6 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.connect-wallet-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 80px);
    background-color: #070A15;
}

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

/* Hero Section */
.hero {
    padding: 180px 0 200px;
    text-align: left;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.hero-content {
    max-width: 600px;
    margin: 0;
}

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

.main-illustration {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

.main-illustration svg {
    width: 100%;
    height: auto;
    max-height: 500px;
}


.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.title-line-1 {
    background: linear-gradient(90deg, #C200FB 0%, #3772FF 48.97%, #5AC4BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.title-line-2 {
    background: linear-gradient(90deg, #C200FB 0%, #3772FF 48.97%, #5AC4BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #9CA3AF;
    margin-bottom: 40px;
    max-width: 600px;
}

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

.btn-primary {
    background: linear-gradient(90deg, #06B6D4 0%, #3B82F6 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ABC4FF;
    border: 2px solid #ABC4FF;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-secondary:hover {
    background-color: #ABC4FF;
    color: #070A15;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }
    
    .header-container {
        height: 70px;
    }
    
    .logo img {
        height: 44px;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        gap: 16px;
    }
    
    .priority {
        display: none;
    }
    
    .connect-wallet-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .rewards-link {
        font-size: 15px;
    }
    
    .hero {
        padding: 120px 0 140px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .main-illustration {
        max-height: 300px;
    }
    
    .main-illustration svg {
        max-height: 300px;
    }
}

/* Partners Section */
.partners {
    padding: 0 0 60px;
    background-color: #070A15;
    overflow: hidden;
    position: relative;
}

.partners-container {
    width: 100%;
    position: relative;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Partners */
@media (max-width: 768px) {
    .partners {
        padding: 0 0 40px;
    }
    
    .partners-track {
        gap: 40px;
        animation-duration: 25s;
    }
    
    .partner-logo {
        height: 80px;
    }
    
    .partner-img {
        height: 44px;
        object-fit: contain;
    }
}

/* Airdrop Progress Section */
.airdrop-progress {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A0F1C 0%, #070A15 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.progress-header {
    text-align: center;
    margin-bottom: 60px;
}

.progress-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #C200FB 0%, #3772FF 48.97%, #5AC4BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.progress-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #9CA3AF;
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #C200FB 0%, #3772FF 50%, #5AC4BE 100%);
    border-radius: 1px;
}

.progress-bar-container {
    margin-bottom: 80px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C200FB 0%, #3772FF 48.97%, #5AC4BE 100%);
    border-radius: 6px;
    width: 0%;
    transition: width 2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 500;
}

.progress-current {
    color: #ABC4FF;
    font-weight: 600;
}

.bonus-section {
    margin-bottom: 60px;
}

.bonus-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 0, 251, 0.1) 0%, rgba(55, 114, 255, 0.1) 50%, rgba(90, 196, 190, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(171, 196, 255, 0.3);
    box-shadow: 0 8px 32px rgba(194, 0, 251, 0.2);
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(194, 0, 251, 0.2) 0%, rgba(55, 114, 255, 0.2) 50%, rgba(90, 196, 190, 0.2) 100%);
    border-radius: 12px;
    color: #ABC4FF;
}

.bonus-icon svg {
    width: 24px;
    height: 24px;
}

.bonus-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.bonus-description {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 16px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.bonus-value {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(90deg, #C200FB 0%, #3772FF 48.97%, #5AC4BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}

.progress-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Mobile Airdrop Progress */
@media (max-width: 768px) {
    .airdrop-progress {
        padding: 60px 0;
    }
    
    .progress-title {
        font-size: 36px;
    }
    
    .progress-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 40px;
        height: 2px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }
    
    .bonus-card {
        padding: 20px;
    }
    
    .progress-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .progress-actions .btn-primary,
    .progress-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Rules Section */
.rules-section {
    padding: 100px 0;
    background: #070A15;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rules-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.rules-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}

.rules-text {
    text-align: left;
}

.rules-cta {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.rules-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.rules-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(90deg, #C200FB 0%, #3772FF 48.97%, #5AC4BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.rules-subtitle {
    font-size: 16px;
    color: #9CA3AF;
    line-height: 1.5;
    max-width: 500px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-self: end;
    width: 100%;
}

.rule-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 32px 24px 20px;
    text-align: left;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    transform-origin: center;
    min-height: 200px;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 0, 251, 0.05) 0%, rgba(55, 114, 255, 0.05) 50%, rgba(90, 196, 190, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-4px) rotate(-1deg) scale(1.01);
    border-color: rgba(171, 196, 255, 0.2);
    box-shadow: 0 12px 24px rgba(194, 0, 251, 0.1);
}

.rule-card:hover::before {
    opacity: 1;
}


.rule-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(194, 0, 251, 0.2) 0%, rgba(55, 114, 255, 0.2) 50%, rgba(90, 196, 190, 0.2) 100%);
    border-radius: 16px;
    color: #ABC4FF;
    position: relative;
    z-index: 1;
}


.rule-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}


.rule-description {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.5;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}


.rule-link {
    color: #ABC4FF;
    text-decoration: underline;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.rule-link:hover {
    color: #ffffff;
}

/* Mobile Rules */
@media (max-width: 768px) {
    .rules-section {
        padding: 80px 0;
    }
    
    .rules-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rules-grid {
        justify-self: center;
        max-width: 100%;
    }
    
    .rules-title {
        font-size: 32px;
    }
    
    .rules-subtitle {
        font-size: 14px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .rule-card {
        padding: 20px 24px 20px 16px;
        min-height: 180px;
    }
    
    .rule-card:hover {
        transform: translateY(-2px) rotate(-0.5deg) scale(1.005);
    }
    
    .rule-icon {
        width: 50px;
        height: 50px;
    }
    
    .rule-title {
        font-size: 16px;
    }
    
    .rule-description {
        font-size: 12px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #070A15;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #C200FB 0%, #3772FF 48.97%, #5AC4BE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.faq-subtitle {
    font-size: 18px;
    color: #9CA3AF;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

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

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ABC4FF;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.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 32px 24px 32px;
    margin: 0;
    font-size: 16px;
    color: #9CA3AF;
    line-height: 1.6;
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 24px 20px 24px;
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background: #0A0E1A;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    height: 56px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9CA3AF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(171, 196, 255, 0.1);
    border-color: rgba(171, 196, 255, 0.3);
    color: #ABC4FF;
    transform: translateY(-2px);
}

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

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

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

.footer-nav-link:hover {
    color: #ABC4FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-nav {
        gap: 24px;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 24px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}