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

body {
    background: radial-gradient(circle at center, #000000, #0a0a0a);
    color: #33ff33;
    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, #0a0a0a); }
    100% { background: radial-gradient(circle at center, #000000, #1a1a1a); }
}

.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 #33ff33, inset 0 0 10px #00ff00;
}

.guest-title {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 0 0 8px #33ff33;
    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: #66ff66;
    text-shadow: 0 0 5px #00ff00;
}

.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 #33ff33, 0 0 8px #00ff00 inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #33ff33, 0 0 10px #00ff00 inset;
}

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

.showcase-link {
    color: #33ff33;
    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 #33ff33;
}

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

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

.back-link a:hover {
    background-color: #0a0a0a;
    text-shadow: 0 0 7px #33ff33;
}

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

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

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

