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

body {
    background: #000000;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

nav {
    background: #000000;
    border-bottom: 1px solid #1a365d;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links a {
    margin-left: 2rem;
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4f46e5;
}

.hero {
    padding: 10rem 0 6rem;
    text-align: center;
}

.badge {
    background: rgba(30, 64, 175, 0.2);
    color: #3b82f6;
    border: 1px solid #1e3a8a;
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.accent {
    color: #3b82f6;
}

h2 {
    font-size: 1.8rem;
    color: #4b5563;
    font-weight: 300;
    margin-bottom: 1rem;
}

.bio-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.separator {
    color: #1e40af;
}

.vision {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #9ca3af;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.primary-btn {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.primary-btn:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.4);
}

.secondary-btn {
    border: 2px solid #1e40af;
    color: #3b82f6;
}

.secondary-btn:hover {
    background: rgba(37, 99, 235, 0.1);
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-cover: cover;
    border: 4px solid #1e40af;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.2);
}

.projects {
    padding: 6rem 0;
    background: #000000;
    border-top: 1px solid #1a365d;
    border-bottom: 1px solid #1a365d;
}

.projects h2, .community h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.project-card {
    background: #0a0a0a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #1e3a8a;
    transition: transform 0.3s, border-color 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #3b82f6;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.project-card p {
    color: #9ca3af;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.project-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.community {
    padding: 6rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.social-links a {
    font-size: 2.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.whatsapp { color: #25D366; }
.discord { color: #5865F2; }
.telegram { color: #0088cc; }

footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: #555;
    font-size: 0.9rem;
}

.timestamp {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    font-family: monospace;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero { padding-top: 8rem; }
    .nav-links { display: none; }
}