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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    padding: 60px 40px;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3em;
    color: #667eea;
    margin-bottom: 10px;
}

header .subtitle {
    font-size: 1.2em;
    color: #666;
}

main {
    margin: 40px 0;
}

.construction {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.construction h2 {
    font-size: 2em;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.construction p {
    font-size: 1.1em;
    color: #666;
}

.projects {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.projects h3 {
    font-size: 1.5em;
    color: #667eea;
    margin-bottom: 20px;
}

.projects ul {
    list-style: none;
}

.projects li {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.projects a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
}

.projects a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #666;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    header h1 {
        font-size: 2em;
    }

    .construction h2 {
        font-size: 1.5em;
    }
}
