
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,400&display=swap');

:root {
    --bg-color: #17171C;
    --header-bg: #17171C;
    --accent-color: #FA8F2F;
    --text-primary: #FA8F2F;
    --text-secondary: #FA8F2F;
    --max-width: 1280px;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-secondary);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: var(--header-bg);
    border-bottom: 1px solid rgba(255, 179, 0, 0.3);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.header-content {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.1rem;
}

main {
    max-width: var(--max-width);
    margin: 100px auto 60px;
    padding: 0 24px;
    box-sizing: border-box;
}

h1, h2, h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-top: 40px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.6rem;
    color: var(--accent-color);
    margin-top: 50px;
}

h3 {
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

p {
    margin-bottom: 18px;
    font-weight: 300;
}

ul {
    margin-bottom: 20px;
}
li {
    margin-bottom: 10px;
    font-weight: 300;
}
strong {
    color: var(--text-primary);
    font-weight: 700;
}

.last-updated {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 40px;
}
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    header {
        height: 50px;
    }
    main {
        margin-top: 80px;
    }
}
