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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: #0a1f3d;
    color: #fbf9f4;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
    position: relative;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    opacity: 0.4;
    background-image: radial-gradient(#b8945f 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

header {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(16, 42, 79, 0.85);
    border: 1px solid rgba(184, 148, 95, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #c9cdd4;
    margin-bottom: 1.5rem;
}

.links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #b8945f;
    color: #0a1f3d;
}

.btn:hover {
    background: #cba873;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fbf9f4;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fbf9f4;
}

.card {
    background: rgba(16, 42, 79, 0.85);
    border: 1px solid rgba(184, 148, 95, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #b8945f;
    border-bottom: 1px solid rgba(184, 148, 95, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.card p {
    color: #c9cdd4;
    margin-bottom: 1rem;
    text-align: justify;
}

.item {
    margin-bottom: 1.5rem;
}

.item:last-child {
    margin-bottom: 0;
}

.item h4 {
    font-size: 1.1rem;
    color: #fbf9f4;
    margin-bottom: 0.2rem;
}

.item h4 span {
    color: #b8945f;
    font-weight: 400;
}

.item .date {
    font-size: 0.85rem;
    color: #8b95a5;
    margin-bottom: 0.5rem;
    font-style: italic;
}

footer {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(201, 205, 212, 0.6);
    padding: 1rem 0;
}

@media (max-width: 600px) {
    body { padding: 2rem 1rem; }
    .card { padding: 1.5rem; }
    h1 { font-size: 2rem; }
}