/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    background-image: url('../assets/bg-pattern.png'); /* Optional: subtle tech pattern */
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: white;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/particles.png') repeat;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

.logo {
    max-width: 150px;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 20px rgba(0,212,255,0.5);
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.motto {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

main {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.95);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.content h2 {
    color: #007bff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
}

.content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .motto { font-size: 1.2rem; }
    main { margin: 1.5rem; padding: 1.5rem; }
}
