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

body {
    background-color: #000000;
    color: #ff8a09;
    font-family: 'Courier New', monospace;
    line-height: 1.4;
    overflow-x: hidden;
}

.terminal {
    padding: 20px;
    min-height: 100vh;
}

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

.line {
    animation: type 0.1s ease-in;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 2px;
}

@keyframes type {
    from { width: 0; }
    to { width: 100%; }
}

.header {
    margin: 30px 0;
    text-align: center;
    border-bottom: 1px solid #ff8a09;
    padding-bottom: 20px;
}

.logo {
    width: 200px;
    height: 73px;
    margin-bottom: 10px;
}

.tagline {
    font-size: 14px;
    opacity: 0.8;
}

.section {
    margin: 25px 0;
    padding: 15px;
    border-left: 2px solid #ff8a09;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.title {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffaa33;
    font-size: 15px;
}

.text {
    margin: 8px 0;
    line-height: 1.6;
    font-size: 14px;
    text-align: justify;
}

.warning {
    color: #ff4444;
    font-weight: bold;
    line-height: 1.8;
}

.links {
    margin: 10px 0;
}

.link {
    margin: 5px 0;
    padding: 8px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    word-break: break-all;
    font-size: 12px;
}

.link:hover {
    background-color: #2a2a2a;
    border-color: #ff8a09;
}

.content {
    animation: contentAppear 1s ease-in;
}

@keyframes contentAppear {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .terminal {
        padding: 10px;
    }
    
    .section {
        margin: 20px 0;
        padding: 10px;
    }
    
    .line {
        white-space: normal;
    }
    
    .text {
        font-size: 13px;
    }
    
    .title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .terminal {
        padding: 5px;
    }
    
    .text {
        font-size: 12px;
        text-align: left;
    }
    
    .title {
        font-size: 13px;
    }
}