html,body {
    height: 100%;
    margin: 0;
    background: #181818; 
    font-family: 'Libre Baskerville', serif;
    color: #C5C9D0; 
    -webkit-font-smoothing: antialiased;
}
.main-container {
    margin-top: -67px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 60px; 
    opacity: 0.75;
    padding: 60px 40px;
    background-color: #181B20;
    border-radius: 12px;
    border: 1px solid #282C34; 
}
#navigation a {
    position: relative;
    padding: 12px 0;
    background: none;
    border: none;
    color: #9CA3AF;
    font-family: 'Cinzel Decorative', serif;
    font-size: 21px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: left; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}
#navigation a::before {
    content: "◇";
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    font-size: 10px;
    color: #93C5FD;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF 0%, #60A5FA 50%, #3B82F6 100%);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.6);
}
#navigation a:hover {
    color: #FFFFFF;
    padding-left: 12px;
    letter-spacing: 4px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 16px rgba(96, 165, 250, 0.4);
}

#navigation a:hover::before {
    opacity: 1;
    left: -2px;
    transform: translateY(-50%) scale(1);
}

#navigation a:hover::after {
    transform: scaleX(1);
}
#navigation a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
#navigation {
    width: 350px;
    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: 1px;
    background: linear-gradient(to bottom, transparent, #282C34 15%, #282C34 85%, transparent);
}
#navigation::after {
    display: none;
}
#content {
    flex: 1;
}
.contentx {
    position: relative;
    padding: 0;
    text-align: justify;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #C5C9D0;
    line-height: 2;
    letter-spacing: .2px;
    box-shadow: none;
}
#header {
    background-image: url(images/head.jpg);
    background-repeat: no-repeat;
    background-position: center;
    height: 641px;    background-color: #181818; 
    width: 100%;
    position: relative;
}
h1 {
    position: relative;
    display: block;
    margin-bottom: 50px;
    padding: 20px 0 24px 0;
    font-family: 'Cinzel Decorative', serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FFFFFF 30%, #93C5FD 80%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.25));
    border: none;
    border-bottom: 1px solid rgba(147, 197, 253, 0.15);
}

h1::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, #FFFFFF, #60A5FA, transparent);
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

h1::before {
    content: "◈";
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 11px;
    color: #93C5FD;
    letter-spacing: 0;
    opacity: 0.8;
}

h1::selection {
    background: #3B82F6;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
}
blockquote {
    position: relative;
    margin: 50px 0;
    padding: 30px 40px;
    background: #13151A;
    border: 1px solid #282C34;
    outline: 3px solid #13151A;
    outline-offset: -4px;
    color: #A0A5B1;
    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: #282C34;
    line-height: 1;
}
blockquote::after {
    display: none;
}
blockquote hr {
    display: none;
}
blockquote::selection {
    background: #C5C9D0;
    color: #0F1115;
}
textarea, input, select {
    width: 100%;
    max-width: 450px;
    padding: 12px 16px;
    margin: 16px 0;
    background: #13151A !important;
    color: #C5C9D0;
    font-family: 'Libre Baskerville', serif;
    font-size: 14px;
    border: 1px solid #282C34;
    border-radius: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

textarea:focus, input:focus, select:focus {
    outline: none;
    border-color: #60A5FA;
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.4);
}
button, 
input[type="submit"], 
input[type="button"], 
input[type="reset"],
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    margin: 16px 8px 16px 0;
    font-family: 'Cinzel Decorative', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F8FAFC;
    background: #1E293B;
    border: 1px solid #475569;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

button[type="submit"],
.btn-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, #1D4ED8 0%, #1E293B 100%);
    border: 1px solid #60A5FA;
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.4);
}

button[type="submit"]::before,
.btn-primary::before {
    content: "◈";
    font-size: 11px;
    margin-right: 10px;
    color: #93C5FD;
    transition: transform 0.3s ease, color 0.3s ease;
}

button[type="submit"]:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-color: #93C5FD;
    color: #FFFFFF;
    box-shadow: 0 0 24px rgba(96, 165, 250, 0.7);
    transform: translateY(-2px);
}

button[type="submit"]:hover::before,
.btn-primary:hover::before {
    transform: rotate(45deg) scale(1.25);
    color: #FFFFFF;
}

button[type="submit"]:active,
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.4);
}

.btn-secondary,
input[type="reset"] {
    color: #CBD5E1;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border: 1px solid #334155;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover,
input[type="reset"]:hover {
    color: #FFFFFF;
    background: #334155;
    border-color: #60A5FA;
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary:active,
input[type="reset"]:active {
    transform: translateY(0);
}
select option {
    background-color: #13151A;
    color: #C5C9D0;
}
#footer {
    position: relative;
    margin-top: 100px;
    padding: 80px 0 60px;
    text-align: center;
    background: transparent;
    border-top: 1px solid #282C34;
    color: #6B7280;
    font-family: 'Cinzel Decorative', serif;
    font-size: 13px;
    letter-spacing: 3px;
    line-height: 2;
}
#footer::after {
    content: "☉";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #0F1115;
    padding: 0 15px;
    color: #4B5563;
    font-size: 16px;
}
#footer a {
    color: #FF4D4D;
    text-decoration: none;
    border-bottom: 1px dotted #FF4D4D;
    transition: color .3s;
}
#footer a:hover {
    color: #E63946;
    border-bottom-color: #E63946;
}
a {
    color: #A0A5B1;
    text-decoration: none;
    position: relative;
    transition: color .3s;
    font-weight: 600;
}
a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #282C34;
    transition: background-color .3s;
}
a:hover {
    color: #FF4D4D;
}
a:hover::after {
    background-color: #FF4D4D;
    border-bottom-color: transparent;
}
b, strong {
    color: #F0F2F5;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(255, 77, 77, 0.3);
}
i, em {
    color: #A0A5B1;
    font-style: italic;
    font-weight: 400;
}