/* 像素风格屎币主题样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', cursive;
    background: linear-gradient(45deg, #2d1b69, #11998e, #38ef7d);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

.container {
    position: relative;
    min-height: 100vh;
    padding: 20px;
}

/* 导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #ffd700;
    z-index: 1000;
    padding: 10px 0;
}

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

.nav-logo .logo-text {
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: 2px solid #ffd700;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nav-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.nav-icon {
    font-size: 1.2rem;
}

.nav-text {
    font-size: 0.7rem;
}

/* 背景浮动元素 */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-coin {
    position: absolute;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.floating-coin:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-coin:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.floating-coin:nth-child(3) { top: 40%; left: 20%; animation-delay: 2s; }
.floating-coin:nth-child(4) { top: 60%; right: 25%; animation-delay: 3s; }
.floating-coin:nth-child(5) { top: 80%; left: 30%; animation-delay: 4s; }
.floating-coin:nth-child(6) { top: 15%; left: 60%; animation-delay: 5s; }
.floating-coin:nth-child(7) { top: 35%; right: 40%; animation-delay: 6s; }
.floating-coin:nth-child(8) { top: 55%; left: 70%; animation-delay: 7s; }
.floating-coin:nth-child(9) { top: 75%; right: 60%; animation-delay: 8s; }
.floating-coin:nth-child(10) { top: 90%; left: 50%; animation-delay: 9s; }

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

/* 主标题区域 */
.main-header {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.title {
    font-size: 4rem;
    color: #ffd700;
    text-shadow: 
        4px 4px 0px #8b4513,
        8px 8px 0px #654321;
    animation: titleGlow 2s ease-in-out infinite alternate;
    margin-bottom: 20px;
}

@keyframes titleGlow {
    from { text-shadow: 4px 4px 0px #8b4513, 8px 8px 0px #654321, 0 0 20px #ffd700; }
    to { text-shadow: 4px 4px 0px #8b4513, 8px 8px 0px #654321, 0 0 40px #ffd700, 0 0 60px #ffd700; }
}

.subtitle {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: bounce 2s infinite;
}

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

/* 主要内容区域 */
.main-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

/* 币种展示 */
.coin-showcase {
    text-align: center;
    margin-bottom: 50px;
}

.coin-container {
    display: inline-block;
    perspective: 1000px;
}

.coin {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: coinFlip 3s linear infinite;
}

.coin-front, .coin-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    backface-visibility: hidden;
    border: 8px solid #ffd700;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        inset 0 0 20px rgba(255, 215, 0, 0.3);
}

.coin-front {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #8b4513;
}

.coin-back {
    background: linear-gradient(45deg, #8b4513, #a0522d);
    color: #ffd700;
    transform: rotateY(180deg);
}

@keyframes coinFlip {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* CA展示区域 */
.ca-section {
    margin-bottom: 50px;
}

.ca-container {
    background: rgba(0, 0, 0, 0.3);
    border: 4px solid #ffd700;
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.ca-container h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 1.5rem;
}

.ca-display {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ca-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

#ca-address {
    flex: 1;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffd700;
    border-radius: 10px;
    color: #fff;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

#ca-address:focus {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border: 2px solid #ffd700;
    border-radius: 10px;
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(45deg, #45a049, #4CAF50);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-icon {
    font-size: 1rem;
}

.copy-text {
    font-size: 0.6rem;
}

.ca-info {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.ca-info p {
    font-size: 0.8rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.network, .standard {
    color: #ffd700;
    font-weight: bold;
}

/* 内容区域 */
.content-section {
    background: rgba(0, 0, 0, 0.3);
    border: 4px solid #ffd700;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.meme-text {
    text-align: center;
    line-height: 2;
    margin-bottom: 30px;
}

.meme-text h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.meme-text p {
    font-size: 1rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.quote-section {
    text-align: center;
    margin: 30px 0;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border-left: 8px solid #ffd700;
    padding-left: 20px;
    animation: quoteGlow 3s ease-in-out infinite alternate;
}

@keyframes quoteGlow {
    from { text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 10px #ffd700; }
    to { text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 20px #ffd700, 0 0 30px #ffd700; }
}

/* 互动区域 */
.interactive-section {
    text-align: center;
    margin-bottom: 30px;
}

.meme-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border: 4px solid #ffd700;
    border-radius: 15px;
    padding: 20px 40px;
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.meme-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.meme-button:active {
    transform: scale(0.95);
}

.shout-display {
    margin-top: 20px;
    min-height: 60px;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 页脚 */
.footer {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 10;
    font-size: 1rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(45deg, #2d1b69, #11998e);
    margin: 15% auto;
    padding: 30px;
    border: 4px solid #ffd700;
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

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

.close {
    color: #ffd700;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    transition: all 0.3s ease;
}

.close:hover {
    color: #ff6b6b;
    transform: scale(1.2);
}

.modal-content h2 {
    text-align: center;
    color: #ffd700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Buy弹窗内容 */
.buy-content {
    text-align: center;
}

.coming-soon {
    margin-bottom: 30px;
}

.coming-soon-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 20px;
    animation: construction 2s ease-in-out infinite;
}

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

.coming-soon h3 {
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.coming-soon p {
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.buy-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.buy-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffd700;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.buy-link:hover:not(.disabled) {
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.buy-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

.buy-icon {
    font-size: 1.5rem;
}

/* 社区弹窗内容 */
.community-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffd700;
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.community-link:hover {
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.community-icon {
    font-size: 2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .coin {
        width: 150px;
        height: 150px;
    }
    
    .coin-front, .coin-back {
        font-size: 2rem;
    }
    
    .meme-text h2 {
        font-size: 1.5rem;
    }
    
    .meme-text p {
        font-size: 0.8rem;
    }
    
    blockquote {
        font-size: 1.2rem;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.6rem;
    }
    
    .nav-icon {
        font-size: 1rem;
    }
    
    .nav-text {
        font-size: 0.6rem;
    }
    
    .ca-input-group {
        flex-direction: column;
    }
    
    .ca-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .community-links {
        grid-template-columns: 1fr;
    }
    
    .buy-links {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 20px;
    }
} 