/* styles.css */
body {
    font-family: 'Sora', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #333, #333);
    color: #ecf0f1;
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
}

header {
    background: rgba(0, 0, 0, 0.8);
    color: #ecf0f1;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00FFE7;
    animation: logoGlow 2s infinite alternate;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.8rem;
    animation: logoSpin 3s linear infinite;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 1rem;
}

.nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00FFE7;
}

.hero {
    text-align: center;
    padding: 7rem 1rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('constellation.png') no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    filter: blur(5px);
    z-index: -1;
    animation: constellationMove 20s linear infinite;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00FFE7;
    animation: orbitalMovement 10s linear infinite;
}

.hero h1 .highlight {
    background: linear-gradient(45deg, #00FFE7, #6E00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #bdc3c7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00FFE7;
    animation: numberCount 2s ease-out;
}

.stat-label {
    font-size: 0.9rem;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(45deg, #6E00FF, #8B00FF);
    color: #ecf0f1;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #8B00FF, #6E00FF);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(110, 0, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00FFE7;
    border: 2px solid #00FFE7;
}

.btn-secondary:hover {
    background: #00FFE7;
    color: #000;
    transform: translateY(-2px);
}

.supported-chains {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.chain-badge {
    background: rgba(0, 255, 231, 0.1);
    color: #00FFE7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #00FFE7;
    font-weight: 600;
    animation: badgePulse 2s infinite;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeIn 2s ease-in-out;
}

/* Removed conflicting button styles - now handled by more specific selectors above */

section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00FFE7;
    animation: titleSlide 2s ease-in-out;
}

section p {
    font-size: 1.1rem;
    line-height: 1.6;
    animation: fadeIn 2s ease-in-out;
}

#tokenomics table {
    margin: 2rem auto;
    border-collapse: collapse;
    width: 80%;
    max-width: 600px;
    animation: tableSlide 2s ease-in-out;
}

#tokenomics th, #tokenomics td {
    border: 1px solid #ecf0f1;
    padding: 0.5rem;
    text-align: left;
}

#tokenomics th {
    background: #6E00FF;
    color: #ecf0f1;
}

#tokenomics td {
    background: #333;
    color: #ecf0f1;
}

#roadmap ul {
    list-style: none;
    padding: 0;
}

#roadmap li {
    background: #6E00FF;
    color: #ecf0f1;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    display: inline-block;
    animation: listItemBounce 1.5s ease-in-out infinite;
}

#roadmap {
    margin-bottom: 5rem;
}

footer {
    background: rgba(0, 0, 0, 0.92);
    color: #ecf0f1;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
    z-index: 1000;
    font-size: 1rem;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.12);
}

@media (min-width: 900px) {
    footer {
        position: fixed;
        left: 0;
        bottom: 0;
    }
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 899px) {
    footer {
        position: static;
        box-shadow: none;
    }
    body {
        padding-bottom: 0;
    }
}

@keyframes orbitalMovement {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@keyframes constellationMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-5px); }
}

@keyframes logoGlow {
    0% { text-shadow: 0 0 5px #00FFE7, 0 0 10px #00FFE7, 0 0 15px #00FFE7; }
    100% { text-shadow: 0 0 10px #00FFE7, 0 0 20px #00FFE7, 0 0 30px #00FFE7; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes titleSlide {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes tableSlide {
    0% { transform: translateX(-20px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes listItemBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes dotMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(100vw, -100vh); }
    50% { transform: translate(-100vw, 100vh); }
    75% { transform: translate(0, 0); }
    100% { transform: translate(0, 0); }
}

@keyframes dotMove2 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-100vw, 100vh); }
    50% { transform: translate(100vw, -100vh); }
    75% { transform: translate(0, 0); }
    100% { transform: translate(0, 0); }
}

@keyframes dotMove3 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(100vw, 100vh); }
    50% { transform: translate(-100vw, -100vh); }
    75% { transform: translate(0, 0); }
    100% { transform: translate(0, 0); }
}

/* Enhanced Background Dots */
.dot {
    position: absolute;
    background: #00FFE7;
    border-radius: 50%;
    opacity: 0.9;
    animation: dotMove 15s linear infinite, dotBlink 4s ease-in-out infinite;
    box-shadow: 0 0 15px #00FFE7;
}

.dot:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    top: 20%;
    animation: dotMove 8s linear infinite;
}

.dot:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 85%;
    top: 15%;
    animation: dotMove2 10s linear infinite;
}

.dot:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 25%;
    top: 85%;
    animation: dotMove3 12s linear infinite;
}

.dot:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 5%;
    top: 50%;
    animation: dotMove 9s linear infinite;
}

.dot:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 75%;
    top: 75%;
    animation: dotMove2 11s linear infinite;
}

.dot:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 50%;
    top: 10%;
    animation: dotMove3 7s linear infinite;
}

.dot:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 90%;
    top: 60%;
    animation: dotMove 13s linear infinite;
}

.dot:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 15%;
    top: 30%;
    animation: dotMove2 8s linear infinite;
}

.dot:nth-child(9) {
    width: 4px;
    height: 4px;
    left: 60%;
    top: 90%;
    animation: dotMove3 14s linear infinite;
}

.dot:nth-child(10) {
    width: 6px;
    height: 6px;
    left: 40%;
    top: 5%;
    animation: dotMove 6s linear infinite;
}

.dot:nth-child(11) {
    width: 3px;
    height: 3px;
    left: 95%;
    top: 40%;
    animation: dotMove2 15s linear infinite;
}

.dot:nth-child(12) {
    width: 5px;
    height: 5px;
    left: 30%;
    top: 70%;
    animation: dotMove3 9s linear infinite;
}

.dot:nth-child(13) {
    width: 4px;
    height: 4px;
    left: 70%;
    top: 25%;
    animation: dotMove 11s linear infinite;
}

.dot:nth-child(14) {
    width: 6px;
    height: 6px;
    left: 20%;
    top: 80%;
    animation: dotMove2 7s linear infinite;
}

.dot:nth-child(15) {
    width: 3px;
    height: 3px;
    left: 80%;
    top: 85%;
    animation: dotMove3 10s linear infinite;
}

/* Partners Section */
.partners-container {
    margin-top: 3rem;
}

.partners-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
    animation: slideInLeft 25s linear infinite;
    gap: 3rem;
}

.partners-row.reverse {
    animation: slideInRight 20s linear infinite;
}

/* Enhanced Partner Logo Styling */
.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(110, 0, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 231, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 231, 0.1), transparent);
    transition: left 0.5s ease;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(110, 0, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 255, 231, 0.3);
}

/* Logo Image Fallback and Error Handling */
.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    z-index: 2;
    position: relative;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
    border-radius: 12px; /* Round edges */
    background: rgba(255, 255, 255, 0.9); /* White highlight background */
    padding: 8px; /* Padding for better spacing */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.3); /* Subtle shadow + white glow */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    will-change: transform, filter, box-shadow; /* Optimize animations */
    backface-visibility: hidden; /* Prevent flickering */
    transform: translateZ(0); /* Force hardware acceleration */
    image-rendering: -webkit-optimize-contrast; /* Better image quality */
    image-rendering: crisp-edges;
}

/* Fallback icon for failed image loads */
.partner-logo .logo-img:not([src]), 
.partner-logo .logo-img[src=""],
.partner-logo .logo-img[src*="error"] {
    background: linear-gradient(45deg, #00FFE7, #6E00FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.partner-logo .logo-img:not([src])::after, 
.partner-logo .logo-img[src=""]::after,
.partner-logo .logo-img[src*="error"]::after {
    content: '?';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
}

.partner-logo:hover .logo-img {
    transform: scale(1.1);
    filter: brightness(1.3) contrast(1.2);
    border-radius: 16px; /* Slightly more rounded on hover */
    background: rgba(255, 255, 255, 1); /* Full white background on hover */
    box-shadow: 0 4px 16px rgba(0, 255, 231, 0.4), 0 0 30px rgba(255, 255, 255, 0.5); /* Enhanced glow on hover */
    border: 1px solid rgba(0, 255, 231, 0.5); /* Cyan border on hover */
}

/* Loading animation for images */
.logo-img[loading] {
    animation: logoPulse 1.5s ease-in-out infinite;
}

/* Enhanced loading state with skeleton */
.logo-img:not([src]), 
.logo-img[src=""],
.logo-img[src*="error"] {
    background: linear-gradient(45deg, #00FFE7, #6E00FF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

/* Skeleton loading animation */
.logo-img:not([src])::before,
.logo-img[src=""]::before,
.logo-img[src*="error"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: skeletonLoading 1.5s infinite;
}

@keyframes skeletonLoading {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* Remove icon-specific styling since we're using images */
.partner-logo i {
    display: none;
}

/* Specific partner logo colors - now for borders/backgrounds */
.partner-logo:nth-child(1) { /* Ethereum */
    border-color: #627eea;
}

.partner-logo:nth-child(2) { /* Ripple */
    border-color: #23292f;
}

.partner-logo:nth-child(3) { /* Stellar */
    border-color: #7b68ee;
}

.partner-logo:nth-child(4) { /* Hedera */
    border-color: #ff0080;
}

.partner-logo:nth-child(5) { /* Tron */
    border-color: #ff060a;
}

.partner-logo:nth-child(6) { /* Binance */
    border-color: #f3ba2f;
}

.partner-logo:nth-child(7) { /* Bitget */
    border-color: #00ff88;
}

.partner-logo:nth-child(8) { /* MEXC */
    border-color: #00d4ff;
}

.partner-logo:nth-child(9) { /* Bybit */
    border-color: #ff6b35;
}

.partner-logo span {
    font-size: 0.8rem;
    color: #ecf0f1;
    text-align: center;
    font-weight: 600;
    z-index: 2;
    position: relative;
    margin-top: 0.5rem;
}

/* Enhanced Partners Animation */
.partners-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 2rem 0;
    animation: slideInLeft 30s linear infinite;
    gap: 2rem;
    padding: 1rem 0;
}

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

/* Roadmap Section */
.roadmap-container {
    margin-top: 3rem;
    position: relative;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00FFE7, #6E00FF);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00FFE7, #6E00FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: roadmapPulse 2s ease-in-out infinite;
}

.roadmap-icon i {
    font-size: 1.5rem;
    color: white;
}

.roadmap-content {
    background: rgba(110, 0, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 231, 0.2);
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
}

.roadmap-content h3 {
    color: #00FFE7;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.roadmap-content p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.roadmap-progress {
    background: rgba(0, 0, 0, 0.3);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00FFE7, #6E00FF);
    border-radius: 4px;
    animation: progressFill 2s ease-out;
}

.roadmap-item.completed .roadmap-icon {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.roadmap-item.active .roadmap-icon {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    animation: roadmapActive 1.5s ease-in-out infinite;
}

/* New Animations */
@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes numberCount {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes dotBlink {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.3; }
}

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

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

@keyframes roadmapPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes roadmapActive {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px #f39c12; }
    50% { transform: scale(1.15); box-shadow: 0 0 30px #f39c12; }
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: var(--progress-width); }
}

/* Roadmap Spacing and Footer Enhancement */
#roadmap {
    margin-bottom: 5rem;
}

/* Enhanced Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .partners-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partners-row.reverse {
        flex-direction: column;
    }
    
    .partner-logo {
        min-width: 100px;
    }
    
    .roadmap-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .roadmap-content {
        margin: 1rem 0;
        max-width: 100%;
    }
    
    .roadmap-container::before {
        display: none;
    }
}

/* Token Distribution Styles */
.token-distribution {
    background: rgba(110, 0, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 231, 0.2);
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.token-distribution h3 {
    color: #00FFE7;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.distribution-rules {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rule {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 255, 231, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 231, 0.2);
}

.token-symbol {
    font-weight: bold;
    color: #00FFE7;
    font-size: 1.1rem;
}

.ratio {
    background: #6E00FF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
}

.description {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for New Elements */
@media (max-width: 768px) {
    .token-distribution {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .token-distribution h3 {
        font-size: 1.1rem;
    }
    
    .rule {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .token-symbol {
        font-size: 1rem;
    }
    
    .ratio {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .partners-row {
        gap: 1rem;
        animation-duration: 15s;
    }
    
    .partner-logo {
        min-width: 80px;
        padding: 0.8rem;
    }
    
    .partner-logo i {
        font-size: 1.5rem;
    }
    
    .partner-logo span {
        font-size: 0.6rem;
    }
}

/* Prominent Hero Buttons */
.hero-buttons.prominent {
    margin: 2.5rem 0 1.5rem 0;
    gap: 2rem;
    justify-content: center;
    animation: fadeIn 1s ease-in;
}
.hero-buttons.prominent button {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 0 20px #00FFE744;
    animation: bounceBtn 2s infinite;
}
@keyframes bounceBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Partners Marquee Animation with Fade Edges */
.partners-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 2.5rem 0 4rem 0;
    height: 180px;
}

.partners-marquee {
    display: inline-flex;
    align-items: center;
    gap: 8rem;
    white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
    will-change: transform;
}

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

/* Mobile styles updated above with larger logos and better animation */
/* 600px mobile styles updated above with larger logos */

/* About, Tech, Airdrop Cards */
.about-cards, .tech-cards, .airdrop-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}
.about-card, .tech-card, .airdrop-card {
    background: rgba(0,255,231,0.07);
    border: 1.5px solid #00FFE7;
    border-radius: 18px;
    box-shadow: 0 4px 24px #00FFE722;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation-fill-mode: forwards;
}
.about-card i, .tech-card i, .airdrop-card i {
    font-size: 2.2rem;
    color: #00FFE7;
    margin-bottom: 1rem;
    display: block;
}
.about-card h3, .tech-card h3, .airdrop-card h3 {
    color: #00FFE7;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
}
.about-card p, .tech-card p, .airdrop-card p {
    color: #ecf0f1;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Animations */
.animate-fade-in {
    animation: fadeInCard 0.8s ease forwards;
}
.animate-slide-up {
    animation: slideUpCard 0.8s cubic-bezier(.4,1.6,.6,1) forwards;
}
@keyframes fadeInCard {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideUpCard {
    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive for Cards and Carousel */
@media (max-width: 900px) {
    .carousel-track { min-width: 600px; gap: 2rem; }
}
@media (max-width: 600px) {
    .carousel-track { min-width: 350px; gap: 1rem; }
    .about-cards, .tech-cards, .airdrop-cards { flex-direction: column; gap: 1.2rem; }
    .about-card, .tech-card, .airdrop-card { min-width: 0; max-width: 100%; }
    .hero-buttons.prominent button { font-size: 1.1rem; padding: 1rem 1.2rem; }
}

/* Hamburger menu styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1101;
}
.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: #00FFE7;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Professional Mobile Enhancements */
.mobile-nav-overlay {
    display: none;
}

/* Enhanced Button Loading States - More Specific */
.hero .hero-buttons .interactBtn {
    background: linear-gradient(135deg, #00FFE7, #6E00FF);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 231, 0.3);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
}

.hero .hero-buttons .interactBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero .hero-buttons .interactBtn:hover::before {
    left: 100%;
}

.hero .hero-buttons .interactBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 231, 0.4);
    background: linear-gradient(135deg, #00FFE7, #8A2BE2);
}

.hero .hero-buttons .interactBtn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 255, 231, 0.3);
}

.hero .hero-buttons .interactBtn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 255, 231, 0.3), 0 4px 15px rgba(0, 255, 231, 0.3);
}

/* Loading State Styles */
.hero .hero-buttons .interactBtn.loading {
    background: linear-gradient(135deg, #00FFE7, #6E00FF);
    color: transparent;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

.hero .hero-buttons .interactBtn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: buttonSpin 1s linear infinite;
}

.hero .hero-buttons .interactBtn.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: loadingShimmer 1.5s ease-in-out infinite;
}

/* Success State */
.hero .hero-buttons .interactBtn.success {
    background: linear-gradient(135deg, #00FF88, #00CC6A);
    color: #333;
    transform: scale(1.05);
}

.hero .hero-buttons .interactBtn.success::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
    animation: successPulse 0.6s ease-out;
}

/* Error State */
.hero .hero-buttons .interactBtn.error {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: #333;
    animation: errorShake 0.5s ease-in-out;
}

.hero .hero-buttons .interactBtn.error::after {
    content: '✕';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Disabled State */
.hero .hero-buttons .interactBtn:disabled {
    background: linear-gradient(135deg, #666, #888);
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Progress Bar for Long Operations */
.hero .hero-buttons .interactBtn.progress {
    background: linear-gradient(135deg, #00FFE7, #6E00FF);
    color: transparent;
    position: relative;
    overflow: hidden;
}

.hero .hero-buttons .interactBtn.progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4));
    animation: progressFill 2s ease-in-out infinite;
}

.hero .hero-buttons .interactBtn.progress::after {
    content: 'Processing...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

/* Animations */
@keyframes buttonSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes loadingShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes successPulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Mobile-specific button improvements */
@media (max-width: 900px) {
    .hero .hero-buttons .interactBtn {
        min-height: 48px; /* Better touch target */
        padding: 12px 20px;
        font-size: 16px; /* Prevent zoom on iOS */
        border-radius: 12px;
        margin: 8px 0;
        width: 100%;
        max-width: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #6E00FF, #8B00FF);
        color: #ecf0f1;
        border: none;
        font-weight: 600;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(110, 0, 255, 0.3);
    }
    
    .hero .hero-buttons .interactBtn:hover {
        background: linear-gradient(135deg, #8B00FF, #6E00FF);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(110, 0, 255, 0.4);
    }
    
    .hero .hero-buttons .interactBtn:active {
        transform: translateY(0) scale(0.98);
        box-shadow: 0 2px 10px rgba(110, 0, 255, 0.3);
    }
    
    .hero .hero-buttons .interactBtn i {
        font-size: 18px;
        transition: transform 0.2s ease;
    }
    
    .hero .hero-buttons .interactBtn:active i {
        transform: scale(1.1);
    }
    
    .hero .hero-buttons .interactBtn.loading i {
        opacity: 0;
    }
}

/* Professional Mobile Navigation */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1101;
    }
    
    .mobile-nav-overlay {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        position: fixed;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1100;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-top: 80px;
        padding-right: 0;
    }
    
    .mobile-nav-overlay.open {
        transform: translateX(0);
    }
    
    .mobile-nav-links {
        list-style: none;
        padding: 0;
        margin: 0 2rem;
        width: 80vw;
        max-width: 350px;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-end;
    }
    
    .mobile-nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        animation: slideInRight 0.3s ease forwards;
    }
    
    .mobile-nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .mobile-nav-links li:nth-child(2) { animation-delay: 0.15s; }
    .mobile-nav-links li:nth-child(3) { animation-delay: 0.2s; }
    .mobile-nav-links li:nth-child(4) { animation-delay: 0.25s; }
    .mobile-nav-links li:nth-child(5) { animation-delay: 0.3s; }
    .mobile-nav-links li:nth-child(6) { animation-delay: 0.35s; }
    .mobile-nav-links li:nth-child(7) { animation-delay: 0.4s; }
    
    .mobile-nav-links a {
        color: #00FFE7;
        font-size: 1.4rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        display: block;
        padding: 12px 16px;
        text-align: right;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 231, 0.1), transparent);
        transition: left 0.3s ease;
    }
    
    .mobile-nav-links a:hover::before {
        left: 100%;
    }
    
    .mobile-nav-links a:hover {
        color: #6E00FF;
        background: rgba(0, 255, 231, 0.05);
        transform: translateX(-5px);
    }
    
    .mobile-nav-links a:active {
        transform: translateX(-3px) scale(0.98);
    }
    
    body.nav-open {
        position: fixed;
        width: 100%;
    }
    
    /* Only disable scrolling when nav is open, allow it when closed */
    body:not(.nav-open) {
        overflow-x: hidden;
        overflow-y: auto;
        position: relative;
    }
    
    body.nav-open * {
        pointer-events: none;
    }
    
    body.nav-open .mobile-nav-overlay,
    body.nav-open .nav-toggle {
        pointer-events: auto;
    }
}

/* Wallet Popup Handling */
@media (max-width: 900px) {
    /* Ensure wallet popups appear above mobile nav */
    .walletconnect-modal__wrapper,
    .walletconnect-modal__container,
    .walletconnect-modal__header,
    .walletconnect-modal__base,
    .walletconnect-modal__footer {
        z-index: 1200 !important;
    }
    
    /* Prevent body scroll when wallet popup is open */
    body.wallet-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Ensure buttons work properly with wallet popups */
    .hero .hero-buttons .interactBtn {
        z-index: 100;
        position: relative;
    }
}

/* Enhanced Mobile Hero Section */
@media (max-width: 900px) {
    .hero {
        padding: 6rem 1rem 3rem;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons.prominent {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .token-distribution {
        margin: 2rem 0;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .token-distribution h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .rule {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .supported-chains {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .chain-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Mobile Card Improvements */
@media (max-width: 900px) {
    .about-cards, .tech-cards, .airdrop-cards {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .about-card, .tech-card, .airdrop-card {
        min-width: 0;
        max-width: 100%;
        padding: 1.5rem;
        border-radius: 16px;
        margin: 0;
    }
    
    .about-card i, .tech-card i, .airdrop-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-card h3, .tech-card h3, .airdrop-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .about-card p, .tech-card p, .airdrop-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Mobile Partners Section - Updated with larger logos above */

/* Mobile Roadmap Improvements */
@media (max-width: 900px) {
    .roadmap-container {
        padding: 0 1rem;
    }
    
    .roadmap-item {
        flex-direction: column !important;
        text-align: center;
        margin: 2rem 0;
    }
    
    .roadmap-content {
        margin: 1rem 0;
        max-width: 100%;
        padding: 1.2rem;
    }
    
    .roadmap-container::before {
        display: none;
    }
    
    .roadmap-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .roadmap-icon i {
        font-size: 1.2rem;
    }
}

/* Mobile Footer - Fixed Overflow */
@media (max-width: 900px) {
    footer {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    footer p {
        margin: 0;
        padding: 0;
        line-height: 1.4;
        word-break: break-word;
    }
    
    #roadmap {
        margin-bottom: 6rem;
    }
}

/* Mobile Responsive Layout */
@media (max-width: 900px) {
    html, body {
        width: 100%;
        max-width: 100vw;
        position: relative;
        background: linear-gradient(135deg, #333, #333);
    }
    
    * {
        box-sizing: border-box;
    }
    
    /* Ensure all containers respect viewport width */
    header, nav, section, footer, .hero, .partners-marquee-container {
        max-width: 100vw;
    }
    
    /* Fix any potential overflow issues */
    .hero-content, .token-distribution, .supported-chains {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    /* Ensure text doesn't overflow */
    h1, h2, h3, p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

/* Animation for mobile nav items */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsive adjustments for round logos */
@media (max-width: 900px) {
    .logo-img {
        width: 45px;
        height: 45px;
        padding: 6px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.9); /* Maintain white highlight */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.3);
    }
    
    .partner-logo:hover .logo-img {
        border-radius: 12px;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 4px 16px rgba(0, 255, 231, 0.4), 0 0 25px rgba(255, 255, 255, 0.5);
    }
    
    .partner-logo {
        min-width: 100px;
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .logo-img {
        width: 40px;
        height: 40px;
        padding: 5px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.9); /* Maintain white highlight */
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2), 0 0 12px rgba(255, 255, 255, 0.3);
    }
    
    .partner-logo:hover .logo-img {
        border-radius: 10px;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 3px 12px rgba(0, 255, 231, 0.4), 0 0 20px rgba(255, 255, 255, 0.5);
    }
    
    .partner-logo {
        min-width: 80px;
        padding: 0.8rem;
    }
    
    .partner-logo span {
        font-size: 0.7rem;
    }
}

/* Mobile Background and Scrolling Fix */
@media (max-width: 900px) {
    body {
        background: linear-gradient(135deg, #333, #333) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
    
    html {
        background: linear-gradient(135deg, #333, #333) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

/* Professional Airdrop Progress Indicator */
.airdrop-progress-container {
    background: linear-gradient(135deg, rgba(0, 255, 231, 0.1), rgba(110, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 231, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 255, 231, 0.1);
    position: relative;
    overflow: hidden;
}

.airdrop-progress-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 231, 0.05), transparent);
    animation: progressShimmer 3s ease-in-out infinite;
}

.airdrop-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.airdrop-progress-header h3 {
    color: #00FFE7;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.airdrop-progress-header h3 i {
    font-size: 1.3rem;
    animation: chartPulse 2s ease-in-out infinite;
}

.progress-stats {
    text-align: right;
}

.progress-percentage {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00FFE7;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 255, 231, 0.5);
    animation: numberGlow 2s ease-in-out infinite;
}

.progress-label {
    display: block;
    font-size: 0.9rem;
    color: #ecf0f1;
    margin-top: 0.2rem;
    opacity: 0.8;
}

.airdrop-progress-bar {
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.progress-track {
    background: rgba(255, 255, 255, 0.1);
    height: 12px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    background: linear-gradient(90deg, #00FFE7, #6E00FF);
    height: 100%;
    border-radius: 6px;
    position: relative;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 255, 231, 0.5);
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
    animation: progressGlow 2s ease-in-out infinite;
}

.progress-marker {
    position: absolute;
    top: -4px;
    width: 20px;
    height: 20px;
    background: #00FFE7;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 231, 0.8);
    transform: translateX(-50%);
    z-index: 3;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 231, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: markerPulse 2s ease-in-out infinite;
}

.progress-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.progress-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 231, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.progress-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 255, 231, 0.4);
    transform: translateY(-2px);
}

.detail-label {
    color: #ecf0f1;
    font-size: 0.9rem;
    opacity: 0.8;
}

.detail-value {
    color: #00FFE7;
    font-weight: 600;
    font-size: 1rem;
}

.progress-status {
    background: linear-gradient(135deg, rgba(0, 255, 231, 0.1), rgba(110, 0, 255, 0.1));
    border: 1px solid rgba(0, 255, 231, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
    animation: statusPulse 3s ease-in-out infinite;
}

.progress-status i {
    color: #00FFE7;
    font-size: 1.2rem;
    animation: clockSpin 2s linear infinite;
}

.progress-status span {
    color: #ecf0f1;
    font-weight: 500;
    font-size: 1rem;
}

/* Animations */
@keyframes progressShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 231, 0.5); }
    50% { text-shadow: 0 0 30px rgba(0, 255, 231, 0.8); }
}

@keyframes progressGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes markerPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 231, 0.1); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 231, 0.2); }
}

@keyframes clockSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .airdrop-progress-container {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .airdrop-progress-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .progress-percentage {
        font-size: 2rem;
    }
    
    .progress-details {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .progress-item {
        padding: 0.8rem;
    }
    
    .progress-status {
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Smooth Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Slide in from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Scale up animation */
.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Fade in with delay */
.fade-in-delay {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Rotate in animation */
.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Bounce in animation */
.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Stagger animations for multiple elements */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax effect */
.parallax {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Enhanced hover effects for animated elements */
.animate-on-scroll.visible:hover,
.slide-in-left.visible:hover,
.slide-in-right.visible:hover,
.scale-up.visible:hover {
    transform: translateY(-5px) scale(1.02);
    transition: all 0.3s ease;
}

/* Animation delays for staggered effects */
.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Smooth scroll behavior for the entire page */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Account for fixed header */
}

/* Performance optimizations */
.animate-on-scroll,
.slide-in-left,
.slide-in-right,
.scale-up,
.fade-in-delay,
.rotate-in,
.bounce-in,
.stagger-item {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .slide-in-left,
    .slide-in-right,
    .scale-up,
    .fade-in-delay,
    .rotate-in,
    .bounce-in,
    .stagger-item {
        transition: none;
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* FAQ Dropdown Styles */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 231, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 231, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 231, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #ecf0f1;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #00FFE7;
    font-weight: 300;
    transition: transform 0.3s ease;
    position: absolute;
    right: 1.5rem;
    pointer-events: none;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: #00FFE7;
    background: rgba(0, 255, 231, 0.1);
}

/* Remove any other arrow elements */
.faq-question span::after,
.faq-question i,
.faq-question .arrow {
    display: none !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    color: #ecf0f1;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* FAQ Container Animation */
.faq-container {
    opacity: 0;
    transform: translateY(30px);
    animation: faqSlideIn 0.8s ease-out forwards;
}

@keyframes faqSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Item Stagger Animation */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: faqItemSlideIn 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes faqItemSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-question::after {
        right: 1.2rem;
        font-size: 1.3rem;
    }
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(0, 255, 231, 0.1), rgba(110, 0, 255, 0.1));
    border-top: 1px solid rgba(0, 255, 231, 0.3);
    padding: 4rem 0 6rem 0; /* Increased bottom padding */
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(0,255,231,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(110,0,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(0,255,231,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(110,0,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(0,255,231,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.newsletter-content {
    text-align: center;
}

.newsletter-header h2 {
    color: #00FFE7;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.newsletter-header h2 i {
    font-size: 2rem;
    animation: envelopePulse 2s ease-in-out infinite;
}

.newsletter-header p {
    color: #ecf0f1;
    font-size: 0.95rem; /* Reduced from default size */
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Button Styles - More Specific */
.hero .hero-buttons button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: #6E00FF;
    color: #ecf0f1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero .hero-buttons button:hover {
    background: #8B00FF;
    transform: scale(1.05);
}

/* Specific styles for interact buttons only */
.hero .hero-buttons .interactBtn {
    background: linear-gradient(135deg, #00FFE7, #6E00FF);
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 231, 0.3);
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
}

.hero .hero-buttons .interactBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 231, 0.4);
    background: linear-gradient(135deg, #00FFE7, #8A2BE2);
}

/* Navigation button styles - ensure they don't get interactBtn styles */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #00FFE7;
    transition: 0.3s;
    border-radius: 2px;
}

/* Newsletter button styles */
.newsletter-btn {
    background: linear-gradient(135deg, #00FFE7, #6E00FF);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 231, 0.3);
}

.newsletter-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-btn.loading .btn-text {
    display: none;
}

.newsletter-btn.loading .btn-loading {
    display: inline-block;
}

@media (max-width: 900px) {
    .partners-marquee-container { 
        height: 320px; /* Doubled from 160px */
    }
    .partners-marquee { 
        gap: 5rem; /* More space for larger logos */
    }
    .partners-marquee .partner-logo { 
        height: 240px; /* Doubled from 120px */
        min-width: 240px; /* Doubled from 120px */
        max-width: 280px; /* Doubled from 140px */
        border-radius: 20px;
    }
    .partners-marquee .partner-logo img.logo-img { 
        max-width: 180px; /* Doubled from 90px */
        max-height: 180px; /* Doubled from 90px */
    }
    .partners-marquee .partner-logo span { 
        font-size: 2.4rem; /* Doubled from 1.2rem */
    }
}

@media (max-width: 600px) {
    .partners-marquee-container { 
        height: 280px; /* Doubled from 140px */
    }
    .partners-marquee { 
        gap: 4rem;
    }
    .partners-marquee .partner-logo { 
        height: 200px; /* Doubled from 100px */
        min-width: 200px; /* Doubled from 100px */
        max-width: 240px; /* Doubled from 120px */
        border-radius: 16px;
    }
    .partners-marquee .partner-logo img.logo-img { 
        max-width: 140px; /* Doubled from 70px */
        max-height: 140px; /* Doubled from 70px */
    }
    .partners-marquee .partner-logo span { 
        font-size: 2rem; /* Doubled from 1rem */
    }
}

/* Ensure smooth animation on all devices */
.partners-marquee {
    animation: marqueeScroll 30s linear infinite;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
}

/* Add fade effects for better visibility */
.partners-marquee-fade-left,
.partners-marquee-fade-right {
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee-fade-left {
    left: 0;
    background: linear-gradient(90deg, rgba(51, 51, 51, 1), rgba(51, 51, 51, 0));
}

.partners-marquee-fade-right {
    right: 0;
    background: linear-gradient(270deg, rgba(51, 51, 51, 1), rgba(51, 51, 51, 0));
}

/* Remove custom scrollbars and use browser defaults */
* {
    /* scrollbar-width: auto; */
    /* scrollbar-color: #00FFE7 #333; */
}

/* Webkit scrollbar styling (optional - can be removed for default browser scrollbars) */
/* ::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #333;
}

::-webkit-scrollbar-thumb {
    background: #00FFE7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6E00FF;
} */

@media (max-width: 900px) {
    .partners-marquee-container { 
        height: 320px;
    }
    .partners-marquee { 
        gap: 5rem;
        min-width: 1200px; /* Prevent squishing */
    }
    .partners-marquee .partner-logo { 
        height: 240px;
        min-width: 240px;
        max-width: 280px;
        border-radius: 20px;
    }
    .partners-marquee .partner-logo img.logo-img { 
        width: 180px !important;
        height: 180px !important;
        max-width: 180px;
        max-height: 180px;
        min-width: 120px;
        min-height: 120px;
        padding: 12px;
    }
    .partners-marquee .partner-logo span { 
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {
    .partners-marquee-container { 
        height: 280px;
    }
    .partners-marquee { 
        gap: 4rem;
        min-width: 900px; /* Prevent squishing */
    }
    .partners-marquee .partner-logo { 
        height: 200px;
        min-width: 200px;
        max-width: 240px;
        border-radius: 16px;
    }
    .partners-marquee .partner-logo img.logo-img { 
        width: 140px !important;
        height: 140px !important;
        max-width: 140px;
        max-height: 140px;
        min-width: 90px;
        min-height: 90px;
        padding: 10px;
    }
    .partners-marquee .partner-logo span { 
        font-size: 2rem;
    }
}

/* Marquee animation fix for seamless loop */
.partners-marquee {
    animation: marqueeScroll 30s linear infinite;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
    min-width: 2000px; /* Ensures enough width for all logos */
}

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

@media (max-width: 900px) {
    .partners-marquee-container { 
        height: 400px;
    }
    .partners-marquee { 
        gap: 4rem;
        width: max-content;
        overflow: visible;
        display: flex;
        min-width: unset;
    }
    .partners-marquee .partner-logo { 
        height: 320px;
        min-width: 320px;
        max-width: 350px;
        border-radius: 28px;
        flex-shrink: 0;
    }
    .partners-marquee .partner-logo img.logo-img { 
        width: 220px !important;
        height: 220px !important;
        max-width: 220px !important;
        max-height: 220px !important;
        min-width: 180px !important;
        min-height: 180px !important;
        padding: 18px;
    }
    .partners-marquee .partner-logo span { 
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .partners-marquee-container { 
        height: 340px;
    }
    .partners-marquee { 
        gap: 3rem;
        width: max-content;
        overflow: visible;
        display: flex;
        min-width: unset;
    }
    .partners-marquee .partner-logo { 
        height: 250px;
        min-width: 250px;
        max-width: 280px;
        border-radius: 22px;
        flex-shrink: 0;
    }
    .partners-marquee .partner-logo img.logo-img { 
        width: 160px !important;
        height: 160px !important;
        max-width: 160px !important;
        max-height: 160px !important;
        min-width: 120px !important;
        min-height: 120px !important;
        padding: 14px;
    }
    .partners-marquee .partner-logo span { 
        font-size: 2.4rem;
    }
}

.partners-marquee {
    animation: marqueeScroll 30s linear infinite;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 1rem 0;
    width: max-content;
    min-width: unset;
    overflow: visible;
}

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

/* --- PARTNERS MARQUEE SEAMLESS FAST LOOP --- */
.partners-marquee {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
    width: max-content;
    animation: marqueeScroll 12s linear infinite;
    overflow: visible;
}

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

@media (min-width: 900px) {
  html, body {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
  }
  html::-webkit-scrollbar, body::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    display: none !important;
  }
}