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

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: #0a0a1f;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    transition: background-color 0.5s ease;
}

/* Animated background elements */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: radial-gradient(2px 2px at 20px 30px, #fff, transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, #fff, transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
                radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
    z-index: 1;
    mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0) 100%);
}

/* Animated clouds */
.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    opacity: 0.7;
    animation: floatCloud 20s linear infinite;
}

.cloud::before {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
}

.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
}

.cloud1 {
    width: 120px;
    height: 45px;
    top: 20%;
    left: -150px;
    animation-delay: 0s;
}

.cloud1::before {
    width: 75px;
    height: 75px;
    top: -37px;
    left: 15px;
}

.cloud1::after {
    width: 90px;
    height: 60px;
    top: -22px;
    right: 15px;
}

.cloud2 {
    width: 150px;
    height: 60px;
    top: 40%;
    left: -180px;
    animation-delay: 5s;
}

.cloud2::before {
    width: 90px;
    height: 90px;
    top: -45px;
    left: 22px;
}

.cloud2::after {
    width: 105px;
    height: 75px;
    top: -30px;
    right: 22px;
}

.cloud3 {
    width: 100px;
    height: 40px;
    top: 60%;
    left: -120px;
    animation-delay: 10s;
}

.cloud3::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 15px;
}

.cloud3::after {
    width: 70px;
    height: 55px;
    top: -25px;
    right: 15px;
}

.cloud4 {
    width: 130px;
    height: 50px;
    top: 80%;
    left: -160px;
    animation-delay: 15s;
}

.cloud4::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 18px;
}

.cloud4::after {
    width: 95px;
    height: 65px;
    top: -25px;
    right: 18px;
}

@keyframes floatCloud {
    0% {
        transform: translateX(-200px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(calc(100vw + 200px));
        opacity: 0;
    }
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.floating-coins {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-coins::before,
.floating-coins::after {
    content: '💰';
    position: absolute;
    font-size: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating-coins::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-coins::after {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes cookieFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
    }
    25% { 
        transform: translateY(-8px) scale(1.02);
    }
    50% { 
        transform: translateY(-12px) scale(1.05);
    }
    75% { 
        transform: translateY(-8px) scale(1.02);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Header */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(135, 206, 235, 0.1) 50%, 
        rgba(255, 215, 0, 0.05) 75%, 
        rgba(255, 255, 255, 0.1) 100%);
}

.logo {
    margin-bottom: 3rem;
}

.coin-name {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #87CEEB);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-size: 1.5rem;
    color: #87CEEB;
    font-weight: 300;
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

.hero-content {
    max-width: 800px;
}

.main-message h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFD700, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.sub-message {
    font-size: 1.3rem;
    color: #E6E6FA;
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.contract-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.social-links {
    margin-top: 2rem;
    text-align: center;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #87CEEB;
    font-weight: 500;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(255, 215, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 8px 20px rgba(135, 206, 235, 0.2);
}

.social-icon {
    width: 20px;
    height: 20px;
    color: #87CEEB;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.social-link:hover .social-icon {
    color: #FFD700;
    transform: scale(1.05);
}

.social-link img.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-link:hover img.social-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg);
    transform: scale(1.05);
}

.contract-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contract-clickable {
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-size: 0.9rem;
    word-break: break-all;
    flex: 1;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}

.contract-clickable:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.contract-clickable:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.four-meme-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #87CEEB, #4682B4);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.four-meme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.5);
    background: linear-gradient(45deg, #4682B4, #87CEEB);
}

.four-meme-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: white;
    transition: all 0.3s ease;
}

.four-meme-btn:hover .four-meme-icon {
    color: #FFD700;
    transform: translateX(2px);
}

.network {
    color: #87CEEB;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Proverbs Section */
.proverbs {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.proverbs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 20%, 
        rgba(135, 206, 235, 0.3) 50%, 
        rgba(255, 215, 0, 0.3) 80%, 
        transparent 100%);
}

.proverbs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #87CEEB, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proverb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.proverb-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
}

.proverb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.proverb-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.proverb-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1), 
        rgba(135, 206, 235, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proverb-card:hover .proverb-glow {
    opacity: 1;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(135, 206, 235, 0.3) 20%, 
        rgba(255, 215, 0, 0.3) 50%, 
        rgba(135, 206, 235, 0.3) 80%, 
        transparent 100%);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #FFD700, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(135, 206, 235, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.3);
    border-color: rgba(135, 206, 235, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #87CEEB;
    text-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
}

.feature-card p {
    color: #E6E6FA;
    line-height: 1.6;
    font-weight: 300;
}

/* Treasury Section */
.treasury-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.treasury-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.3) 20%, 
        rgba(135, 206, 235, 0.3) 50%, 
        rgba(255, 215, 0, 0.3) 80%, 
        transparent 100%);
    z-index: 2;
}

.treasury-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.treasury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.treasury-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.treasury-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(135, 206, 235, 0.3),
        rgba(255, 215, 0, 0.2),
        rgba(135, 206, 235, 0.3)
    );
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.treasury-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.3);
}

.treasury-card.highlight {
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.08);
}

.treasury-card.highlight::before {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.4),
        rgba(255, 140, 0, 0.3),
        rgba(255, 215, 0, 0.4)
    );
}

.treasury-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.treasury-percentage {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.treasury-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #87CEEB;
    margin-bottom: 15px;
}

.treasury-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.treasury-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.treasury-card:hover .treasury-glow {
    opacity: 1;
}

.burn-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF4500, #FF6347);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.burn-schedule {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.burn-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 30px;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.5);
}

.burn-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.burn-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.burn-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 140, 0, 0.4);
    flex-shrink: 0;
    animation: burnPulse 2s ease-in-out infinite;
}

.burn-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burn-percent {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.burn-trigger {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.burn-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 20px;
}

@keyframes burnPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 40px rgba(255, 140, 0, 0.4);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 140, 0, 0.6);
    }
}

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

/* Responsive Treasury */
@media (max-width: 768px) {
    .treasury-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .burn-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .treasury-icon {
        font-size: 3rem;
    }
    
    .treasury-percentage {
        font-size: 2.5rem;
    }
    
    .burn-schedule {
        padding: 30px 20px;
    }
    
    .burn-title {
        font-size: 1.5rem;
    }
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(135, 206, 235, 0.3) 20%, 
        rgba(255, 215, 0, 0.3) 50%, 
        rgba(135, 206, 235, 0.3) 80%, 
        transparent 100%);
    z-index: 2;
}

.roadmap-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 2px;
}

.roadmap-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        rgba(255, 215, 0, 0.3),
        rgba(135, 206, 235, 0.5),
        rgba(255, 215, 0, 0.3)
    );
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    animation: slideInRoadmap 0.8s ease-out forwards;
}

.roadmap-item:nth-child(odd) {
    justify-content: flex-start;
    padding-left: 0;
}

.roadmap-item:nth-child(even) {
    justify-content: flex-end;
    flex-direction: row-reverse;
    padding-right: 0;
}

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

.milestone-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4169E1, #87CEEB);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 
        0 0 30px rgba(135, 206, 235, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 215, 0, 0.5);
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

.roadmap-item:nth-child(odd) .milestone-icon {
    margin-right: 30px;
}

.roadmap-item:nth-child(even) .milestone-icon {
    margin-left: 30px;
}

.milestone-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-width: 380px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(135, 206, 235, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.milestone-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.milestone-content:hover::before {
    left: 100%;
}

.milestone-content:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(135, 206, 235, 0.4);
}

.milestone-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.milestone-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.milestone-status {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.milestone-status.pending {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.milestone-status.future {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(65, 105, 225, 0.2));
    color: #87CEEB;
    border: 1px solid rgba(135, 206, 235, 0.4);
    box-shadow: 0 0 15px rgba(135, 206, 235, 0.3);
}

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

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(135, 206, 235, 0.6),
            0 0 60px rgba(255, 215, 0, 0.3),
            inset 0 2px 10px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(135, 206, 235, 0.8),
            0 0 80px rgba(255, 215, 0, 0.5),
            inset 0 2px 10px rgba(255, 255, 255, 0.5);
    }
}

/* Responsive Roadmap */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .roadmap-timeline::before {
        left: 40px;
    }
    
    .roadmap-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 40px;
    }
    
    .roadmap-item:nth-child(odd),
    .roadmap-item:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
    }
    
    .milestone-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-right: 20px !important;
        margin-left: 0 !important;
    }
    
    .milestone-content {
        max-width: calc(100% - 100px);
        padding: 20px;
    }
    
    .milestone-content h3 {
        font-size: 1.2rem;
    }
    
    .milestone-description {
        font-size: 0.9rem;
    }
}

/* Adjust text colors for lighter bottom sections */
.roadmap-section,
.roadmap-section h2,
.roadmap-section h3,
.roadmap-section p,
.roadmap-section .section-title,
.roadmap-section .section-subtitle {
    color: #1a1a3e;
}

.roadmap-section .milestone-content h3 {
    color: #ff8c00;
}

.roadmap-section .milestone-description {
    color: rgba(26, 26, 62, 0.85);
}

.roadmap-section .milestone-status.pending {
    color: #ff8c00;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.2));
}

.roadmap-section .milestone-status.future {
    color: #4169a1;
}

/* Footer */
.footer {
    background: transparent;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.2) 20%, 
        rgba(135, 206, 235, 0.3) 50%, 
        rgba(255, 215, 0, 0.2) 80%, 
        transparent 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h3 {
    font-size: 2rem;
    background: linear-gradient(45deg, #FFD700, #87CEEB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #87CEEB;
    font-weight: 300;
}

.footer-info p {
    color: #E6E6FA;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

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

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.footer-social {
    text-align: center;
}

.footer-social h4 {
    color: #87CEEB;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(135, 206, 235, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 12px rgba(135, 206, 235, 0.15);
}

.footer-social-icon {
    width: 16px;
    height: 16px;
    color: #87CEEB;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.footer-social-link:hover .footer-social-icon {
    color: #FFD700;
    transform: scale(1.05);
}

.footer-social-link img.footer-social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-social-link:hover img.footer-social-icon {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg);
    transform: scale(1.05);
}

/* Fortune Cookie Styles */
.fortune-cookie-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 3rem 0;
    position: relative;
}

.fortune-cookie {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: cookieFloat 3s ease-in-out infinite;
}

.fortune-cookie:hover {
    transform: scale(1.05);
}

.cookie-shell {
    width: 140px;
    height: 70px;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 30%, #DEB887 70%, #D2691E 100%);
    border-radius: 70px 70px 70px 70px / 35px 35px 35px 35px;
    position: relative;
    box-shadow: 
        0 10px 25px rgba(210, 105, 30, 0.5),
        inset 0 3px 8px rgba(255, 255, 255, 0.4),
        inset 0 -3px 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(139, 69, 19, 0.2);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-style: preserve-3d;
}

.cookie-crack {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #8B4513, transparent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.8s ease;
}

.cookie-shell.cracked {
    transform: scale(1.2);
    box-shadow: 
        0 25px 50px rgba(210, 105, 30, 0.8),
        inset 0 3px 8px rgba(255, 255, 255, 0.4),
        inset 0 -3px 8px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.4);
    animation: cookieCracked 0.6s ease-out;
}

.cookie-shell.cracked .cookie-crack {
    opacity: 1;
    animation: crackExpand 0.8s ease forwards;
}

@keyframes crackExpand {
    0% {
        width: 2px;
        height: 40px;
        box-shadow: 0 0 5px rgba(139, 69, 19, 0.3);
    }
    50% {
        width: 4px;
        height: 45px;
        box-shadow: 0 0 10px rgba(139, 69, 19, 0.6);
    }
    100% {
        width: 6px;
        height: 50px;
        background: linear-gradient(to bottom, transparent, #654321, transparent);
        box-shadow: 0 0 15px rgba(139, 69, 19, 0.8);
    }
}

@keyframes cookieCracked {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.3);
    }
    60% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.2);
    }
}

.fortune-paper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 120px;
    background: linear-gradient(135deg, #FFF8DC 0%, #F5F5DC 30%, #FFF8DC 60%, #F0E68C 100%);
    border-radius: 8px;
    transform: translate(-50%, -50%) scale(0);
    transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(139, 69, 19, 0.1);
    z-index: 10;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.cookie-shell.cracked .fortune-paper {
    transform: translate(-50%, -50%) scale(1);
    animation: paperUnfold 1.5s ease forwards;
}

@keyframes paperUnfold {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        filter: blur(5px);
    }
    20% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.5;
        filter: blur(3px);
    }
    40% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.8;
        filter: blur(1px);
    }
    60% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
        filter: blur(0px);
    }
    80% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.95;
        filter: blur(0px);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        filter: blur(0px);
    }
}

.paper-content {
    position: relative;
    padding: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#fortune-text {
    font-size: 0.75rem;
    color: #8B4513;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    text-align: center;
    padding: 5px;
}

.fortune-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1), 
        rgba(135, 206, 235, 0.1));
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-shell.cracked .fortune-glow {
    opacity: 1;
    animation: fortuneGlow 2s ease-in-out infinite alternate, fortunePulse 1s ease-in-out infinite;
}

@keyframes fortuneGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 
                    0 0 30px rgba(135, 206, 235, 0.4);
    }
}

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

.cookie-crumbs {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-shell.cracked ~ .cookie-crumbs {
    opacity: 1;
    animation: crumbsFall 1s ease forwards;
}

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

.cookie-crumbs::before,
.cookie-crumbs::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #D2691E;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cookie-crumbs::before {
    top: 15%;
    left: 25%;
    animation: crumb1 1.5s ease forwards;
}

.cookie-crumbs::after {
    top: 25%;
    right: 20%;
    animation: crumb2 1.5s ease forwards;
}

@keyframes crumb1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(15px, 25px) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translate(30px, 50px) rotate(360deg);
        opacity: 0.6;
    }
}

@keyframes crumb2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translate(-20px, 30px) rotate(-180deg);
        opacity: 1;
    }
    100% {
        transform: translate(-40px, 60px) rotate(-360deg);
        opacity: 0.6;
    }
}

.fortune-instruction {
    margin-top: 1rem;
    color: #87CEEB;
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 0 0 15px rgba(135, 206, 235, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .coin-name {
        font-size: 3rem;
    }
    
    .main-message h2 {
        font-size: 2rem;
    }
    
    .sub-message {
        font-size: 1.1rem;
    }
    
    .contract-address {
        flex-direction: column;
        align-items: stretch;
    }
    
    #contract-address {
        min-width: auto;
        text-align: center;
    }
    
    .proverb-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .coin-name {
        font-size: 2.5rem;
    }
    
    .main-message h2 {
        font-size: 1.8rem;
    }
    
    .proverb-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .contract-info {
        padding: 1.5rem;
    }
}
