html,body {
    height: 100%;
    margin: 0;
    background-color: #000000; 
    font-family: 'Libre Baskerville', serif;
    color: #e0e0e0; 
    -webkit-font-smoothing: antialiased;
}
.main-container {
    margin: -120px auto; 
    max-width: 1100px;
    display: flex;
    width: 57%;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 60px; 
    padding: 60px 40px;
}
#navigation a {
    position: relative;
    padding: 10px 0;
    background: none;
    border: none;
    color: #ffb703; 
    font-family: 'Cinzel Decorative', serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left; 
    display: block;
    transition: color 0.1s steps(2); 
}
#navigation a::before {
    content: "";
}
#navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px; 
    background-color: #fb8500; 
    transform: scaleX(0);
    transform-origin: right;
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
    transition: transform 0.15s steps(2);
}
#navigation a:hover {
    color: #fb8500;
}
#navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
#navigation {
    width: 220px;
    padding: 40px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: sticky;
    top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#navigation::before {
    content: "";
    position: absolute;
    right: -30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #fb8500 15%, #ffb703 85%, transparent);
}
#navigation::after {
    display: none;
}
#content {
    flex: 1;
    max-width: 760px;
}
.contentx {
    position: relative;
    padding: 0;
    text-align: justify;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #e0e0e0;
    line-height: 2;
    letter-spacing: .2px;
    box-shadow: none;
}
.contentx > p:first-of-type::first-letter {
    font-family: 'Cinzel Decorative', serif;
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    margin-top: 4px;
    margin-right: 12px;
    color: #fb8500;
}
.contentx span {
    background-color: #ffffff;
    color: #121212;
    padding: 2px 6px;
    font-weight: 700;
    border-radius: 0;
    box-shadow: 0 0 0 2px #ffffff; 
    display: inline-block;
}
#header {
    background-image: url(images/head.jpg);
    background-repeat: no-repeat;
    background-position: center;
    height: 621px;
    background-color: #000000; 
    width: 100%;
    position: relative;
}
h1 {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding: 0 0 20px 0;
    font-family: 'Cinzel Decorative', serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 5px solid #ffb703; 
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 98% 100%, 0 100%);
}
h1::before, h1::after {
    display: none;
}
h1::selection {
    background: #fb8500;
    color: #121212;
}
blockquote {
    position: relative;
    margin: 50px 0;
    padding: 30px 40px;
    background: #1a1a1a;
    border: 2px solid #fb8500;
    outline: 4px solid #1a1a1a;
    outline-offset: -6px;
    color: #ffb703;
    border-radius: 0;
    font-style: italic;
    line-height: 1.9;
}
blockquote::before {
    content: "“";
    position: absolute;
    left: 15px;
    top: 5px;
    font-family: 'Libre Baskerville', serif;
    font-size: 60px;
    color: #2a2a2a;
    line-height: 1;
}
blockquote::after {
    display: none;
}
blockquote hr {
    display: none;
}
blockquote::selection {
    background: #ffb703;
    color: #121212;
}
textarea, input, select {
    width: 100%;
    max-width: 450px;
    padding: 12px 0;
    margin: 16px 0;
    background: transparent !important;
    color: #ffffff;
    border: none;
    border-bottom: 2px solid #2a2a2a;
    border-radius: 0;
}
textarea:focus, input:focus, select:focus {
    outline: none;
    background: transparent;
    border-color: #ffb703;
    box-shadow: none;
}
#footer {
    position: relative;
    margin-top: 100px;
    padding: 40px 0 40px; 
    text-align: center;
    background: transparent;
    border-top: 1px dashed rgba(251, 133, 0, 0.25); 
    color: #888888; 
    font-family: 'Cinzel Decorative', serif;
    font-size: 11px; 
    letter-spacing: 4px; 
    line-height: 2;
}
#footer::after {
    content: "☉";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #121212; 
    padding: 0 20px;
    color: rgba(255, 183, 3, 0.6); 
    font-size: 14px;
}
#footer a {
    color: #ffb703;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 183, 3, 0.4);
    transition: color 0.1s steps(2);
}
#footer a:hover {
    color: #fb8500;
    border-bottom-color: #fb8500;
}
a {
    color: #ffb703;
    text-decoration: none;
    position: relative;
    font-weight: 600;
}
a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px; 
    background-color: #fb8500;
    clip-path: polygon(0% 0%, 100% 20%, 98% 100%, 2% 80%);
}
a:hover {
    color: #fb8500;
}
a:hover::after {
    background-color: #ffb703;
}
b, strong {
    color: #ffffff;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0;
    border-bottom: 2px solid #fb8500;
}
i, em {
    color: #ffb703;
    font-style: italic;
    font-weight: 400;
}