chtml, body {
    color: #E8E0D5;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    
    /* Base background color */
    background-color: #1A1A1A;
    
    /* Radial gradient for the pulse */
    background-image: radial-gradient(circle at 0% 0%, #2A2A2A, #1A1A1A 40%); 
    background-repeat: no-repeat;
    
    /* Animation */
    animation: pulseBG 5s infinite alternate ease-in-out;
    
    position: relative;
    overflow-x: hidden;
}

@keyframes pulseBG {
    from {
        background-size: 100% 100%; /* Start with gradient covering a smaller area implicitly */
    }
    to {
        background-size: 150% 150%; /* Expand the gradient slightly */
    }
}

.page {
    padding-left: 30px;
    padding-top: 15px;
    padding-right: 30px;
    padding-bottom: 50px;
    max-width: 60%;
}

header {
    margin-bottom: 40px;
}

.bio {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
}

h1 {
    font-size: 40px;
    margin-block-start: 0.67em;
    margin-block-end: 0.37em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    margin-bottom: -10px;
    color: #D4C4B5;
}

h2 {
    font-weight: normal;
    font-size: 20px;
    color: #B8A99A;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #D4C4B5;
}

.section {
    margin-top: 40px;
    border-top: 1px;
    border-style: ridge;
    border-color: #2A2A2A;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding-top: 20px;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

li {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #E8E0D5;
}

a {
    color: #C4A484;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: #D4B494;
}

span.label {
    border-radius: 5px;
    background: #8B7355;
    padding: 4px 8px;
    color: #E8E0D5;
    font-size: 12px;
    margin-left: 8px;
    font-weight: 500;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .page {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }
    
    li {
        line-height: 1.3;
        margin-bottom: 14px;
    }
    
    .bio {
        font-size: 16px;
    }
}