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

body {
    font-family: 'Source Code Pro', monospace;
    background-color: #000000;
    color: #00ff00;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

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

/* OPERATION_CIPHER_RAIN_PROTOCOL */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    opacity: 0.1;
}

.matrix-rain canvas {
    pointer-events: none;
}

/* SIGNAL_INTERFERENCE_LAYER_ALPHA */
.static-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, transparent 20%, rgba(255, 0, 0, 0.05) 21%, rgba(255, 0, 0, 0.05) 34%, transparent 35%),
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.02) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02) 76%, transparent 77%);
    animation: static-flicker 0.1s infinite linear;
    pointer-events: none;
    z-index: -1;
}

@keyframes static-flicker {
    0% { opacity: 0.3; }
    50% { opacity: 0.1; }
    100% { opacity: 0.3; }
}

/* Glitch Text Effects */
.glitch {
    position: relative;
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: glitch-main 2s infinite;
}

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

.glitch::before {
    color: #ff0040;
    animation: glitch-1 0.5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    color: #00ffff;
    animation: glitch-2 0.5s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-main {
    0%, 98%, 100% { transform: translate(0); }
    99% { transform: translate(-2px, 2px); }
}

@keyframes glitch-1 {
    0%, 14%, 15%, 49%, 50%, 99%, 100% { transform: translate(0); }
    15%, 49% { transform: translate(-2px, -2px); }
}

@keyframes glitch-2 {
    0%, 20%, 21%, 62%, 63%, 99%, 100% { transform: translate(0); }
    21%, 62% { transform: translate(2px, 2px); }
}

/* TARGET_ACQUISITION_ZONE_PRIMARY */
.landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.main-title {
    font-size: clamp(2rem, 8vw, 6rem);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00;
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    color: #ff0040;
    animation: glitch-text 1s infinite;
}

@keyframes glitch-text {
    0%, 90%, 100% { text-shadow: 0 0 10px #ff0040; }
    10% { text-shadow: 2px 0 #00ffff, -2px 0 #ff0040; }
}

/* Pyramid Styles */
.pyramid-container {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.pyramid {
    position: relative;
    width: 200px;
    height: 200px;
}

.pyramid-base {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 150px solid #00ff00;
    position: relative;
    filter: drop-shadow(0 0 20px #00ff00);
    animation: pyramid-glow 2s ease-in-out infinite alternate;
}

.pyramid-eye {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffff00 30%, #ff0040 70%);
    border-radius: 50%;
    border: 3px solid #00ff00;
    animation: eye-pulse 1.5s infinite;
}

.eye-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.6), transparent);
    border-radius: 50%;
    animation: glow-pulse 2s infinite;
}

.eye-pupil {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #000;
    border-radius: 50%;
}

@keyframes pyramid-glow {
    0% { filter: drop-shadow(0 0 20px #00ff00); }
    100% { filter: drop-shadow(0 0 40px #00ff00) drop-shadow(0 0 60px #00ff00); }
}

@keyframes eye-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Buy Button */
.buy-button {
    background: linear-gradient(45deg, #ff0040, #ff0080);
    border: 2px solid #00ff00;
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 1rem 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.buy-button:hover {
    box-shadow: 0 0 30px #ff0040, 0 0 60px #ff0040;
    transform: scale(1.05);
}

.buy-button .button-glitch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffff;
    opacity: 0;
    animation: button-glitch 3s infinite;
}

@keyframes button-glitch {
    0%, 95%, 100% { opacity: 0; }
    96%, 98% { opacity: 1; }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px #ff0040; }
    50% { box-shadow: 0 0 40px #ff0040, 0 0 60px #ff0040; }
}

/* Ticker */
.ticker-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 0, 64, 0.1);
    border-top: 2px solid #ff0040;
    padding: 10px 0;
    overflow: hidden;
    z-index: 1000;
}

.ticker {
    white-space: nowrap;
    color: #ff0040;
    font-weight: 600;
    animation: scroll-ticker 30s linear infinite;
}

@keyframes scroll-ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, rgba(255, 0, 64, 0.05), transparent),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px
        );
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cryptic-symbols {
    font-size: 2rem;
    color: #ff0040;
    margin: 2rem 0;
    animation: symbol-flicker 1.5s infinite;
}

@keyframes symbol-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px #00ff00;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
}

.highlight {
    color: #ff0040;
    font-weight: 700;
    text-shadow: 0 0 10px #ff0040;
}

.blink {
    animation: blink 1s infinite;
}

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

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at center, rgba(0, 255, 0, 0.05), transparent),
        repeating-conic-gradient(from 0deg, transparent 0deg, rgba(255, 0, 64, 0.02) 60deg, transparent 120deg);
}

.commandments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.commandment {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff0040;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.commandment:hover {
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.5);
    transform: translateY(-5px);
}

.triangle-divider {
    color: #00ff00;
    font-size: 1.5rem;
    text-shadow: 0 0 10px #00ff00;
    animation: triangle-glow 2s infinite alternate;
}

@keyframes triangle-glow {
    0% { text-shadow: 0 0 10px #00ff00; }
    100% { text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00; }
}

.commandment-text {
    margin: 1rem 0;
    color: #ff0040;
    font-weight: 600;
}

.commandment-text .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.roadmap-steps {
    text-align: left;
}

.roadmap-steps div {
    margin: 0.5rem 0;
}

/* Join Section */
.join {
    padding: 100px 0;
    text-align: center;
    background: 
        linear-gradient(135deg, rgba(0, 255, 255, 0.05), transparent),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 0, 64, 0.02) 10px,
            rgba(255, 0, 64, 0.02) 20px
        );
}

.join-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.encrypted-button {
    background: #000;
    border: 2px solid #00ff00;
    color: #00ff00;
    text-decoration: none;
    padding: 1.5rem 2rem;
    font-family: 'Source Code Pro', monospace;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.encrypted-button:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 30px #00ff00;
    transform: scale(1.05);
}

.encrypted-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.2), transparent);
    transition: left 0.5s;
}

.encrypted-button:hover::before {
    left: 100%;
}

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

.file-extension {
    color: #ff0040;
    font-weight: 700;
}



/* AUDIO_CONTROL_INTERFACE_STYLING */
.audio-control-btn {
    background: linear-gradient(45deg, #001100, #002200);
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 1rem 2rem;
    margin-top: 1rem;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.audio-control-btn:hover {
    background: linear-gradient(45deg, #002200, #004400);
    box-shadow: 0 0 20px rgba(0,255,0,0.4);
    transform: translateY(-2px);
}

.audio-control-btn:active {
    transform: scale(0.98);
}

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

.audio-status {
    font-weight: 600;
}


/* OPERATIONAL_FOOTER_CLASSIFIED */
.footer {
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid #ff0040;
    background: rgba(0, 0, 0, 0.9);
}

.disclaimer {
    font-size: 1.1rem;
    color: #ff0040;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #ff0040;
}

.footer-eye {
    margin: 2rem 0;
}

.rotating-eye {
    font-size: 3rem;
    animation: rotate-eye 4s linear infinite;
    display: inline-block;
    filter: drop-shadow(0 0 20px #ffff00);
}

@keyframes rotate-eye {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.copyright {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .pyramid {
        width: 150px;
        height: 150px;
    }
    
    .pyramid-base {
        border-left-width: 75px;
        border-right-width: 75px;
        border-bottom-width: 110px;
    }
    
    .pyramid-eye {
        width: 45px;
        height: 45px;
        top: 40px;
    }
    
    .buy-button {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }
    
    .commandments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .encrypted-button {
        width: 80%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .commandment {
        padding: 1.5rem;
    }
    
    .ticker {
        font-size: 0.9rem;
    }
}