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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans", "Liberation Sans", "DejaVu Sans", Helvetica, Arial, sans-serif;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Profile Avatar */
.avatar {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Main Content Glass Container */
.content-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.gpg-section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.links {
    list-style: disc;
    padding-left: 1.2em;
}

.links li {
    margin-bottom: 6px;
}

.links a {
    color: #8ab4f8;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for mobile viewports */
@media (max-width: 480px) {
    .content-container {
        padding: 20px;
    }
    h1 {
        font-size: 1.8rem;
    }
    p {
        font-size: 1rem;
    }
}

/* Debug me: rocket launch demo for the browser step debugger */
.links + .gpg-section-title {
    margin-top: 25px;
}

.debug-me code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.95em;
    background: rgba(255, 255, 255, 0.12);
    padding: 1px 5px;
    border-radius: 4px;
}

.debug-me p {
    margin-bottom: 15px;
}

.launchpad {
    display: flex;
    align-items: center;
    gap: 16px;
}

#launch-btn {
    font: inherit;
    font-weight: 600;
    color: #1e1e2f;
    background: #8ab4f8;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    cursor: pointer;
}

#launch-btn:hover:not(:disabled) {
    background: #aecbfa;
}

#launch-btn:disabled {
    opacity: 0.5;
    cursor: default;
}

#rocket {
    display: inline-block;
    font-size: 2rem;
    transition: transform 2.5s ease-in, opacity 2.5s ease-in;
}

#rocket.launched {
    transform: translate(40px, -100vh) rotate(-10deg);
    opacity: 0;
}

#mission-log {
    list-style: none;
    margin-top: 15px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

#mission-log .ok {
    color: #81c995;
}

#mission-log .bad {
    color: #f28b82;
}
