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

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-card: #0d0d0d;
    --text-primary: #00ff00;
    --text-secondary: #00cc00;
    --text-muted: #008800;
    --border-color: #00ff00;
    --accent-red: #ff0000;
    --accent-cyan: #00ffff;
    --shadow-glow: 0 0 20px rgba(0, 255, 0, 0.3);
    --transition: all 0.3s ease;
    --font-mono: 'Share Tech Mono', monospace;
    --font-secondary: 'Roboto Mono', monospace;
}

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

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-mono);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Scanline effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
}

/* Matrix rain effect */
.matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.matrix-rain span {
    position: absolute;
    top: -20px;
    font-size: 20px;
    color: var(--text-primary);
    opacity: 0.5;
    animation: matrix-fall linear infinite;
}

@keyframes matrix-fall {
    0% {
        top: -20px;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 100vh;
        opacity: 0;
    }
}

.page-container {
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.main-header {
    background: var(--bg-secondary);
    border-bottom: 2px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-glow);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2em;
    font-weight: bold;
}

.logo-icon {
    color: var(--accent-red);
    font-size: 1.5em;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0%, 100% { text-shadow: 0 0 10px var(--accent-red); }
    50% { text-shadow: 0 0 20px var(--accent-red), 0 0 30px var(--accent-red); }
}

.logo-text {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--text-primary);
    letter-spacing: 2px;
}

.logo-suffix {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95em;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    box-shadow: 0 0 5px var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-mono);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login:hover,
.btn-register:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.85em;
    letter-spacing: 2px;
    margin-bottom: 30px;
    background: rgba(0, 255, 0, 0.05);
}

.hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    color: var(--accent-red);
    text-shadow: 0 0 30px var(--accent-red);
    animation: glitch 4s infinite;
    letter-spacing: 5px;
    font-weight: bold;
}

@keyframes glitch {
    0%, 100% { 
        text-shadow: 0 0 30px var(--accent-red); 
        transform: translate(0);
    }
    20% { 
        text-shadow: -3px 0 30px var(--accent-red), 3px 0 30px var(--text-primary); 
        transform: translate(-2px, 0);
    }
    40% { 
        text-shadow: 3px 0 30px var(--accent-red), -3px 0 30px var(--text-primary); 
        transform: translate(2px, 0);
    }
    60% { 
        text-shadow: 0 3px 30px var(--accent-red), 0 -3px 30px var(--text-primary); 
        transform: translate(0, 2px);
    }
}

.hero-subtitle {
    font-size: 1.5em;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.feature-tag {
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    background: rgba(0, 255, 0, 0.05);
    color: var(--text-primary);
    font-size: 0.85em;
    letter-spacing: 1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 40px 20px;
    transition: var(--transition);
    text-align: center;
}

.stat-item:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
    border-color: var(--text-primary);
}

.stat-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3em;
    color: var(--text-primary);
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--text-primary);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sections */
.marketplace-section,
.vendors-section,
.security-section,
.support-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.section-title {
    font-size: 3em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--text-primary);
    position: relative;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background: var(--text-primary);
    margin: 30px auto 0;
    box-shadow: 0 0 10px var(--text-primary);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
    border-color: var(--text-primary);
}

.category-icon {
    font-size: 4em;
    margin-bottom: 25px;
}

.category-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-shadow: 0 0 5px var(--text-primary);
}

.category-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.category-meta {
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9em;
    color: var(--text-secondary);
}

/* Vendors Grid */
.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.vendor-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 30px;
    transition: var(--transition);
    position: relative;
}

.vendor-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

.vendor-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: var(--accent-red);
    color: #000;
    font-size: 0.7em;
    font-weight: bold;
    letter-spacing: 1px;
}

.vendor-badge.verified {
    background: var(--text-primary);
}

.vendor-badge.trusted {
    background: var(--accent-cyan);
}

.vendor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.vendor-avatar {
    width: 70px;
    height: 70px;
    background: var(--text-primary);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 2px solid var(--text-primary);
}

.vendor-info h3 {
    font-size: 1.4em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.vendor-level {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.vendor-rating {
    font-size: 0.95em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.vendor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.vendor-stat {
    text-align: center;
}

.vendor-stat .stat-label {
    display: block;
    font-size: 0.75em;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vendor-stat .stat-value {
    display: block;
    font-size: 1.3em;
    color: var(--text-primary);
    font-weight: bold;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.security-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.security-card:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 4em;
    margin-bottom: 25px;
}

.security-card h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.security-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.support-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 40px 30px;
}

.support-card h3 {
    color: var(--text-primary);
    margin-bottom: 25px;
    font-size: 1.5em;
    text-shadow: 0 0 5px var(--text-primary);
}

.support-card ul {
    list-style: none;
}

.support-card li {
    margin-bottom: 15px;
}

.support-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.support-card a::before {
    content: '▸ ';
    color: var(--text-primary);
    margin-right: 10px;
}

.support-card a:hover {
    color: var(--text-primary);
    padding-left: 15px;
    text-shadow: 0 0 5px var(--text-primary);
}

/* Footer */
.main-footer {
    background: var(--bg-secondary);
    border-top: 2px solid var(--border-color);
    padding: 50px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.1em;
    text-shadow: 0 0 5px var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 0.9em;
}

.footer-column a:hover {
    color: var(--text-primary);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85em;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Auth Pages */
.auth-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.auth-container {
    max-width: 500px;
    width: 100%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    padding: 50px 40px;
    box-shadow: var(--shadow-glow);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo-large {
    margin-bottom: 30px;
}

.logo-large .logo-icon {
    font-size: 3em;
}

.logo-large .logo-text {
    font-size: 2em;
}

.auth-header h2 {
    color: var(--text-primary);
    font-size: 2em;
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--text-primary);
}

.auth-header p {
    color: var(--text-muted);
}

/* Timer Display */
.timer-display {
    text-align: center;
    padding: 40px;
    border: 2px solid var(--border-color);
    background: rgba(0, 255, 0, 0.05);
    margin-bottom: 30px;
}

.timer-label {
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.timer-countdown {
    font-size: 4em;
    color: var(--text-primary);
    font-weight: bold;
    text-shadow: 0 0 20px var(--text-primary);
    margin: 20px 0;
}

.timer-message {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-top: 15px;
}

/* Forms */
.auth-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 0.95em;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 15px;
    font-family: var(--font-mono);
    font-size: 1em;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    box-shadow: var(--shadow-glow);
    border-color: var(--text-primary);
}

.form-group small {
    display: block;
    color: var(--text-muted);
    font-size: 0.8em;
    margin-top: 8px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
    width: auto;
    accent-color: var(--text-primary);
}

.form-check label {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 1.1em;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.btn-submit:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.form-links {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.form-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9em;
    transition: var(--transition);
}

.form-links a:hover {
    color: var(--text-primary);
}

.auth-footer {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9em;
}

.auth-footer p {
    margin: 10px 0;
}

.auth-footer a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.auth-footer a:hover {
    text-shadow: 0 0 5px var(--text-primary);
}

.security-notice,
.registration-info {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--accent-red);
    padding: 20px;
    margin-top: 25px;
}

.security-notice p,
.registration-info p {
    color: var(--text-muted);
    font-size: 0.85em;
    margin: 5px 0;
}

.registration-info h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.registration-info ul {
    list-style: none;
    padding-left: 0;
}

.registration-info li {
    color: var(--text-muted);
    font-size: 0.9em;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.registration-info li::before {
    content: '✓ ';
    color: var(--text-primary);
    margin-right: 10px;
}

/* Ban Page */
.ban-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.ban-icon {
    font-size: 8em;
    color: var(--accent-red);
    margin-bottom: 30px;
    animation: pulse-red 2s infinite;
}

.ban-title {
    font-size: 4em;
    color: var(--accent-red);
    text-shadow: 0 0 30px var(--accent-red);
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.ban-message {
    max-width: 600px;
    margin-bottom: 40px;
}

.ban-message p {
    color: var(--text-secondary);
    font-size: 1.2em;
    margin: 15px 0;
}

.ban-ip {
    color: var(--text-primary);
    font-size: 1.5em;
    font-weight: bold;
}

.ban-reason {
    color: var(--accent-red);
}

.ban-timer {
    background: var(--bg-card);
    border: 2px solid var(--accent-red);
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.ban-timer p {
    color: var(--text-muted);
    font-size: 1.1em;
    margin-bottom: 20px;
}

.countdown-display {
    font-size: 5em;
    color: var(--accent-red);
    font-weight: bold;
    text-shadow: 0 0 30px var(--accent-red);
    font-family: var(--font-mono);
}

.ban-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.btn-bypass,
.btn-back {
    padding: 15px 30px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-mono);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1em;
    text-transform: uppercase;
}

.btn-bypass:hover,
.btn-back:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.ban-footer {
    color: var(--text-muted);
    font-size: 0.9em;
    margin-top: 40px;
}

.ban-footer p {
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .ban-title {
        font-size: 2.5em;
    }
    
    .countdown-display {
        font-size: 3em;
    }
}

/* Hidden  Data */
/* pxXUMUuZTo3rHO8UTqiIKwk0mc5vSUbZoYZ45SN7XY1I2PEMgp4LsgIkz15Woc661TuT3bq7sikTo9K6popZpk7SIkd2uhgNmj8sYq4Lcs4bKx*/

