/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #00ff41;
    font-family: 'Share Tech Mono', monospace;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    user-select: none; /* Disable text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Disable right click */
body {
    -webkit-touch-callout: none;
}

/* Matrix Background */
#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(ellipse at center, #0a2f0a 0%, #0a0a0a 70%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.03) 2px, rgba(0, 255, 65, 0.03) 4px);
    opacity: 0.5;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.hacker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #00ff41;
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.neon-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 24px;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41, 0 0 40px #00ff41;
    animation: neonPulse 2s infinite;
}

.crypto-text {
    font-size: 14px;
    color: #8bc34a;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: #00ff41;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #00ff41;
}

.btn-login {
    background: transparent;
    border: 1px solid #00ff41;
    color: #00ff41;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #00ff41;
    color: #0a0a0a;
    box-shadow: 0 0 20px #00ff41;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
}

.glitch-container {
    margin-bottom: 20px;
}

.glitch-text {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41;
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    color: #ff00ff;
    z-index: -1;
    animation: glitch1 3s infinite;
}

.glitch-text::after {
    color: #00ffff;
    z-index: -2;
    animation: glitch2 3s infinite;
}

@keyframes glitch1 {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-5px, -5px); }
    92% { transform: translate(5px, 5px); }
    93% { transform: translate(-5px, 5px); }
    94% { transform: translate(5px, -5px); }
}

@keyframes glitch2 {
    0%, 85%, 100% { transform: translate(0); }
    86% { transform: translate(3px, -3px); }
    87% { transform: translate(-3px, 3px); }
    88% { transform: translate(3px, 3px); }
    89% { transform: translate(-3px, -3px); }
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.subtitle {
    font-size: 18px;
    color: #8bc34a;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background: #00ff41;
    color: #0a0a0a;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 0 30px #00ff41;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #00ff41;
    color: #00ff41;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #00ff41;
    color: #0a0a0a;
    box-shadow: 0 0 20px #00ff41;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Terminal Stats */
.terminal-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid #00ff41;
    border-radius: 4px;
}

.stat-box {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #8bc34a;
    margin-bottom: 5px;
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
}

/* Section Titles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    color: #00ff41;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #00ff41;
}

.bracket {
    color: #8bc34a;
}

/* Service Section */
.service-section {
    padding: 40px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid #00ff41;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.1);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #00ff41;
    margin-bottom: 10px;
}

.service-card p {
    color: #8bc34a;
    font-size: 14px;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 0;
}

.pricing-card {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid #00ff41;
    border-radius: 4px;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.pricing-header h3 {
    color: #00ff41;
    font-size: 24px;
    margin-bottom: 15px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 20px;
    color: #8bc34a;
}

.amount {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    color: #00ff41;
    text-shadow: 0 0 20px #00ff41;
}

.period {
    font-size: 14px;
    color: #8bc34a;
}

.pricing-features {
    padding: 20px 0;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    color: #8bc34a;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.05);
}

.pricing-payment {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.pricing-payment h4 {
    color: #00ff41;
    margin-bottom: 10px;
}

#btcPrice {
    color: #ffd700;
}

.payment-info {
    margin: 15px 0;
    padding: 10px;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 4px;
}

.pay-label {
    color: #8bc34a;
}

.pay-amount {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 20px;
}

.btn-pay {
    margin-top: 10px;
}

/* How It Works */
.how-section {
    padding: 40px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
    padding: 20px;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 4px;
}

.step-number {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    color: #00ff41;
    margin-bottom: 10px;
}

.step h3 {
    color: #00ff41;
    margin-bottom: 10px;
}

.step p {
    color: #8bc34a;
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
}

.contact-box {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid #00ff41;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-box h3 {
    color: #00ff41;
    margin-bottom: 15px;
}

.contact-box p {
    color: #8bc34a;
    margin-bottom: 15px;
}

.email-link {
    color: #00ff41;
    text-decoration: none;
}

.email-link:hover {
    text-shadow: 0 0 10px #00ff41;
}

.security-badge {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-badge span {
    background: rgba(0, 255, 65, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    color: #8bc34a;
    font-size: 12px;
}

/* Footer */
.hacker-footer {
    border-top: 1px solid #00ff41;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8bc34a;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #8bc34a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #00ff41;
}

.footer-copy {
    text-align: center;
    color: #555;
    font-size: 12px;
}

.terminal-text {
    color: #00ff41;
    font-size: 12px;
    margin-top: 5px;
}

/* Payment Box */
.payment-box {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid #00ff41;
    border-radius: 4px;
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
}

.payment-header {
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.payment-header h1 {
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    margin-bottom: 10px;
}

.payment-header p {
    color: #8bc34a;
}

.payment-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 255, 65, 0.05);
}

.detail-row .label {
    color: #8bc34a;
}

.detail-row .value {
    color: #00ff41;
}

.detail-row .value.highlight {
    color: #ffd700;
    font-family: 'Orbitron', monospace;
}

.detail-row .value.code {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
}

.wallet-section {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: center;
}

.wallet-section h3 {
    color: #00ff41;
    margin-bottom: 15px;
}

.wallet-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 255, 65, 0.05);
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.wallet-address code {
    color: #ffd700;
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    word-break: break-all;
}

.btn-copy {
    background: transparent;
    border: 1px solid #00ff41;
    color: #00ff41;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: #00ff41;
    color: #0a0a0a;
}

.qr-code-container {
    margin: 20px 0;
}

.qr-code {
    max-width: 200px;
    height: auto;
    border: 2px solid #00ff41;
    border-radius: 4px;
}

.payment-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-info {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.support-info p {
    color: #8bc34a;
    font-size: 14px;
}

.support-info a {
    color: #00ff41;
    text-decoration: none;
}

/* Verification Box */
.verification-box {
    background: rgba(0, 255, 65, 0.05);
    border: 2px solid #00ff41;
    border-radius: 4px;
    padding: 40px;
    max-width: 600px;
    margin: 40px auto;
}

.verification-box h1 {
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.status-indicator.confirmed {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid #00ff41;
}

.status-indicator.pending {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

.status-indicator.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
}

.status-icon {
    font-size: 40px;
}

.status-message {
    color: #8bc34a;
}

.verification-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #00ff41;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff41;
    color: #00ff41;
    border-radius: 4px;
    font-family: 'Share Tech Mono', monospace;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.help-text {
    color: #8bc34a;
    font-size: 12px;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* Login Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #0a0a0a;
    border: 2px solid #00ff41;
    border-radius: 4px;
    max-width: 450px;
    width: 90%;
    padding: 30px;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    color: #8bc34a;
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    color: #ff0000;
}

.modal-header h2 {
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    margin-bottom: 5px;
}

.modal-header p {
    color: #8bc34a;
    font-size: 14px;
}

.modal-body {
    padding: 10px 0;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body .form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ff41;
    color: #00ff41;
    border-radius: 4px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    text-align: center;
    letter-spacing: 2px;
}

.modal-body .form-group input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff0000;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.modal-footer p {
    color: #8bc34a;
    font-size: 14px;
}

.modal-footer a {
    color: #00ff41;
    text-decoration: none;
}

.modal-footer a:hover {
    text-shadow: 0 0 10px #00ff41;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hacker-header {
        flex-direction: column;
        gap: 15px;
    }

    .glitch-text {
        font-size: 28px;
    }

    .terminal-stats {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-card {
        padding: 20px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-box,
    .verification-box {
        padding: 20px;
        margin: 20px 10px;
    }

    .detail-row {
        flex-direction: column;
        gap: 5px;
        padding: 8px 0;
    }

    .payment-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .glitch-text {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}