#header {
    background-image: url('images/head.jpg'), url('images/bg1.jpg');
    background-repeat: no-repeat, repeat-x;
    background-position: center;
    height: 684px;
    width: 100%;
    position: relative;
    z-index: 0;
    top: -40px;
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative&family=Libre+Baskerville&family=Special+Elite&display=swap');

body {
    background-image: url('images/bg.jpg');
    background-repeat: repeat;
    background-color: #05080f;
    margin: 0;
    padding: 0;
    font-family: 'Libre Baskerville', serif;
    color: #E6ECF4;
    overflow-x: hidden;
    padding-top: 120px;
}

#navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    background: linear-gradient(
        to right,
        rgba(10, 15, 30, 0.95),
        rgba(15, 25, 50, 0.95)
    );
    border-bottom: 1px solid rgba(120, 170, 255, 0.25);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    z-index: 1000;
}

#navigation a {
    position: relative;
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    letter-spacing: 1.5px;
    padding: 10px 18px;
    color: #cfe2ff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

#navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #ffd65a, #6fb2ff);
    border-radius: 6px;
    transform: translateX(-50%);
    transition: width 0.35s ease;
}

#navigation a:hover {
    color: #fff1a8;
    transform: translateY(-2px);
}

#navigation a:hover::after {
    width: 120%;
}

#navigation a.active {
    color: #ffe88a;
}

#layout-container {
    width: 100%;
    opacity: 0.7;
    display: flex;
    justify-content: center;
}

#content {
    width: 80%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 70px;
    margin-top: -90px;
}

.contentx {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 90px auto;
    padding: 48px 55px;
    border-radius: 80px 50px 70px 40px;
    font-size: 22px;
    line-height: 1.95;
    text-align: justify;
    color: #e4ecf6;
    background: linear-gradient(
        160deg,
        rgba(8, 24, 45, 0.98),
        rgba(4, 16, 34, 0.98)
    );
    box-shadow:
        inset 0 0 0 1px rgba(120, 170, 255, 0.08),
        0 22px 60px rgba(0, 0, 0, 0.75);
}

blockquote {
    margin: 110px auto;
    padding: 55px 70px;
    max-width: 680px;
    background: radial-gradient(
        circle at 55% 45%,
        rgba(40, 65, 120, 0.9),
        rgba(10, 15, 35, 0.95)
    );
    border-radius: 160px;
    font-size: 27px;
    color: #f0f5ff;
    text-align: center;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
}

h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(220, 235, 255, 0.85);
    margin: 20px auto 55px;
    padding: 8px 0;
    position: relative;
}

h1::after {
    content: "";
    display: block;
    width: 110px;
    height: 2px;
    margin: 16px auto 0;
    background: linear-gradient(
        to right,
        rgba(255, 220, 90, 0),
        rgba(255, 220, 90, 0.9),
        rgba(120, 180, 255, 0.9),
        rgba(120, 180, 255, 0)
    );
    border-radius: 4px;
}

h1:hover {
    letter-spacing: 0.44em;
    color: #fff3b0;
}

textarea,
input,
select {
    width: 40%;
    max-width: 650px;
    padding: 20px 26px;
    margin: 32px 0;
    background: linear-gradient(
        to right,
        rgba(25, 35, 70, 0.95),
        rgba(35, 50, 90, 0.85)
    );
    border-radius: 36px;
    border: none;
    font-size: 17px;
    color: #f2f6ff;
}

textarea:focus,
input:focus,
select:focus {
    box-shadow: 0 12px 30px rgba(120, 180, 255, 0.35);
    outline: none;
}

a {
    font-size: 25px;
    color: #9ec6ff;
    position: relative;
}

a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ffd65a, #6fb2ff);
    border-radius: 6px;
    transform: scaleX(0.75);
    transform-origin: left;
    transition: transform 0.25s ease;
}

a:hover::after {
    transform: scaleX(1);
}

i, em {
    color: #bcd4ff;
    background: linear-gradient(
        to bottom,
        rgba(40, 60, 110, 0.7),
        rgba(20, 30, 60, 0.7)
    );
}

b, strong {
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #fff2a8;
    padding: 6px 12px;
    border-radius: 18px;
    background: linear-gradient(
        to right,
        rgba(60, 90, 160, 0.9),
        rgba(30, 45, 90, 0.9)
    );
    text-shadow: 0 0 8px rgba(255, 220, 120, 0.4);
}
