@font-face {
    font-family: 'Terminal';
    src: local('Courier New'), monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #ff8a09;
    font-family: 'Terminal', monospace;
    padding: 20px;
    overflow-x: hidden;
    line-height: 1.6;
}

.terminal {
    max-width: 900px;
    margin: 0 auto;
}

.line {
    margin-bottom: 12px;
    opacity: 0;
    animation: type 0.4s forwards;
}

@keyframes type {
    to { opacity: 1; }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }
.delay-7 { animation-delay: 1.4s; }
.delay-8 { animation-delay: 1.6s; }
.delay-9 { animation-delay: 1.8s; }
.delay-10 { animation-delay: 2.0s; }
.delay-11 { animation-delay: 2.2s; }
.delay-12 { animation-delay: 2.4s; }
.delay-13 { animation-delay: 2.6s; }
.delay-14 { animation-delay: 2.8s; }
.delay-15 { animation-delay: 3.0s; }
.delay-16 { animation-delay: 3.2s; }
.delay-17 { animation-delay: 3.4s; }
.delay-18 { animation-delay: 3.6s; }
.delay-19 { animation-delay: 3.8s; }
.delay-20 { animation-delay: 4.0s; }
.delay-21 { animation-delay: 4.2s; }
.delay-22 { animation-delay: 4.4s; }
.delay-23 { animation-delay: 4.6s; }
.delay-24 { animation-delay: 4.8s; }
.delay-25 { animation-delay: 5.0s; }
.delay-26 { animation-delay: 5.2s; }
.delay-27 { animation-delay: 5.4s; }
.delay-28 { animation-delay: 5.6s; }
.delay-29 { animation-delay: 5.8s; }
.delay-30 { animation-delay: 6.0s; }
.delay-31 { animation-delay: 6.2s; }
.delay-32 { animation-delay: 6.4s; }
.delay-33 { animation-delay: 6.6s; }
.delay-34 { animation-delay: 6.8s; }
.delay-35 { animation-delay: 7.0s; }
.delay-36 { animation-delay: 7.2s; }
.delay-37 { animation-delay: 7.4s; }
.delay-38 { animation-delay: 7.6s; }
.delay-39 { animation-delay: 7.8s; }
.delay-40 { animation-delay: 8.0s; }

.logo-line {
    text-align: center;
    margin: 30px 0;
    opacity: 0;
    animation: type 0.5s 0.3s forwards;
}

.logo {
    width: 200px;
    height: 73px;
}

.online {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.secure {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

h1 {
    font-size: 1.8em;
    margin: 25px 0 15px 0;
    color: #ff8a09;
    border-bottom: 1px solid #ff8a09;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.4em;
    margin: 20px 0 15px 0;
    color: #ff8a09;
    border-left: 3px solid #ff8a09;
    padding-left: 10px;
}

.link a {
    color: #ff8a09;
    text-decoration: none;
    word-break: break-all;
    border-bottom: 1px dashed #ff8a09;
    transition: 0.3s;
    display: inline-block;
    margin: 5px 0;
    padding: 2px 5px;
}

.link a:hover {
    color: #000000;
    background: #ff8a09;
}

.links-container {
    margin: 15px 0;
    padding: 10px;
    border: 1px solid #333;
    background: #0a0a0a;
}

.blink {
    animation: blink 1s infinite;
    font-weight: bold;
    margin-top: 10px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

section {
    margin: 25px 0;
    padding: 15px 0;
    border-bottom: 1px solid #1a1a1a;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ff8a09;
}

.header {
    margin-bottom: 20px;
}

.main-content {
    margin: 20px 0;
}