:root {
    --primary: #0f0;
    --secondary: #00b300;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #e0e0e0;
    --accent: #0f9;
    --font-main: 'Courier New', monospace;
    --font-secondary: 'Lucida Console', Monaco, monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.1s ease;
    z-index: 9999;
    display: none;
}

/* Hacker Overlay Effect */
.hacker-overlay {
    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: 100;
}

.hacker-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--primary);
    font-family: var(--font-secondary);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.logo span {
    color: var(--light);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 50px;
    position: relative;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.hero h1 span.typing {
    color: var(--primary);
    border-right: 3px solid var(--primary);
    padding-right: 5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--primary); }
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    color: #aaa;
}

.search-container {
    display: flex;
    width: 100%;
    max-width: 650px;
    margin: 20px 0;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid var(--primary);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--light);
    border-radius: 4px 0 0 4px;
    font-family: var(--font-main);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    transition: all 0.3s;
}

.search-container input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.search-container button {
    padding: 15px 25px;
    background-color: var(--primary);
    color: var(--dark);
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.search-container button:hover {
    background-color: var(--secondary);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

.matrix-effect {
    font-family: var(--font-main);
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.5;
    margin-top: 40px;
    animation: fade 3s infinite alternate;
}

@keyframes fade {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2, .how-it-works h2, .telegram-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.features h2 span, .how-it-works h2 span, .telegram-section h2 span {
    color: var(--primary);
}

.features h2::after, .how-it-works h2::after, .telegram-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.platform {
    padding: 30px 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
}

.platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
    border-color: var(--primary);
}

.platform i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.platform h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 0, 0.2);
    border-color: var(--primary);
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: rgba(0, 255, 0, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-secondary);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Telegram Section */
.telegram-section {
    padding: 80px 0;
    text-align: center;
}

.telegram-section p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
}

.telegram-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #0088cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 18px;
}

.telegram-btn:hover {
    background-color: #0099dd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

.telegram-btn i {
    margin-right: 10px;
}

/* Footer Styles */
footer {
    background-color: var(--darker);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 14px;
}

.copyright span {
    color: #888;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .steps {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    nav ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .search-container {
        flex-direction: column;
    }
    
    .search-container input {
        border-radius: 4px 4px 0 0;
    }
    
    .search-container button {
        border-radius: 0 0 4px 4px;
        width: 100%;
    }
}