html,
body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #0E0E0E;
    font-family: 'Lora', serif;
    font-size: 14px;
    color: #d9ecff;
    text-align: center;
    overflow-x: hidden;
}

@keyframes glow {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.08) translateY(-12px);
    }
}

#site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#page {
    flex: 1;
}

h1 {
    position: relative;
    display: inline-block;
    margin: 70px auto 35px;
    padding: 18px 42px;
    font-size: 24px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #e8f7ff;
    background: linear-gradient(145deg, rgba(16, 35, 56, 0.95), rgba(32, 72, 116, 0.92));
    border: 1px solid rgba(130, 200, 255, 0.22);
    border-radius: 22px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 0 30px rgba(80, 170, 255, 0.12),
        inset 0 0 18px rgba(170, 220, 255, 0.06);
    transition: 0.4s ease;
}

h1:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 0 40px rgba(90, 180, 255, 0.22),
        0 0 90px rgba(120, 210, 255, 0.08);
}

blockquote {
    position: relative;
    width: 72%;
    max-width: 760px;
    margin: 45px auto;
    padding: 40px 50px;
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    color: #dff4ff;
    background: linear-gradient(160deg, rgba(15, 28, 45, 0.95), rgba(25, 48, 72, 0.88));
    border: 1px solid rgba(140, 205, 255, 0.14);
    border-radius: 28px;
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 45px rgba(60, 130, 255, 0.08),
        inset 0 0 30px rgba(255, 255, 255, 0.02);
    transition: 0.4s ease;
}

blockquote:hover {
    transform: scale(1.02);
    border-color: rgba(170, 225, 255, 0.35);
    box-shadow: 0 0 55px rgba(100, 180, 255, 0.16);
}

blockquote::before,
blockquote::after {
    position: absolute;
    font-size: 70px;
    color: rgba(180, 230, 255, 0.12);
}

blockquote::before {
    content: '❝';
    top: -18px;
    left: 18px;
}

blockquote::after {
    content: '❞';
    bottom: -30px;
    right: 18px;
}

.content {
    width: 60%;
    margin: -100px auto;
    padding: 0 20px;
    text-align: justify;
    color: #d2e8ff;
    line-height: 1.8;
}

#navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background: rgba(8, 16, 28, 0.82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(140, 205, 255, 0.08);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
    z-index: 999;
    text-align: center;
}

#navigation a {
    position: relative;
    display: inline-block;
    margin: 0 12px;
    padding: 12px 24px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #dff4ff;
    text-decoration: none;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(45, 90, 140, 0.18), rgba(120, 200, 255, 0.06));
    border: 1px solid rgba(150, 215, 255, 0.08);
    overflow: hidden;
    transition: 0.35s ease;
}

#navigation a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-120%);
    transition: 0.7s ease;
}

#navigation a:hover::before {
    transform: translateX(120%);
}

#navigation a:hover {
    transform: translateY(-3px);
    border-color: rgba(180, 230, 255, 0.25);
    box-shadow: 0 0 22px rgba(100, 180, 255, 0.14);
    background: linear-gradient(145deg, rgba(70, 130, 200, 0.28), rgba(150, 220, 255, 0.12));
}

.contentx {
    position: relative;
    overflow: hidden;
    margin-bottom: 45px;
    padding: 45px;
    font-size: 18px;
    color: #dcefff;
    text-align: justify;
    background: linear-gradient(145deg, rgba(10, 22, 38, 0.95), rgba(20, 42, 68, 0.88));
    border: 1px solid rgba(140, 205, 255, 0.10);
    border-radius: 24px;
    box-shadow:
        0 0 50px rgba(0, 0, 0, 0.45),
        inset 0 0 24px rgba(255, 255, 255, 0.02);
    transition: 0.4s ease;
}

.contentx::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(180, 230, 255, 0.05), transparent);
    transform: translateX(-120%);
    transition: 0.8s ease;
}

.contentx:hover::before {
    transform: translateX(120%);
}

.contentx:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 225, 255, 0.22);
    box-shadow: 0 0 60px rgba(90, 180, 255, 0.12);
}

#header {
    position: relative;
    width: 100%;
    height: 690px;
    margin-top: 20px;
    background: url('images/head.jpg') center no-repeat;
    background-color: #0E0E0E;
}

.content a,
.content b,
.content i {
    text-decoration: none;
    background: linear-gradient(135deg, #9ed8ff, #d9f4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s ease;
}

.content a:hover,
.content b:hover,
.content i:hover {
    filter: brightness(1.3);
}

#footer {
    position: relative;
    overflow: hidden;
    margin-top: 120px;
    padding: 90px 30px 70px;
    text-align: center;
    color: #d9eeff;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 1px;
}

#footer p {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 10px auto;
    font-size: 17px;
    line-height: 1.9;
    letter-spacing: 0.4px;
    color: #cfe7ff;
}

#footer a {
    position: relative;
    padding-bottom: 4px;
    color: #bfe4ff;
    text-decoration: none;
    transition: 0.35s ease;
}

#footer a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, #8fd3ff, #ffffff);
    transition: 0.35s ease;
}

#footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(180, 225, 255, 0.4);
}

#footer a:hover::after {
    width: 100%;
}

.footer-credit {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    font-size: 13px;
    font-style: italic;
    letter-spacing: 1px;
    color: rgba(210, 235, 255, 0.45);
}

.contentx input,
.contentx textarea,
.contentx select {
    width: 40%;
    max-width: 350px;
    margin: 12px 0;
    padding: 12px 16px;
    font-size: 16px;
    color: #eaf6ff;
    background: rgba(15, 28, 45, 0.85);
    border: 1px solid rgba(140, 205, 255, 0.12);
    border-radius: 14px;
    caret-color: #9ed8ff;
    transition: 0.3s ease;
}

.contentx input:focus,
.contentx textarea:focus,
.contentx select:focus {
    outline: none;
    border-color: rgba(170, 225, 255, 0.4);
    box-shadow: 0 0 18px rgba(120, 190, 255, 0.14);
}

.dropdown-menu {
    background: #102033;
    color: #fff;
}

.contentx button {
    padding: 10px 24px;
    font-size: 16px;
    color: #eaf6ff;
    cursor: pointer;
    border: 1px solid rgba(150, 215, 255, 0.14);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(35, 72, 112, 0.9), rgba(60, 125, 185, 0.9));
    box-shadow: 0 0 20px rgba(80, 160, 255, 0.08);
    transition: 0.35s ease;
}

.contentx button:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, rgba(60, 125, 185, 1), rgba(120, 200, 255, 0.95));
    box-shadow: 0 0 30px rgba(120, 200, 255, 0.18);
}

.contentx button:active {
    transform: scale(0.98);
}