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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1e1e3f 50%, #2d2d5a 100%);
    min-height: 100vh;
    color: #e0e0e0;
    line-height: 1.6;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.loading-animation {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

a { color: #00f2fe; text-decoration: none; transition: color 0.3s; }
a:hover { color: #4facfe; text-decoration: underline; }
a:visited { color: #9ca3af; }

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
}
