/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Monaco', 'Consolas', monospace;
    background: #0b0b0b;
    color: #cccccc;
    line-height: 1.4;
    overflow-x: hidden;
    font-size: 14px;
}

/* Global zoom ≈12% */
html { zoom: 1.12; }

/* Fallback for browsers without zoom support */
@supports not (zoom: 1) {
    body {
        transform: scale(1.12);
        transform-origin: top left;
        width: calc(100% / 1.12);
    }
}

/* Terminal cursor effect */
body::after {
    content: '_';
    animation: blink 1s infinite;
    color: #888888;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #3a3a3a;
    margin-bottom: 40px;
    border-style: double;
}

.logo h1 {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: #e6e6e6;
    text-shadow: 0 0 10px #2e2e2e;
    animation: terminal-glow 2s ease-in-out infinite alternate;
}

@keyframes terminal-glow {
    from { text-shadow: 0 0 5px #2e2e2e; }
    to { text-shadow: 0 0 15px #4a4a4a, 0 0 25px #4a4a4a; }
}

.tagline {
    font-size: 0.8rem;
    color: #9a9a9a;
    margin-top: -5px;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 10px;
    border: 1px solid #3a3a3a;
    background: rgba(255, 255, 255, 0.03);
}

.nav a:hover {
    color: #ffffff;
    background: #2a2a2a;
    box-shadow: 0 0 10px #1a1a1a;
}

.nav a::before {
    content: '> ';
    color: #777777;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px 0;
    border: 2px solid #3a3a3a;
    border-style: double;
    padding: 20px;
}

.hero-content h2 {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e6e6e6;
    text-shadow: 0 0 10px #3a3a3a;
}

.hero-subtitle {
    font-size: 1rem;
    color: #a8a8a8;
    margin-bottom: 30px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    border: 1px solid #3a3a3a;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.price {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: #f0f0f0;
    text-shadow: 0 0 5px #2a2a2a;
}

.price-change {
    font-size: 1rem;
    color: #bbbbbb;
    font-weight: bold;
}

.cta-button {
    background: #000000;
    border: 2px solid #3a3a3a;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 0 20px #111111;
    transform: scale(1.05);
}

.hero-image {
    text-align: center;
}

.hero-img, .buy-img {
    max-width: 100%;
    height: auto;
    border: 2px solid #3a3a3a;
    border-style: double;
    transition: transform 0.3s ease;
    filter: grayscale(100%) contrast(1.1);
}

.hero-img:hover, .buy-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px #1a1a1a;
}

/* About Section */
.about {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #3a3a3a;
    border-style: double;
}

.about h3 {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    color: #e6e6e6;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 10px #2e2e2e;
}

.about p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #a8a8a8;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    text-align: left;
    border: 1px solid #3a3a3a;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.feature:hover {
    transform: translateY(-2px);
    border-color: #5a5a5a;
    box-shadow: 0 0 15px #111111;
    background: rgba(255, 255, 255, 0.03);
}

.feature h4 {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    text-shadow: 0 0 5px #2a2a2a;
}

.feature p {
    color: #a8a8a8;
    font-size: 0.9rem;
}

/* Tokenomics */
.tokenomics {
    margin-bottom: 80px;
    padding: 40px;
    border: 2px solid #3a3a3a;
    border-style: double;
    background: rgba(255, 255, 255, 0.03);
}

.tokenomics h3 {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    color: #e6e6e6;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 10px #2e2e2e;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tokenomics-item {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    text-align: center;
    border: 1px solid #3a3a3a;
    font-family: 'Courier New', monospace;
}

.tokenomics-item h4 {
    font-family: 'Courier New', monospace;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 1rem;
    text-shadow: 0 0 5px #2a2a2a;
}

.tokenomics-item p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f0f0f0;
    text-shadow: 0 0 5px #2a2a2a;
}

/* Roadmap */
.roadmap {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #3a3a3a;
    border-style: double;
}

.roadmap h3 {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    color: #e6e6e6;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 10px #2e2e2e;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.roadmap-item {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border: 1px solid #3a3a3a;
    position: relative;
    font-family: 'Courier New', monospace;
}

.roadmap-phase {
    background: #2a2a2a;
    color: #e6e6e6;
    padding: 5px 10px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.roadmap-item h4 {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    text-shadow: 0 0 5px #2a2a2a;
}

.roadmap-item p {
    color: #a8a8a8;
    font-size: 0.9rem;
}

/* Buy Section */
.buy-section {
    margin-bottom: 80px;
    padding: 40px;
    border: 2px solid #3a3a3a;
    border-style: double;
    background: rgba(255, 255, 255, 0.03);
}

.buy-section h3 {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    color: #e6e6e6;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 10px #2e2e2e;
}

.buy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.buy-info h4 {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    text-shadow: 0 0 5px #2a2a2a;
}

.contract {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    word-break: break-all;
    margin-bottom: 20px;
    border: 1px solid #3a3a3a;
    color: #d0d0d0;
    text-shadow: 0 0 5px #2a2a2a;
}

.copy-button {
    background: #000000;
    border: 2px solid #5a5a5a;
    padding: 8px 16px;
    color: #d0d0d0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.copy-button:hover {
    background: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 0 15px #111111;
    transform: scale(1.05);
}

.warning {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid #5a5a5a;
    padding: 20px;
    text-align: center;
    color: #cfcfcf;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 5px #2a2a2a;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid #3a3a3a;
    margin-top: 80px;
    border-style: double;
    font-family: 'Courier New', monospace;
}

.footer p {
    color: #9a9a9a;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border: 1px solid #3a3a3a;
    background: rgba(255, 255, 255, 0.03);
    font-family: 'Courier New', monospace;
}

.social-links a:hover {
    color: #ffffff;
    background: #2a2a2a;
    box-shadow: 0 0 10px #111111;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .buy-content {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.hero-img, .buy-img {
    animation: float 3s ease-in-out infinite;
}

/* Terminal typing effect */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid #666666;
    white-space: nowrap;
    animation: typewriter 3s steps(40, end);
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ASCII art styling */
.ascii-art {
    font-family: 'Courier New', monospace;
    white-space: pre;
    color: #d0d0d0;
    text-shadow: 0 0 5px #2a2a2a;
    line-height: 1;
}
