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

body {
    font-family: 'Press Start 2P', monospace;
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
    color: #00ff00;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Full Screen Clown Overlay */
.clown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0000, #ff6b6b, #ffa500, #ffff00);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: clownOverlayFade 3s ease-in-out forwards;
}

.clown-overlay-content {
    text-align: center;
    color: #000;
}

.clown-text {
    font-size: 15rem;
    animation: clownBounce 0.5s ease-in-out infinite;
    text-shadow: 5px 5px 0px #fff, 10px 10px 0px #000;
}

.clown-message {
    font-size: 2rem;
    margin-top: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 0px #fff, 4px 4px 0px #000;
    animation: clownMessagePulse 1s ease-in-out infinite;
}

@keyframes clownBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

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

@keyframes clownOverlayFade {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

/* Clown Background */
.clown-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.1;
    animation: clownFloat 10s ease-in-out infinite;
}

@keyframes clownFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-15px) rotate(2deg); }
}

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

/* Header Styles */
.header {
    text-align: center;
    padding: 40px 0;
    border: 4px solid #00ff00;
    border-radius: 20px;
    margin-bottom: 40px;
    background: rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 0, 0.1) 10px,
        rgba(0, 255, 0, 0.1) 20px
    );
    animation: movePattern 20s linear infinite;
    z-index: -1;
}

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

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: 80px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    border: 3px solid #00ff00;
    border-radius: 10px;
    animation: pixelBounce 2s ease-in-out infinite;
}

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

.title {
    font-size: 3rem;
    color: #00ff00;
    text-shadow: 4px 4px 0px #ff00ff, 8px 8px 0px #0000ff;
    animation: glitch 3s ease-in-out infinite;
}

@keyframes glitch {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-2px); }
    40% { transform: translateX(2px); }
    60% { transform: translateX(-1px); }
    80% { transform: translateX(1px); }
}

.subtitle {
    font-size: 1.2rem;
    color: #ffff00;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px #ff0000;
}

.mocking-text {
    font-size: 0.8rem;
    color: #ff6b6b;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Header Community Section */
.header-community {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00ff00;
    border-radius: 10px;
}

.header-community .community-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.header-community .community-link {
    background: #000;
    color: #00ff00;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid #00ff00;
    border-radius: 8px;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-community .community-link:hover {
    background: #00ff00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

.header-community .contract-info {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid #00ff00;
}

.header-community .contract-address {
    color: #ffff00;
    font-family: monospace;
    word-break: break-all;
    font-size: 0.6rem;
}

.header-community .copy-btn {
    background: #ff00ff;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.header-community .copy-btn:hover {
    background: #ffff00;
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    margin-bottom: 40px;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 0, 255, 0.1);
    border: 3px dashed #ff00ff;
    border-radius: 15px;
}

.pixel-character {
    font-size: 8rem;
    margin-bottom: 20px;
    animation: rotate 4s ease-in-out infinite;
}

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

.speech-bubble {
    background: #000;
    border: 3px solid #00ff00;
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 500px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #00ff00;
}

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

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: scale(1.05);
    background: rgba(0, 255, 0, 0.2);
}

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

.stat-card:hover::before {
    left: 100%;
}

.stat-number {
    font-size: 2.5rem;
    color: #ffff00;
    text-shadow: 2px 2px 0px #ff0000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.8rem;
    color: #00ff00;
}

/* Features Section */
.features {
    margin-bottom: 60px;
}

.section-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #ff00ff;
    text-shadow: 2px 2px 0px #0000ff;
    position: relative;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(255, 255, 0, 0.1);
    border: 2px solid #ffff00;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 0, 0.2);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.3);
}

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

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

.feature-item h3 {
    font-size: 1rem;
    color: #ffff00;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0px #ff0000;
}

.feature-item p {
    font-size: 0.7rem;
    color: #00ff00;
    line-height: 1.4;
}

/* Tokenomics Section */
.tokenomics {
    margin-bottom: 60px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 40px;
}

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

.tokenomics-item {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.tokenomics-label {
    font-size: 0.7rem;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.tokenomics-value {
    font-size: 0.8rem;
    color: #00ff00;
    font-weight: bold;
}

/* Roadmap Section */
.roadmap {
    margin-bottom: 60px;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.roadmap-item {
    background: rgba(0, 0, 255, 0.1);
    border: 2px solid #0000ff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-item.completed {
    background: rgba(0, 255, 0, 0.2);
    border-color: #00ff00;
}

.roadmap-item:hover {
    transform: scale(1.05);
}

.roadmap-phase {
    font-size: 0.8rem;
    color: #0000ff;
    margin-bottom: 10px;
    font-weight: bold;
}

.roadmap-item.completed .roadmap-phase {
    color: #00ff00;
}

.roadmap-title {
    font-size: 1rem;
    color: #ffff00;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0px #ff0000;
}

.roadmap-desc {
    font-size: 0.7rem;
    color: #00ff00;
    line-height: 1.4;
}

/* Community Section */
.community {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(255, 0, 255, 0.1);
    border: 2px solid #ff00ff;
    border-radius: 15px;
    padding: 40px;
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.community-link {
    background: #000;
    color: #00ff00;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #00ff00;
    border-radius: 10px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-link:hover {
    background: #00ff00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.contract-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid #00ff00;
}

.contract-address {
    color: #ffff00;
    font-family: monospace;
    word-break: break-all;
}

.copy-btn {
    background: #ff00ff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.6rem;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #ffff00;
    transform: scale(1.1);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 3px solid #00ff00;
    border-radius: 15px 15px 0 0;
}

.footer-content p {
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 0.6rem;
    color: #ff6b6b;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .pixel-character {
        font-size: 5rem;
    }
    
    .speech-bubble {
        max-width: 90%;
    }
    
    .community-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contract-info {
        text-align: center;
    }
    
    .copy-btn {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Pixel Art Effects */
.pixel-border {
    border: 2px solid #00ff00;
    border-radius: 0;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Glitch Effects */
.glitch-text {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #0000ff;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}
