/* Import pixel font */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', monospace;
    line-height: 1.8;
    color: #333;
    background-image: url('Runner backdrop.png');
    background-size: 1500px 2000px;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 2000px;
    font-size: 12px;
}

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

/* Header */
header {
    background: #FFD700;
    border-bottom: 4px solid #FFFFFF;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 0 rgba(0,0,0,0.3);
}

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

.logo h1 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: normal;
    text-shadow: 2px 2px 0 #000000;
}

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

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 14px;
    text-shadow: 2px 2px 0 #000000;
    transition: color 0.2s ease;
    padding: 8px 16px;
    border: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000000;
    background: #FFFFFF;
    border: 2px solid #000000;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 120px 20px 20px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.coin-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.5));
    animation: pixelFloat 2s ease-in-out infinite;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.slogan {
    font-size: 48px;
    font-weight: normal;
    color: #FFFFFF;
    text-shadow: 4px 4px 0 #000000;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    background: #FFD700;
    padding: 16px 32px;
    border: 4px solid #FFFFFF;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.action-btn {
    font-family: 'Press Start 2P', monospace;
    font-size: 16px;
    font-weight: normal;
    color: #000000;
    background: #FFD700;
    border: 4px solid #FFFFFF;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
    padding: 16px 24px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    min-width: 80px;
}

.action-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.5);
}

.action-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.twitter-btn {
    font-size: 20px;
    padding: 16px 20px;
}

/* Content Sections */
.about, .tokenomics {
    padding: 80px 0;
    position: relative;
}

.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 32px;
    font-weight: normal;
    text-shadow: 4px 4px 0 #000000;
    background: #FFD700;
    padding: 16px 32px;
    border: 4px solid #FFFFFF;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.intro {
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 48px;
    font-weight: normal;
    text-shadow: 2px 2px 0 #000000;
    background: rgba(255, 215, 0, 0.9);
    padding: 24px;
    border: 4px solid #FFFFFF;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}

/* About Section Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature {
    text-align: center;
    padding: 24px;
    background: #FFFFFF;
    border: 4px solid #FFD700;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
    transition: transform 0.2s ease;
}

.feature:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.5);
}

.feature h3 {
    color: #000000;
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
}

.feature p {
    color: #333333;
    line-height: 1.6;
    font-size: 12px;
}

/* Tokenomics Section */
.fair-launch-message {
    background: #FFD700;
    border: 4px solid #FFFFFF;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
    padding: 32px 24px;
    margin: 48px 0;
    text-align: center;
    transition: transform 0.2s ease;
}

.fair-launch-message:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.5);
}

.fair-launch-message p {
    font-size: 18px;
    color: #000000;
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.6;
}

/* Tokenomics Features */
.tokenomics-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.feature-item {
    background: #FFFFFF;
    border: 4px solid #FFD700;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}

.feature-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.5);
}

.feature-item h4 {
    color: #000000;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
}

.feature-item p {
    color: #333333;
    margin: 0;
    font-size: 10px;
    line-height: 1.6;
}

/* Pixel floating animation */
@keyframes pixelFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .coin-image {
        max-width: 300px;
    }
    
    .slogan {
        font-size: 24px;
        letter-spacing: 2px;
        padding: 12px 24px;
    }
    
    .hero {
        padding: 100px 20px 20px;
    }
    
    .section-title {
        font-size: 24px;
        padding: 12px 24px;
    }
    
    .intro {
        font-size: 14px;
        padding: 16px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .tokenomics-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 10px;
    }
    
    .coin-image {
        max-width: 250px;
    }
    
    .slogan {
        font-size: 18px;
        padding: 8px 16px;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    nav {
        padding: 12px 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 18px;
    }
}
