html, body {
    height: 100%;
    margin: 0;
}

body {
    background:#171718;
    font-family: 'Lora', serif;
    font-weight: 400 !important;
    text-align: center;
    font-size: 14px;
    color: #d8d8d8;
    overflow-x: hidden;
}

#site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#page {
    flex: 1;
}

h1 {
    position: relative;
    display: inline-block;
    padding: 16px 36px;
    margin: 60px auto 30px;
    font-size: 23px;
    letter-spacing: 5px;
    color: #d9fff7;
    background: linear-gradient(135deg, #101010, #162624, #1f3b38);
    border: 1px solid rgba(127,255,212,0.15);
    border-radius: 12px 12px 6px 6px;
    box-shadow: 0 0 25px rgba(127,255,212,0.08);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    transition: 0.3s ease;
}

h1:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 35px rgba(127,255,212,0.15),
        0 0 18px rgba(255,60,60,0.12);
}

blockquote {
    font-size: 18px;
    font-style: italic;
    padding: 30px 40px;
    margin: 40px auto;
    width: 70%;
    max-width: 700px;
    color: #b7fff0;
    background: linear-gradient(135deg, #101010, #161616);
    border: 1px solid rgba(127,255,212,0.08);
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(127,255,212,0.05);
    position: relative;
    transition: 0.3s ease;
    text-align: center;
}

blockquote:hover {
    transform: scale(1.02);
    border-color: rgba(255,70,70,0.2);
}

blockquote::before,
blockquote::after {
    font-size: 60px;
    color: rgba(127,255,212,0.12);
    position: absolute;
}

blockquote::before {
    content: '“';
    top: -20px;
    left: 20px;
}

blockquote::after {
    content: '”';
    bottom: -20px;
    right: 20px;
}

.content {
    width: 60%;
    margin: -40px auto;
    padding: 0 20px;
    text-align: justify;
    color: #d0d0d0;
    line-height: 1.7;
}

#navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(127,255,212,0.08);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    z-index: 999;text-align:center;
}

#navigation a {
    display: inline-block;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 14px;
    padding: 12px 20px;
    border-radius: 999px;
    letter-spacing: 1.5px;
    text-decoration: none;
    background: linear-gradient(90deg, #ff9aa2, #8ec5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s ease;
}

#navigation a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff9aa2, #8ec5ff);
    box-shadow:
        0 0 8px rgba(255, 154, 162, 0.7),
        0 0 14px rgba(142, 197, 255, 0.7);
    transition: width 0.4s ease;
}

#navigation a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 154, 162, 0.12),
        rgba(142, 197, 255, 0.12)
    );
    opacity: 0;
    transition: 0.4s ease;
    z-index: -1;
}

#navigation a:hover::before {
    width: 80%;
}

#navigation a:hover::after {
    opacity: 1;
}

#navigation a:hover {
    transform: translateY(-2px);
    text-shadow:
        0 0 10px rgba(255, 154, 162, 0.8),
        0 0 16px rgba(142, 197, 255, 0.8);
}

.contentx {
    background:
        linear-gradient(145deg, #0d0d0d 0%, #161616 100%);
    padding: 40px;
    border-radius: 14px;
    font-size: 18px;
    color: #d6d6d6;
    text-align: justify;
    border: 1px solid rgba(127,255,212,0.08);
    box-shadow:
        0 0 40px rgba(0,0,0,0.6),
        0 0 20px rgba(127,255,212,0.04);
    margin-bottom: 40px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contentx:hover {
    border-color: rgba(255,70,70,0.15);
    box-shadow:
        0 0 45px rgba(127,255,212,0.08),
        0 0 18px rgba(255,70,70,0.08);
}

#header {
    background-image: url('images/head.jpg');background-color:#171718;
    background-repeat: no-repeat, repeat-x;
    background-position: center;
    height: 738px;
    width: 100%;
    margin-top: -5px;
}

.content a,
.content b,
.content i {
    text-decoration: none;
    background: linear-gradient(135deg, #7fffd4, #ff4d4d);
    -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.25);
}

#footer {
    background: linear-gradient(135deg, #090909, #121212);
    color: #bdbdbd;
    text-align: center;
    padding: 70px 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(127,255,212,0.08);
    box-shadow: inset 0 0 30px rgba(127,255,212,0.03);
    font-size: 18px;
    position: relative;
}

#footer a {
    color: #7fffd4;
    text-decoration: none;
    border-bottom: 1px dashed rgba(127,255,212,0.4);
    transition: 0.3s ease;
}

#footer a:hover {
    color: #ff5c5c;
    border-bottom: 1px solid #ff5c5c;
}

.footer-credit {
    margin-top: 10px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.contentx input,
.contentx textarea,
.contentx select {
    width: 40%;
    max-width: 350px;
    padding: 10px 14px;
    margin: 12px 0;
    font-size: 16px;
    color: #e2e2e2;
    background: #111;
    border: 1px solid rgba(127,255,212,0.12);
    border-radius: 12px;
    transition: 0.3s ease;
    caret-color: #7fffd4;
}

.contentx input:focus,
.contentx textarea:focus,
.contentx select:focus {
    outline: none;
    border-color: rgba(127,255,212,0.4);
    box-shadow: 0 0 15px rgba(127,255,212,0.12);
}

.dropdown-menu {
    background: #111;
    color: #fff;
}

.contentx button {
    background: linear-gradient(145deg, #151515, #222);
    border: 1px solid rgba(127,255,212,0.15);
    border-radius: 12px;
    padding: 8px 20px;
    font-size: 16px;
    color: #d8fff5;
    cursor: pointer;
    transition: 0.3s ease;
}

.contentx button:hover {
    background: linear-gradient(145deg, #1f3b38, #2a2a2a);
    border-color: rgba(255,70,70,0.35);
    color: #fff;
    box-shadow:
        0 0 15px rgba(127,255,212,0.12),
        0 0 10px rgba(255,70,70,0.12);
}

.contentx button:active {
    transform: translateY(1px);
}