* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background: #000;
    color: #fff;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-size: 0.9rem;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: repeating-linear-gradient( 0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 1px, transparent 2px );
    pointer-events: none;
    z-index: 9999;
}
@keyframes flicker {
    0% {
        opacity: 0.97;
   }
    5% {
        opacity: 0.94;
   }
    10% {
        opacity: 0.98;
   }
    15% {
        opacity: 0.95;
   }
    100% {
        opacity: 0.97;
   }
}
.terminal {
    width: 95%;
    max-width: 1200px;
    margin: 1rem auto;
    background: rgba(0,0,0,0.9);
    border: 2px solid #fff;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(255,255,255,0.3), inset 0 0 15px rgba(255,255,255,0.2);
    position: relative;
    animation: flicker 0.1s infinite;
}
.terminal::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient( 0deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 2px );
    pointer-events: none;
}
.header-image {
    width: 40vw;
    margin-left: auto;
    margin-right: auto;
    max-height: 300px;
    max-width: 700px;
    min-width: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}
.header-image-bottom {
    position: fixed;
    bottom: 20px;
    right: -80px;
    width: 300px;
    z-index: -1;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dotted #fff;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.logo {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.1em;
    text-shadow: 0 0 5px rgba(255,255,255,0.7);
}
.status-bar {
    background: #aaa;
    color: #000;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
}
.tagline {
    text-align: center;
    color: #aaa;
    font-style: italic;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}
.nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s;
}
.nav a:hover {
    color: #aaa;
    text-decoration: underline;
}
.content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1rem;
}
.main-content {
    border: 1px solid #aaa;
    padding: 1rem;
    background: rgba(0,0,0,0.7);
}
.sidebar {
    border: 1px solid #aaa;
    padding: 1rem;
    background: rgba(0,0,0,0.7);
}
.section {
    margin-bottom: 1rem;
}
.section-title {
    color: #fff;
    border-bottom: 1px dotted #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.log-entry {
    margin-bottom: 0.5rem;
    border-left: 2px solid #aaa;
    padding-left: 0.5rem;
}
.log-meta {
    color: #aaa;
    font-size: 0.8rem;
}
.link {
    display: block;
    color: #aaa;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: all 0.3s;
}
.link:hover {
    color: #fff;
    transform: translateX(5px);
}
.terminal-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
    width: 100%;
    font-family: 'Courier New', monospace;
    margin-top: 1rem;
}
.code-block {
    background: rgba(50,50,50,0.3);
    border: 1px solid #aaa;
    padding: 0.5rem;
    margin: 0.5rem 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.8rem;
    height: 200px;
    overflow: hidden;
    position: relative;
}
@media (max-width: 800px) {
    .content {
        grid-template-columns: 1fr;
   }
}
.code-block {
    background: rgba(50, 50, 50, 0.3);
    border: 1px solid #aaa;
    padding: 0.5rem;
    margin: 0.5rem 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.8rem;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.code-scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: scrollCode 60s linear infinite;
}
@keyframes scrollCode {
    0% {
        transform: translateY(0%);
   }
    100% {
        transform: translateY(-100%);
   }
}
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}
.marquee-container {
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #fff;
    height: 60px;
    width: 100%;
    max-width: 800px;
    margin: 1rem auto;
}
.marquee {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    animation: scrollLeft 30s linear infinite;
    will-change: transform;
}
.marquee a {
    flex: 0 0 auto;
}
.marquee img {
    height: 50px;
    object-fit: contain;
    pointer-events: auto;
}
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
   }
    100% {
        transform: translateX(-100%);
   }
}
.divider {
    border-top: 1px dotted #fff;
    margin: 1rem 0;
}
.footer {
    text-align: center;
    margin-top: auto;
    padding: 1rem;
    color: #fff;
    font-size: 0.8rem;
}
.buttons {
    display: flex;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.buttons img {
    width: 88px;
    height: 31px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.3s;
}
iframe {
    border: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.noscript-banner {
    background: #ff0000;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    border-bottom: 2px solid #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    animation: flickerWarning 0.15s infinite alternate;
}
.noscript-banner a {
    color: #aaa;
    text-decoration: underline;
}
@keyframes flickerWarning {
    0% { opacity: 1; }
    100% { opacity: 0.8; }
}
.code-block2 {
    background: rgba(50, 50, 50, 0.3);
    border: 1px solid #aaa;
    padding: 0.5rem;
    margin: 0.5rem 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 0.8rem;
    line-height: 0.9rem;
    overflow: hidden;
    position: relative;
}
.code-noscroll {
    position: relative;
    width: 100%;
}
a {
    color: #aaa;
    text-decoration: underline;
}
/* transmit.html */
.guidelines {
    margin: 1.5rem 0;
}

.guideline-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.guideline-number {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: #aaa;
    margin-right: 1rem;
    min-width: 2rem;
}

.guideline-content h3 {
    margin: 0 0 0.5rem 0;
    color: #fff;
}