:root {
    --color-bg: #0a0a0c;
    --color-surface: #151518;
    --color-primary: #e30613;
    --color-border: #28282e;
    --color-text: #e0e0e0;
    --color-text-muted: #888;
}

body {
    background: var(--color-bg);
    color: var(--color-text);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
}

.cms-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 40px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

h1 {
    color: #fff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
    padding-bottom: 10px;
}

h2 {
    color: #fff;
    margin-top: 40px;
    font-size: 1.5rem;
}

p, ul, li {
    color: var(--color-text-muted);
}

p {
    margin-bottom: 20px;
}

.back-home {
    position: fixed;
    top: 40px;
    left: 40px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    opacity: 0.7;
    transition: 0.3s;
}

.back-home:hover {
    opacity: 1;
    color: var(--color-primary);
}

nav.simple-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
