body {
    background: #000000;
    color: #33CCFF;
    font-family: "Oxanium", monospace;
}

html, body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

.header {
    position: relative;
    width: 100%;
    background: #000026; 
    padding: 20px 0;
    font-size: 30px;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 0 15px #33CCFF;
}

.header-icon-l {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.header-icon-l img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.header-icon-r {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.header-icon-r img {
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.header-line {
    position: relative;
    height: 1px;
    margin: 0px auto 30px auto;
    background: #0066FF;
    box-shadow:
        0 0 6px #0066FF,
        0 0 12px #0066FF,
        0 0 24px #0066FF;
}

.footer-line {
    width: 100%;
    height: 4px;
    background: #0066FF;
    margin-top: 30px;
    box-shadow:
        0 0 6px #0066FF,
        0 0 12px #0066FF,
        0 0 24px #0066FF;
}

.footer {
    width: 100%;
    background: #000026;
    padding: 16px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    box-sizing: border-box;
    text-shadow: 0 0 6px #33CCFF;
}

.footer a {
    color: #33CCFF;
    text-decoration: none;
    margin: 0 12px;
}

.footer a:hover {
    text-decoration: underline;
    text-shadow: 0 0 6px #33CCFF;
}
