@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --primary: #5c6ac4;
    --bg-color: #0B1326;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #f0f2f5;
    --text-muted: #9ba4b5;
    --border-color: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 100%;
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #A0B4FF, #5c6ac4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--text-muted);
}

li {
    margin-bottom: 10px;
}

a {
    color: #A0B4FF;
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(160, 180, 255, 0.4);
}

.date {
    font-size: 0.9rem;
    color: #667eea;
    margin-bottom: 40px;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(92, 106, 196, 0.1);
    border: 1px solid rgba(92, 106, 196, 0.3);
    color: #A0B4FF;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: rgba(92, 106, 196, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
}

.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}