@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    background: #000;
    color: #0f0;
    overflow-x: hidden;
    line-height: 1.6;
}

#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.warning-banner {
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #ff0000, #ff6600, #ff0000);
    color: #000;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 3px;
    animation: warningPulse 2s infinite;
    box-shadow: 0 0 20px #ff0000;
}

@keyframes warningPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-banner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-bottom: 5px solid #0f0;
    box-shadow: 0 10px 50px rgba(0, 255, 0, 0.5);
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.3);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.main-title {
    font-size: clamp(2.5rem, 10vw, 6rem);
    color: #0f0;
    text-shadow:
        0 0 10px #0f0,
        0 0 20px #0f0,
        0 0 30px #0f0,
        0 0 40px #0f0,
        3px 3px 0 #f0f,
        -3px -3px 0 #0ff;
    animation: glitchTitle 3s infinite;
    letter-spacing: 0.1em;
    font-weight: bold;
}

@keyframes glitchTitle {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(-3px, 3px); }
    50% { transform: translate(3px, -3px); }
    75% { transform: translate(-3px, -3px); }
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #0ff;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
    margin-top: 20px;
    max-width: 900px;
}

.launch-box {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: -80px auto 40px;
    background: #000;
    border: 3px solid #0f0;
    padding: 30px;
    box-shadow:
        0 0 20px #0f0,
        inset 0 0 20px rgba(0, 255, 0, 0.1);
    transform: skew(-2deg);
}

.launch-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #0f0;
    animation: pulseBorder 2s infinite;
    pointer-events: none;
}

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

.launch-content {
    transform: skew(2deg);
    text-align: center;
}

.launch-label {
    font-size: 1.5rem;
    color: #ff0;
    text-shadow: 0 0 10px #ff0;
    margin-bottom: 10px;
    letter-spacing: 5px;
}

.launch-date {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #fff;
    text-shadow: 0 0 10px #f0f, 0 0 20px #f0f;
    margin-bottom: 15px;
    font-weight: bold;
}

.live-badge {
    display: inline-block;
    padding: 10px 30px;
    background: #f00;
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    animation: livePulse 1.5s infinite;
    text-transform: uppercase;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 10px #f00;
    }
    50% {
        box-shadow: 0 0 30px #f00, 0 0 50px #f00;
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.intro-section {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #0f0;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
}

.big-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #0ff;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #0ff;
}

.desc-text {
    font-size: 1.1rem;
    color: #0f0;
    margin-bottom: 15px;
}

.ecosystem-text {
    font-size: 1.2rem;
    color: #ff0;
    text-shadow: 0 0 5px #ff0;
}

.highlight {
    color: #f0f;
    font-weight: bold;
    text-shadow: 0 0 5px #f0f;
}

.ascii-box {
    background: #000;
    border: 2px solid #0f0;
    padding: 20px;
    margin: 40px 0;
    overflow-x: auto;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.ascii-box pre {
    color: #0f0;
    font-size: clamp(0.7rem, 2vw, 1.1rem);
    text-align: center;
    text-shadow: 0 0 5px #0f0;
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #ff0;
    text-align: center;
    margin: 60px 0 30px;
    text-shadow: 0 0 10px #ff0, 0 0 20px #ff0;
    animation: titleFloat 3s ease-in-out infinite;
}

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

.wtf-section {
    background: rgba(0, 0, 0, 0.9);
    border-left: 5px solid #f0f;
    border-right: 5px solid #0ff;
    padding: 40px;
    margin: 40px 0;
    font-size: 1.15rem;
}

.wtf-section p {
    color: #0f0;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.feature-box {
    background: #000;
    border: 2px solid #0ff;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0f0, #0ff, #f0f, #ff0);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.5);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.feature-box h3 {
    color: #0ff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 5px #0ff;
}

.feature-box p {
    color: #0f0;
    font-size: 0.95rem;
    text-align: center;
}

.token-section {
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid #f0f;
    padding: 50px;
    margin: 60px 0;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.4);
}

.token-desc {
    font-size: 1.3rem;
    color: #0ff;
    text-align: center;
    margin-bottom: 30px;
}

.token-box {
    background: #000;
    border: 2px solid #0f0;
    padding: 30px;
    margin: 30px 0;
}

.token-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #0f0;
}

.token-label {
    color: #ff0;
    font-weight: bold;
    min-width: 120px;
}

.token-value {
    color: #0f0;
    flex: 1;
    word-break: break-all;
}

.token-why {
    font-size: 1.1rem;
    color: #0f0;
    line-height: 1.8;
}

.cta-zone {
    text-align: center;
    margin: 80px 0;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.2), rgba(0, 255, 255, 0.2));
    border: 3px solid #ff0;
    box-shadow: 0 0 50px rgba(255, 255, 0, 0.3);
}

.cta-title {
    font-size: clamp(2rem, 6vw, 4rem);
    color: #ff0;
    margin-bottom: 40px;
    text-shadow: 0 0 20px #ff0;
    animation: ctaPulse 2s infinite;
}

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

.buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    font-family: 'Share Tech Mono', monospace;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-github {
    background: #000;
    color: #0f0;
    border-color: #0f0;
}

.btn-github:hover {
    box-shadow: 0 0 30px #0f0;
    transform: scale(1.1);
}

.btn-docker {
    background: #000;
    color: #0ff;
    border-color: #0ff;
}

.btn-docker:hover {
    box-shadow: 0 0 30px #0ff;
    transform: scale(1.1);
}

.btn-website {
    background: #000;
    color: #f0f;
    border-color: #f0f;
}

.btn-website:hover {
    box-shadow: 0 0 30px #f0f;
    transform: scale(1.1);
}

.btn-twitter {
    background: #000;
    color: #ff0;
    border-color: #ff0;
}

.btn-twitter:hover {
    box-shadow: 0 0 30px #ff0;
    transform: scale(1.1);
}

.install-section {
    background: #000;
    border: 3px solid #0f0;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
}

.install-section h3 {
    color: #ff0;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #ff0;
}

.code-block {
    background: #0a0a0a;
    border: 2px solid #0f0;
    padding: 20px;
    margin: 20px 0;
}

.code-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 10px;
    background: rgba(0, 255, 0, 0.05);
}

.code-prompt {
    color: #ff0;
    font-weight: bold;
    font-size: 1.3rem;
}

.code-text {
    color: #0f0;
    flex: 1;
    font-size: 0.95rem;
    word-break: break-all;
}

.copy-code {
    background: #0f0;
    color: #000;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-weight: bold;
    transition: all 0.3s ease;
}

.copy-code:hover {
    background: #ff0;
    box-shadow: 0 0 15px #ff0;
}

.install-note {
    text-align: center;
    color: #0ff;
    font-size: 1.2rem;
    margin-top: 20px;
    text-shadow: 0 0 5px #0ff;
}

.chaos-example {
    background: #000;
    border: 3px solid #f0f;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.chaos-example h3 {
    color: #f0f;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #f0f;
}

.chat-mockup {
    background: #0a0a0a;
    border: 2px solid #0f0;
    padding: 20px;
}

.chat-line {
    padding: 10px;
    margin: 8px 0;
    border-left: 3px solid;
    font-size: 0.95rem;
}

.chat-line.cli {
    border-color: #0ff;
    color: #0ff;
    background: rgba(0, 255, 255, 0.05);
}

.chat-line.web {
    border-color: #ff0;
    color: #ff0;
    background: rgba(255, 255, 0, 0.05);
}

.chat-line.ai {
    border-color: #0f0;
    color: #0f0;
    background: rgba(0, 255, 0, 0.05);
}

.ecosystem-map {
    margin: 60px 0;
}

.ecosystem-map h3 {
    color: #0ff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #0ff;
}

.eco-box {
    background: #000;
    border: 2px solid #0f0;
    padding: 30px;
    overflow-x: auto;
}

.eco-box pre {
    color: #0f0;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    text-shadow: 0 0 5px #0f0;
}

.danger-zone {
    background: rgba(255, 0, 0, 0.1);
    border: 3px solid #f00;
    padding: 40px;
    margin: 60px 0;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
}

.danger-zone h3 {
    color: #f00;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #f00;
}

.danger-zone p {
    color: #ff0;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.danger-zone ul {
    list-style: none;
    padding-left: 0;
}

.danger-zone li {
    color: #0f0;
    padding: 10px;
    margin: 10px 0;
    border-left: 3px solid #0f0;
    background: rgba(0, 255, 0, 0.05);
}

.manifesto {
    background: #000;
    border: 3px solid #ff0;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 255, 0, 0.3);
}

.manifesto h3 {
    color: #ff0;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 0 15px #ff0;
}

.manifesto p {
    color: #0f0;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.manifesto-quote {
    font-style: italic;
    color: #0ff;
    font-size: 1.3rem;
    margin-top: 30px;
}

.signature {
    color: #f0f;
    font-weight: bold;
    font-size: 1.4rem;
    display: block;
    margin-top: 15px;
}

footer {
    background: #000;
    border-top: 3px solid #0f0;
    padding: 40px 20px;
    margin-top: 80px;
    text-align: center;
}

.ascii-footer {
    overflow-x: auto;
    margin-bottom: 30px;
}

.ascii-footer pre {
    color: #0f0;
    font-size: clamp(0.4rem, 1.5vw, 0.7rem);
    text-shadow: 0 0 5px #0f0;
}

.footer-text {
    color: #0ff;
    font-size: 1.1rem;
    margin: 15px 0;
}

.footer-license {
    color: #ff0;
    font-size: 1rem;
    margin: 10px 0;
}

.footer-final {
    color: #f0f;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 20px;
    text-shadow: 0 0 10px #f0f;
}

@media (max-width: 768px) {
    .hero-banner {
        height: 300px;
    }

    .launch-box {
        margin: -50px 15px 30px;
        padding: 20px;
    }

    .buttons-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .code-line {
        flex-direction: column;
        align-items: flex-start;
    }

    .copy-code {
        align-self: flex-end;
    }

    .ascii-footer pre {
        font-size: 0.3rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .intro-section,
    .wtf-section,
    .install-section,
    .chaos-example,
    .manifesto {
        padding: 20px;
    }
}
