/* Aegis Restore Pack - Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Monaco', monospace;
    background: linear-gradient(135deg, #0a2472 0%, #000000 100%);
    color: #ffffff;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(57, 255, 20, 0.3);
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.1);
}

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #39ff14;
}

h1 {
    font-size: 2.5rem;
    color: #39ff14;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.profile-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid #39ff14;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.profile-img svg {
    width: 80%;
    height: 80%;
}

.status {
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid #39ff14;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.endpoints {
    margin: 30px 0;
}

.endpoint {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #39ff14;
    padding: 15px;
    margin: 10px 0;
    border-radius: 0 10px 10px 0;
}

.code {
    font-family: 'Courier New', monospace;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
}

footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    padding-top: 20px;
}

a {
    color: #00ffc3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px #00ffc3;
}