:root {
    --bg-light: linear-gradient(135deg, #cbbea8 0%, #e3d7cc 100%);
    --bg-dark: linear-gradient(135deg, #2a1f16 0%, #3b2b20 100%);
    --card-light: rgba(255, 255, 255, 0.65);
    --card-dark: rgba(60, 45, 34, 0.85);
    --text-light: #222;
    --text-dark: #f1e9e2;
    --accent: #8a6b4f;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-light);
    transition: 0.4s;
}

body.dark {
    background: var(--bg-dark);
    color: var(--text-dark);
}

.toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--card-light);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    z-index: 100;
}

body.dark .toggle {
    background: var(--card-dark);
}

.container {
    max-width: 1000px;
    margin: auto;
    padding: 100px 20px 120px;
}

h1 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-align: center;
}

.meta {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.accordion {
    background: var(--card-light);
    border-radius: 26px;
    padding: 22px 26px;
    margin-bottom: 18px;
    cursor: pointer;
    transition: 0.3s;
}

body.dark .accordion {
    background: var(--card-dark);
}

.accordion-title {
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-title span {
    font-size: 1.4rem;
    transition: transform 0.3s;
}



.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    margin-top: 16px;
    line-height: 1.7;
    opacity: 0.95;
    white-space: pre-line;
}

.status {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 50px;
}

a {
    color: inherit;
}
