<style>
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@300;400;600&display=swap');

:root {
    --ctp-base: #1e1e2e;
    --ctp-crust: #11111b;
    --ctp-text: #cdd6f4;
    --ctp-surface0: #313244;
    --ctp-blue: #89b4fa;
    --ctp-mauve: #cba6f7;
    --ctp-peach: #fab387;
}

body {
    background: var(--ctp-base);
    color: var(--ctp-text);
    font-family: 'Geologica', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    font-weight: 600;
    margin: 2em 0 1em;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--ctp-surface0);
}

h2 {
    font-weight: 500;
    margin: 2.5em 0 1.5em;
    padding: 15px 20px;
    background: linear-gradient(90deg, var(--ctp-surface0) 0%, rgba(49,50,68,0) 100%);
    border-left: 4px solid var(--ctp-peach);
    border-radius: 4px 0 0 4px;
    position: relative;
}

h2::before {
    /* Вариант 3: CSS-треугольник */
    content: "";
    border-left: 6px solid var(--ctp-peach);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
}

h3 {
    font-weight: 400;
    margin: 2em 0 1em;
    color: var(--ctp-blue);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    background: var(--ctp-crust);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.15);
}

th, td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--ctp-surface0);
}

th {
    background-color: var(--ctp-surface0);
    color: var(--ctp-peach);
    font-weight: 500;
    letter-spacing: 0.05em;
}

tr:hover {
    background-color: var(--ctp-surface0);
}

tr:nth-child(even) {
    background-color: rgba(49, 50, 68, 0.1);
}
td:nth-child(1) { width: 300px; }
td:nth-child(2) { width: 200px; }
td:nth-child(3) { width: 70px; }

a {
    color: var(--ctp-blue);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--ctp-peach);
    text-decoration: underline;
}

@media (max-width: 640px) {
    body {
        padding: 25px 20px;
        font-size: 0.95em;
    }
    
    h2 {
        margin: 2em 0;
        padding: 12px 15px;
    }
}
</style>
