@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body {
    background: radial-gradient(circle at center, #000000, #1a1a00);
    color: #1ea5bb;
    font-family: 'Share Tech Mono', monospace;
    margin: 0;
    padding: 0;
    animation: pulseBG 10s infinite alternate;
}

@keyframes pulseBG {
    0% { background: radial-gradient(circle at center, #000000, #1ea5bb); }
    100% { background: radial-gradient(circle at center, #000000, #1ea5bb); }
}

.guest-container {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 25px #1ea5bb, inset 0 0 10px #0fbbca;
}

.guest-title {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #;
    position: relative;
}

.guest-title::after {
    content: "?!@";
    animation: blinkCursor 1s step-start infinite;
    margin-left: 5px;
}

@keyframes blinkCursor {
    50% { opacity: 0; }
}

.guest-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffff66;
    text-shadow: 0 0 5px #ffcc00;
}

.showcase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.showcase-card {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    box-shadow: 0 0 15px #1ea5bb, 0 0 8px #ffcc00 inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #1ea5bb, 0 0 10px #ffcc00 inset;
}

.showcase-card h2 {
    margin-top: 0;
    font-size: 1.6em;
    color: #1ea5bb;
    text-shadow: 0 0 5px #1ea5bb;
}

.showcase-link {
    color: #ffff33;
    text-decoration: none;
    font-size: 1.1em;
    display: inline-block;
    margin-top: 10px;
    transition: text-shadow 0.2s ease;
}

.showcase-link:hover {
    text-shadow: 0 0 7px #ffff33;
}

.back-link {
    margin-top: 40px;
}

.back-link a {
    display: inline-block;
    color: #ffff33;
    text-decoration: none;
    font-size: 1em;
    border: 1px solid #ffff33;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, text-shadow 0.3s ease;
}

.back-link a:hover {
    background-color: #1a1a00;
    text-shadow: 0 0 7px #ffff33;
}

.footer-terminal {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ffff33;
    font-size: 0.9em;
    color: #ffff66;
    text-align: center;
    text-shadow: 0 0 3px #ffff33;
}

.footer-terminal .user {
    color: #ffff99;
    text-shadow: 0 0 5px #ffff99;
}

.footer-terminal .timestamp {
    color: #ffff33;
    font-style: italic;
}

