/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #01050f;
    font-family: 'IBM Plex Mono', 'JetBrains Mono', monospace;
    color: #d4eaff;
    line-height: 1.5;
    overflow-x: hidden;
}

#networkCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    background: radial-gradient(circle at 20% 30%, #0a1020, #01040c);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 28px 0 20px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    margin-bottom: 40px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #00f0ff, #00ff9d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.status-badge {
    background: #0a1a1f;
    border: 1px solid #00ff41;
    border-radius: 60px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #00ff41;
    box-shadow: 0 0 6px rgba(0,255,65,0.4);
}

.glitch {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    color: #bbf0ff;
    text-shadow: 0.05em 0 0 rgba(255,0,0,0.4), -0.05em -0.025em 0 rgba(0,255,0,0.3);
    animation: glitch-shake 0.3s infinite alternate;
}

@keyframes glitch-shake {
    0% { transform: skew(0deg, 0deg); text-shadow: 0.03em 0 0 #ff00c1, -0.03em -0.02em 0 #00ff41; }
    100% { transform: skew(0.5deg, 0.2deg); text-shadow: -0.03em 0 0 #ff00c1, 0.03em 0.01em 0 #00f0ff; }
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 80px;
    gap: 30px;
    min-height: 320px;
}

.hero-text {
    flex: 1.2;
}

.hero-text h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: #a0bbe0;
    border-left: 3px solid #00ff41;
    padding-left: 18px;
}

.cta-button {
    display: inline-block;
    background: rgba(0, 240, 255, 0.08);
    border: 2px solid #00f0ff;
    padding: 14px 38px;
    font-weight: bold;
    font-size: 1rem;
    font-family: monospace;
    color: #00f0ff;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.25s;
    box-shadow: 0 0 6px rgba(0,240,255,0.3);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.cta-button:hover {
    background: #00f0ff20;
    box-shadow: 0 0 18px #00f0ff;
    transform: scale(1.02);
}

.hero-icon {
    flex: 0.8;
    text-align: center;
}

.section-title {
    font-size: 1.8rem;
    margin: 60px 0 30px;
    display: inline-block;
    border-bottom: 2px solid #00ff41;
    letter-spacing: -0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin: 30px 0 20px;
}

.feature-card {
    background: rgba(12, 20, 35, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 24px 20px;
    border: 1px solid rgba(0, 240, 255, 0.25);
    transition: 0.2s;
}

.feature-card:hover {
    border-color: #00ff41;
    box-shadow: 0 0 15px rgba(0,255,65,0.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #00f0ff;
}

.pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.price-card {
    background: rgba(0, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 28px 22px;
    width: 320px;
    border: 1px solid #2a3f5e;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: #00f0ff;
    transform: translateY(-6px);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #00ff41;
    margin: 15px 0;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.price-card li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.price-card li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #00f0ff;
}

.wallet-info {
    background: #07101a;
    border-radius: 12px;
    padding: 8px;
    font-size: 0.65rem;
    word-break: break-all;
    margin: 15px 0;
    font-family: monospace;
    color: #7ab3c8;
    border: 1px solid #1a3a4a;
}

.price-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #00ff41;
    color: #00ff41;
    padding: 10px;
    font-family: monospace;
    font-weight: bold;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: auto;
}

.price-btn:hover {
    background: #00ff4122;
    box-shadow: 0 0 10px #00ff41;
}

.terminal {
    background: #071017;
    border-radius: 20px;
    border: 1px solid #2a5f6e;
    margin: 50px 0;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,240,255,0.2);
}

.term-header {
    background: #0f1a24;
    padding: 12px 20px;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid #2a5a6a;
}

.term-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff5f56;
}

.term-dot:nth-child(2) { background: #ffbd2e; }
.term-dot:nth-child(3) { background: #27c93f; }

.term-body {
    padding: 24px;
    font-family: monospace;
    font-size: 0.85rem;
    background: #030c14;
    min-height: 280px;
}

.line {
    margin: 6px 0;
    white-space: pre-wrap;
}

.prompt {
    color: #00ff41;
}

.cmd {
    color: #00f0ff;
}

.typing-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #00f0ff;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.testimonial {
    background: rgba(0, 20, 30, 0.6);
    border-left: 4px solid #00ff41;
    padding: 20px;
    border-radius: 20px;
    flex: 1;
    min-width: 240px;
}

.author {
    margin-top: 15px;
    color: #00f0ff;
    font-size: 0.8rem;
}

.contacts {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 50px;
    flex-wrap: wrap;
}

.contact-link {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid #00f0ff;
    padding: 14px 32px;
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    color: #00f0ff;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.25s;
    letter-spacing: 1px;
}

.contact-link:hover {
    background: #00f0ff20;
    box-shadow: 0 0 15px #00f0ff;
    transform: scale(1.05);
}

footer {
    margin-top: 70px;
    padding: 40px 0 30px;
    border-top: 1px solid #1a2a3a;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.7rem;
    gap: 20px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, #0a1225 0%, #060c18 100%);
    border: 1px solid #00f0ff;
    border-radius: 28px;
    max-width: 480px;
    width: 90%;
    padding: 32px;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.15);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    padding-bottom: 15px;
}

.modal-header h3 {
    color: #00ff41;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.modal-close {
    background: none;
    border: none;
    color: #00f0ff;
    font-size: 28px;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: #ff4444;
    transform: scale(1.1);
}

.modal-plan {
    text-align: center;
    font-size: 1.2rem;
    color: #00f0ff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(0, 240, 255, 0.3);
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 20, 30, 0.5);
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.payment-label {
    font-size: 0.7rem;
    color: #7a9bcb;
    letter-spacing: 1px;
}

.payment-value {
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 600;
    word-break: break-all;
    text-align: right;
    color: #00ff41;
}

.wallet-address {
    font-size: 0.75rem;
    color: #7ab3c8;
}

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 20px;
    margin: 10px 0;
}

.copy-modal-btn, .simulate-btn {
    background: transparent;
    border: 1px solid #00f0ff;
    color: #00f0ff;
    padding: 12px 24px;
    font-family: monospace;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.copy-modal-btn:hover, .simulate-btn:hover {
    background: #00f0ff20;
    box-shadow: 0 0 12px #00f0ff;
    transform: scale(1.01);
}

.simulate-btn {
    border-color: #00ff41;
    color: #00ff41;
    margin-top: 16px;
}

.simulate-btn:hover {
    background: #00ff4120;
    box-shadow: 0 0 12px #00ff41;
}

.success-message {
    text-align: center;
    font-size: 0.8rem;
    color: #00ff41;
    min-height: 40px;
    padding: 8px;
}

.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #00ff41;
    color: #01050f;
    padding: 12px 24px;
    border-radius: 40px;
    font-family: monospace;
    font-weight: bold;
    font-size: 0.85rem;
    z-index: 1100;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px #00ff41;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 760px) {
    .hero-text h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.4rem; }
    .glitch { font-size: 2.2rem; }
    .payment-row { flex-direction: column; align-items: flex-start; }
    .payment-value { text-align: left; }
    .hero { margin: 20px 0 50px; }
    .contacts { gap: 20px; }
    .contact-link { padding: 10px 20px; font-size: 0.85rem; }
}