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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #00ff88;
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #00ff88;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #00ff88;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border: 1px solid transparent;
}

.nav-links a:hover {
    border: 1px solid #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.hero {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.15) 0%, rgba(0, 0, 0, 1) 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, #00ff88 50%, transparent 100%) 0 0 / 200px 1px,
        linear-gradient(0deg, transparent 0%, #00ff88 50%, transparent 100%) 0 0 / 1px 200px;
    opacity: 0.05;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 200px); }
}

h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #00ff88;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #88ffcc;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: #00ff88;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #00ff88;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    background: transparent;
    color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.features {
    padding: 100px 0;
    background: #050505;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #00ff88;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    padding: 40px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid #00ff88;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.1);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00ff88;
}

.feature-card p {
    color: #88ffcc;
    line-height: 1.8;
}

.stats {
    padding: 100px 0;
    background: #000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h2 {
    font-size: 48px;
    color: #00ff88;
    margin-bottom: 10px;
}

.stat-item p {
    color: #88ffcc;
    font-size: 18px;
}

footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid #00ff88;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #00ff88;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #88ffcc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #00ff88;
}

.footer-section p {
    color: #88ffcc;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #00ff88;
    color: #88ffcc;
}

.page-content {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 48px;
}

.page-content h2 {
    color: #00ff88;
    margin: 40px 0 20px;
    font-size: 32px;
}

.page-content h3 {
    color: #00ff88;
    margin: 30px 0 15px;
    font-size: 24px;
}

.page-content p {
    color: #88ffcc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul {
    color: #88ffcc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content ul li {
    margin-bottom: 10px;
}

.page-content strong {
    color: #00ff88;
}