@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.75;
    color: #d8c5a8;
    background-color: #0f0805;
    background-image:
        radial-gradient(ellipse at top, rgba(196, 88, 32, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(120, 40, 15, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #0f0805 0%, #1a0d07 50%, #150a05 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent 0,
            transparent 2px,
            rgba(139, 69, 19, 0.015) 2px,
            rgba(139, 69, 19, 0.015) 4px
        );
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 820px;
    margin: 0 auto;
    background:
        linear-gradient(160deg, rgba(48, 26, 16, 0.95) 0%, rgba(28, 16, 9, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 64px 64px 52px;
    border-radius: 14px;
    border: 1px solid rgba(180, 100, 50, 0.18);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 140, 60, 0.04) inset,
        0 1px 0 rgba(255, 180, 100, 0.08) inset;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #8b2e0f 15%,
        #c44826 35%,
        #ff8c42 50%,
        #c44826 65%,
        #8b2e0f 85%,
        transparent 100%);
}

header {
    border-bottom: 1px solid rgba(180, 100, 50, 0.18);
    padding-bottom: 30px;
    margin-bottom: 44px;
    position: relative;
}

h1 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.6em;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffb37a 0%, #e76f51 55%, #b8391a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.date {
    color: #a08770;
    font-size: 0.78em;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

h2 {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-weight: 500;
    color: #e8a87c;
    font-size: 1.35em;
    margin-bottom: 16px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
}

h2::before {
    content: '';
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, #ff8c42 0%, #c44826 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(255, 140, 66, 0.4);
}

section {
    margin-bottom: 38px;
    animation: fadeUp 0.6s ease backwards;
}

section:nth-child(2) { animation-delay: 0.05s; }
section:nth-child(3) { animation-delay: 0.1s; }
section:nth-child(4) { animation-delay: 0.15s; }
section:nth-child(5) { animation-delay: 0.2s; }
section:nth-child(6) { animation-delay: 0.25s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

section p {
    margin-bottom: 12px;
    color: #c9b596;
    font-size: 1.02em;
}

.highlight {
    background:
        linear-gradient(135deg, rgba(196, 72, 38, 0.18) 0%, rgba(139, 40, 15, 0.12) 100%);
    border: 1px solid rgba(255, 140, 66, 0.22);
    border-left: 4px solid #ff8c42;
    padding: 26px 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 107, 26, 0.05) inset;
}

.highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.highlight h2 {
    color: #ffb37a;
    margin-bottom: 10px;
}

.highlight h2::before {
    background: linear-gradient(180deg, #ffb37a 0%, #ff6b1a 100%);
}

.highlight p {
    color: #e8d9c4;
    position: relative;
    z-index: 1;
}

ul {
    margin-left: 4px;
    margin-top: 14px;
    list-style: none;
}

ul li {
    margin-bottom: 11px;
    padding-left: 24px;
    position: relative;
    color: #c9b596;
    transition: color 0.2s ease, transform 0.2s ease;
}

ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0.7em;
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #ff8c42 0%, #c44826 100%);
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(255, 140, 66, 0.35);
}

ul li:hover {
    color: #f4a261;
    transform: translateX(4px);
}

strong {
    color: #ffb37a;
    font-weight: 600;
}

.contact {
    margin-top: 14px;
    padding: 16px 24px;
    background: rgba(255, 140, 66, 0.08);
    border: 1px solid rgba(255, 140, 66, 0.22);
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact:hover {
    background: rgba(255, 140, 66, 0.14);
    border-color: rgba(255, 140, 66, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 107, 26, 0.18);
}

a {
    color: #ff8c42;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed rgba(255, 140, 66, 0.4);
    transition: all 0.2s ease;
}

a:hover {
    color: #ffb37a;
    border-bottom-color: #ffb37a;
    text-shadow: 0 0 12px rgba(255, 140, 66, 0.45);
}

footer {
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(180, 100, 50, 0.15);
    text-align: center;
    color: #7d6a55;
    font-size: 0.78em;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 700px) {
    body {
        padding: 20px 12px;
    }

    .container {
        padding: 40px 28px 32px;
        border-radius: 12px;
    }

    h1 {
        font-size: 1.9em;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 1.15em;
        letter-spacing: 1.2px;
    }

    section p {
        font-size: 0.98em;
    }

    .highlight {
        padding: 22px 24px;
    }
}

@media (max-width: 420px) {
    .container {
        padding: 32px 20px 24px;
    }

    h1 {
        font-size: 1.6em;
    }
}