/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Bar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #00ff41;
    z-index: 1001;
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(0, 0, 0, 0.95);
    border-bottom-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.6));
    transition: all 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(0, 255, 65, 0.8));
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.8);
    transition: all 0.3s ease;
}

.logo-text:hover {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #00ff41;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:nth-child(1) {
    transform-origin: center;
}

.hamburger:nth-child(3) {
    transform-origin: center;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 20px;
        transition: left 0.3s ease;
        border-top: 1px solid #00ff41;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
}

       /* Adjust body padding for fixed navbar */
       body {
           padding-top: 70px;
           font-family: 'Orbitron', 'Courier New', monospace;
           background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e, #0f3460, #533483, #2d1b69);
           background-size: 400% 400%;
           animation: gradientShift 12s ease infinite;
           color: #00ffff;
           overflow-x: hidden;
           line-height: 1.6;
           position: relative;
       }

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

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

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

/* Floating Meme Elements */
.floating-meme {
    position: fixed;
    font-size: 2rem;
    z-index: 100;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff;
    filter: drop-shadow(0 0 5px #00ffff);
}

.floating-meme:nth-child(odd) {
    animation-delay: 1s;
    text-shadow: 
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 30px #ff00ff;
    filter: drop-shadow(0 0 5px #ff00ff);
}

.floating-meme:nth-child(even) {
    animation-delay: 2s;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.7),
        0 0 20px rgba(0, 255, 255, 0.7),
        0 0 30px rgba(0, 255, 255, 0.7);
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.7));
}

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

/* Floating Character Images */
.floating-character {
    position: fixed;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.4),
        inset 0 0 20px rgba(0, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
    z-index: 100;
    pointer-events: none;
    filter: drop-shadow(0 0 10px #00ffff);
}

.floating-character:nth-child(1) {
    animation-delay: 0.5s;
    border-color: #ff00ff;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.8),
        0 0 40px rgba(255, 0, 255, 0.4),
        inset 0 0 20px rgba(255, 0, 255, 0.2);
    filter: drop-shadow(0 0 10px #ff00ff);
}

.floating-character:nth-child(2) {
    animation-delay: 1.5s;
    border-color: rgba(255, 0, 255, 0.7);
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 40px rgba(255, 0, 255, 0.3),
        inset 0 0 20px rgba(255, 0, 255, 0.1);
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.7));
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    position: relative;
}

.meme-slogan {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    color: #00ffff;
    text-shadow: 
        0 0 8px #00ffff,
        0 0 16px #00ffff,
        0 0 24px #00ffff,
        2px 2px 4px rgba(0,0,0,0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, glowPulse 2s ease-in-out infinite;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.8));
}

.sub-slogan {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #ff00ff;
    text-shadow: 
        0 0 15px #ff00ff,
        0 0 30px #ff00ff;
    margin-bottom: 3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-character {
    position: relative;
    margin: 3rem 0;
}

.main-character {
    width: 300px;
    height: auto;
    border-radius: 20px;
    border: 4px solid #00ffff;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        0 0 60px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.2);
    animation: characterFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px #00ffff);
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes characterFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

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

.hero-money-pepebot {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.money-pepebot-img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.6));
    animation: float 3s ease-in-out infinite;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(0, 255, 0, 0.7);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    margin: 3rem 0;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    border: 3px solid;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', 'Courier New', monospace;
    min-width: 200px;
    text-align: center;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-color: #00ffff;
    color: #000;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        0 0 60px rgba(0, 255, 255, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(45deg, #ff00ff, #8000ff);
    border-color: #ff00ff;
    color: #fff;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.6),
        0 0 40px rgba(255, 0, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.8),
        0 0 60px rgba(255, 0, 255, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3);
}





/* Hero Contract Address Section */
.hero-ca-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ffff;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.hero-ca-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
    border-radius: 20px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    background-size: 400% 400%;
}

.hero-ca-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px #00ffff;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', 'Courier New', monospace;
}

.hero-ca-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero-ca-display {
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid #00ffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 300px;
    transition: all 0.3s ease;
}

.hero-ca-display:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.hero-ca-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    font-family: 'Orbitron', 'Courier New', monospace;
}

.hero-ca-address {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    word-break: break-all;
}

.hero-ca-copy-btn {
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.hero-ca-copy-btn:hover::before {
    left: 100%;
}

.hero-ca-copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
    background: linear-gradient(45deg, #00ffff, #00ccff);
}

.hero-ca-copy-btn:active {
    transform: translateY(-1px);
}

.hero-ca-note {
    margin-top: 1rem;
}

.hero-ca-note p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    font-family: 'Orbitron', 'Courier New', monospace;
}

/* Contract Address Section */
.contract-address {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(0, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 0, 255, 0.3);
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

/* Rocket Launch Video Section */
.rocket-video {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-top: 2px solid rgba(255, 0, 255, 0.3);
    border-bottom: 2px solid rgba(0, 255, 0, 0.3);
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.video-container {
    position: relative;
    max-width: 500px; /* 改為正方形比例 */
    width: 500px;
    height: 500px; /* 正方形 */
    margin: 0 auto;
    border-radius: 50%; /* 圓形，更像角色頭像 */
    overflow: hidden;
    /* 移除明顯的邊框和陰影，讓它看起來更自然 */
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.2),
        0 0 40px rgba(255, 0, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    /* 保持固定尺寸，防止折疊 */
    min-height: 500px;
}

.rocket-video-player {
    width: 100%;
    height: 100%;
    display: block;
    background: transparent; /* 透明背景，讓影片可見 */
    /* 讓影片完全填充容器，看起來像角色本身 */
    object-fit: cover;
    max-height: 100vh;
    /* 移除影片播放器的明顯特徵 */
    border-radius: 50%;
}

/* Additional mobile-friendly video controls */
.rocket-video-player::-webkit-media-controls {
    display: none !important;
}

.rocket-video-player::-webkit-media-controls-panel {
    display: none !important;
}

.rocket-video-player::-webkit-media-controls-play-button {
    display: none !important;
}

.rocket-video-player::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2); /* 非常透明的背景，讓影片清楚可見 */
    backdrop-filter: blur(1px); /* 極少模糊效果 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%; /* 圓形覆蓋層 */
    pointer-events: none; /* 讓點擊穿透到影片 */
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* 移除 play-button 相關樣式，因為按鈕已被移除 */
.play-button {
    display: none;
}

.play-icon {
    display: none;
}

.play-text {
    display: none;
}

.video-description {
    text-align: center;
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 0 10px #00ffff;
    max-width: 80%;
    line-height: 1.4;
    opacity: 0.9;
    margin: 0;
    pointer-events: none; /* 讓點擊穿透到影片 */
}

/* HIT ME Button Styles */
.hit-me-container {
    text-align: center;
    margin: 2rem 0;
}

.hit-me-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 255, 255, 0.3),
        0 0 0 1px rgba(0, 255, 255, 0.1);
    font-family: 'Orbitron', 'Courier New', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hit-me-btn::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.6s ease;
}

.hit-me-btn:hover::before {
    left: 100%;
}

.hit-me-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 45px rgba(0, 255, 255, 0.4),
        0 0 0 2px rgba(0, 255, 255, 0.2),
        0 0 60px rgba(255, 0, 255, 0.3);
    background: linear-gradient(135deg, #00ffff, #ff00ff, #00ffff);
    background-size: 200% 200%;
    animation: gradientShift 2s ease infinite;
}

.hit-me-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.hit-me-text {
    color: #000;
    font-size: 1.4rem;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pulse Animation for Button */
.hit-me-btn {
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 255, 255, 0.3),
            0 0 0 1px rgba(0, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(0, 255, 255, 0.5),
            0 0 0 1px rgba(0, 255, 255, 0.2),
            0 0 40px rgba(255, 0, 255, 0.2);
    }
}

/* Hint Text Styles */
.hit-me-hint {
    margin-top: 1rem;
    color: rgba(0, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: 'Orbitron', 'Courier New', monospace;
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.hit-me-hint:hover {
    opacity: 1;
    color: rgba(0, 255, 255, 0.9);
}

.video-controls {
    text-align: center;
    margin-top: 2rem;
}

.video-control-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00ffff; /* 改為與主按鈕一致的顏色 */
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid #00ffff;
    border-radius: 25px; /* 更圓潤的按鈕 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    /* 讓按鈕看起來更像互動元素 */
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.3),
        0 0 30px rgba(255, 0, 255, 0.2);
}

.video-control-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.5),
        0 0 50px rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
    border-color: #ff00ff;
}

.replay-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px #00ffff); /* 改為與主按鈕一致的顏色 */
}

.replay-text {
    font-weight: 700;
    color: #00ffff; /* 確保顏色一致 */
}

.ca-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.ca-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 255, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ca-display:hover {
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 
        0 0 40px rgba(0, 255, 255, 0.5),
        inset 0 0 25px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.ca-label {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ca-address {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    user-select: all;
    cursor: text;
}

.ca-copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #00ffff;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 255, 255, 0.2));
    border: 2px solid #00ffff;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.ca-copy-btn:hover::before {
    left: 100%;
}

.ca-copy-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.3));
    border-color: #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.5),
        0 0 40px rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
}

.ca-copy-btn:active {
    transform: translateY(0px);
}

.copy-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px #00ffff);
}

.copy-text {
    font-weight: 800;
}

.ca-note {
    text-align: center;
    margin-top: 2rem;
}

.ca-note p {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: 1rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    color: #00ffff;
    text-shadow: 
        0 0 20px #00ffff,
        0 0 40px #00ffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #00ff00);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* About Section */
.about {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 2px solid #00ffff;
    border-bottom: 2px solid #00ffff;
}

.lore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lore-text p {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.lore-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #00ffff;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(0, 255, 255, 0.3);
    filter: drop-shadow(0 0 15px #00ffff);
}

.meme-stickers {
    position: relative;
    height: 200px;
}

.sticker {
    position: absolute;
    font-size: 3rem;
    animation: stickerBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.sticker:nth-child(1) { animation-delay: 0s; }
.sticker:nth-child(2) { animation-delay: 0.5s; }
.sticker:nth-child(3) { animation-delay: 1s; }
.sticker:nth-child(4) { animation-delay: 1.5s; }

@keyframes stickerBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.2); }
}

.sticker-coin {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    transition: all 0.3s ease;
}

.sticker-coin:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
}

/* Tokenomics Section */
.tokenomics {
    background: rgba(255, 0, 255, 0.05);
    border-top: 2px solid #ff00ff;
    border-bottom: 2px solid #ff00ff;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tokenomics-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff00ff;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(255, 0, 255, 0.3),
        inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.tokenomics-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 0, 255, 0.6),
        0 0 60px rgba(255, 0, 255, 0.3),
        inset 0 0 30px rgba(255, 0, 255, 0.2);
}

.tokenomics-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(255, 0, 255, 0.8));
}

.tokenomics-coin-icon {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    transition: all 0.3s ease;
}

.tokenomics-coin-icon:hover {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1));
}

.tokenomics-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', 'Courier New', monospace;
}

.tokenomics-label {
    font-size: 1.5rem;
    color: #e0e0e0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tokenomics-note {
    text-align: center;
    background: rgba(0, 255, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #00ff00;
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.3),
        inset 0 0 20px rgba(0, 255, 0, 0.1);
}

.tokenomics-note p {
    font-size: 1.2rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.tokenomics-characters {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tokenomics-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #00ff00;
    box-shadow: 
        0 0 20px rgba(0, 255, 0, 0.6),
        0 0 40px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px #00ff00);
}

.tokenomics-img:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        0 0 30px rgba(0, 255, 0, 0.8),
        0 0 60px rgba(0, 255, 0, 0.4);
}

/* Roadmap Section */
.roadmap {
    background: rgba(0, 255, 255, 0.05);
    border-top: 2px solid #00ffff;
    border-bottom: 2px solid #00ffff;
}

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

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00ffff, #ff00ff, #00ff00);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.roadmap-item {
    position: relative;
    margin-bottom: 3rem;
    width: 45%;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.roadmap-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.roadmap-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 20px #00ffff;
    transform: translateY(-50%);
}

.roadmap-item:nth-child(odd)::before {
    right: -60px;
}

.roadmap-item:nth-child(even)::before {
    left: -60px;
}

.roadmap-item:hover::before {
    background: #ff00ff;
    box-shadow: 0 0 30px #ff00ff;
}

.roadmap-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.6),
        0 0 60px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.2);
}

.roadmap-phase {
    font-size: 1.2rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', 'Courier New', monospace;
}

.roadmap-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.roadmap-title {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: 'Orbitron', 'Courier New', monospace;
}

.roadmap-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

/* Community Section */
.community {
    background: rgba(255, 255, 0, 0.05);
    border-top: 2px solid #ffff00;
    border-bottom: 2px solid #ffff00;
}

.community-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.community-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    border: 3px solid;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Orbitron', 'Courier New', monospace;
    position: relative;
    overflow: hidden;
}

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

.community-btn:hover::before {
    left: 100%;
}

.community-btn.twitter {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    border-color: #1da1f2;
    color: #fff;
    box-shadow: 0 0 20px rgba(29, 161, 242, 0.6);
}

.community-btn.telegram {
    background: linear-gradient(45deg, #0088cc, #006699);
    border-color: #0088cc;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.6);
}

.community-btn.discord {
    background: linear-gradient(45deg, #7289da, #5865f2);
    border-color: #7289da;
    color: #fff;
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.6);
}

.community-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(255, 255, 255, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

.community-note {
    text-align: center;
    background: rgba(255, 255, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ffff00;
    box-shadow: 
        0 0 20px rgba(255, 255, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 0, 0.1);
}

.community-note p {
    font-size: 1.2rem;
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.floating-community {
    position: relative;
    height: 200px;
}

.community-float {
    position: absolute;
    font-size: 2.5rem;
    animation: communityFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.8));
}

.community-float:nth-child(1) { left: 20%; animation-delay: 0s; }
.community-float:nth-child(2) { left: 50%; animation-delay: 1.5s; }
.community-float:nth-child(3) { right: 20%; animation-delay: 3s; }

@keyframes communityFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(15deg); }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    border-top: 3px solid #00ffff;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 2.5rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Orbitron', 'Courier New', monospace;
}

.footer-logo p {
    font-size: 1.2rem;
    color: #e0e0e0;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-disclaimer {
    background: rgba(255, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #ff0000;
    margin-bottom: 2rem;
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 0, 0, 0.1);
}

.footer-disclaimer p {
    font-size: 1rem;
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer-copyright {
    font-size: 1rem;
    color: #888;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Animation Classes */
.wiggle {
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.bounce {
    animation: bounce 2s ease-in-out infinite;
}

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

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

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

.shake {
    animation: shake 0.5s ease-in-out infinite;
}

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

/* Money Rain Effect */
.money-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.money-item {
    position: absolute;
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: moneyFall 3s linear forwards;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
    transition: all 0.3s ease;
}

.money-item.coin {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1));
}

.money-item.cash {
    filter: drop-shadow(0 0 12px rgba(0, 255, 0, 0.8));
}

.money-item:hover {
    transform: scale(1.2) rotate(180deg);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1));
}

@keyframes moneyFall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(calc(100vh + 50px)) rotate(720deg);
        opacity: 0;
    }
}

.money-rain.active {
    animation: moneyRainPulse 0.5s ease-in-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .lore-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-item {
        width: calc(100% - 40px);
        left: 40px !important;
        text-align: left !important;
    }
    
    .roadmap-item::before {
        left: -30px !important;
        right: auto !important;
    }
    
    .community-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .community-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .floating-meme {
        font-size: 1.5rem;
    }
    
    .main-character {
        width: 250px;
    }
    
    /* Hero CA Section Mobile Styles */
    .hero-ca-section {
        margin-top: 1.5rem;
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .hero-ca-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-ca-display {
        min-width: auto;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .hero-ca-copy-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    /* Contract Address Mobile Styles */
    .ca-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .ca-display {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .ca-copy-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    /* Rocket Video Mobile Styles */
    .video-container {
        max-width: 350px; /* 移動端也保持正方形 */
        width: 350px;
        height: 350px;
        margin: 0 auto;
        /* 移動端也保持固定尺寸 */
        min-height: 350px;
    }
    
    /* 移除 play-button 相關樣式，因為按鈕已被移除 */
    .play-button {
        display: none;
    }
    
    .play-icon {
        display: none;
    }
    
    .play-text {
        display: none;
    }
    
    .video-description {
        font-size: 1rem;
        margin: 0;
        padding: 0 1rem;
        text-align: center;
    }
    
    /* HIT ME Button Mobile Styles */
    .hit-me-btn {
        padding: 1.2rem 2.5rem;
    }
    
    .hit-me-text {
        font-size: 1.2rem;
    }
    
    .hit-me-hint {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .meme-slogan {
        font-size: 2.5rem;
    }
    
    .sub-slogan {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tokenomics-item {
        padding: 1.5rem;
    }
    
    .roadmap-item {
        padding: 1.5rem;
        margin-left: 20px;
    }
    
    /* Hero CA Section Extra Small Mobile Styles */
    .hero-ca-section {
        margin-top: 1rem;
        padding: 1rem;
        max-width: 98%;
    }
    
    .hero-ca-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero-ca-display {
        padding: 0.8rem;
    }
    
    .hero-ca-label {
        font-size: 1rem;
    }
    
    .hero-ca-address {
        font-size: 0.8rem;
    }
    
    .hero-ca-copy-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00ffff, #ff00ff);
    border-radius: 6px;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff00ff, #00ff00);
}

/* Text Selection */
::selection {
    background: rgba(0, 255, 255, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(0, 255, 255, 0.3);
    color: #fff;
}
