@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: pulseBackground 10s infinite alternate;
    overflow-x: hidden;
}

@keyframes pulseBackground {
    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;
    position: relative;
    z-index: 1;
}

.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;
}

/* === Base Card Styling === */
.showcase-card {
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

/* === Parasire (Green) === */
.parasire-card {
    box-shadow: 0 0 15px #33ff33, 0 0 8px #00ff00 inset;
}

.parasire-card h2 {
    color: #33ff33;
    text-shadow: 0 0 6px #33ff33;
}

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

/* === Nikon (Yellow) === */
.nikon-card {
    box-shadow: 0 0 15px #ffff33, 0 0 8px #ffcc00 inset;
}

.nikon-card h2 {
    color: #ffff33;
    text-shadow: 0 0 6px #ffff33;
}

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

/* === Izzy (Red) === */
.izzy-card {
    box-shadow: 0 0 15px #ff3333, 0 0 8px #ff0000 inset;
}

.izzy-card h2 {
    color: #ff3333;
    text-shadow: 0 0 6px #ff3333;
}

.izzy-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ff3333, 0 0 10px #ff0000 inset;
}

/* === Group (Blue) === */
.group-card {
    box-shadow: 0 0 15px #66ccff, 0 0 8px #3399ff inset;
}

.group-card h2 {
    color: #66ccff;
    text-shadow: 0 0 6px #66ccff;
}

.group-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #66ccff, 0 0 10px #3399ff inset;
}

/* === Security Audits (Orange Hacker Glow) === */
.audits-card {
    box-shadow: 0 0 15px #ffa500, 0 0 8px #ff6600 inset;
}

.audits-card h2 {
    color: #ffa500;
    text-shadow: 0 0 6px #ff9900;
}

.audits-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ffa500, 0 0 10px #ff6600 inset;
}

/* === Common Headings + Links === */
.showcase-card h2 {
    margin-top: 0;
    font-size: 1.6em;
    transition: text-shadow 0.3s ease;
}

.showcase-link {
    color: inherit;
    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 currentColor;
}

.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 === */
.footer-terminal {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #33ff33;
    font-size: 0.9em;
    color: #00ff00;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    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;
}

