html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

#title {
    font-family: 'Press Start 2P', cursive;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
    text-align: center;
    font-size: 2.5em;
    margin: 40px 0;
    line-height: 1.4;
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    60% {
        opacity: 0.8;
    }

    61%,
    100% {
        opacity: 1;
    }
}

.subtitle {
    font-family: 'Press Start 2P', cursive;
    color: #ff00ff;
    text-shadow: 0 0 5px #ff00ff;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.author {
    text-align: center;
    font-size: 1.1em;
    color: #ffff00;
    margin-bottom: 40px;
    text-shadow: 0 0 5px #ffff00;
}

#p5Container {
    display: none;
}

.description {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    line-height: 1.8;
    font-size: 1.1em;
}

.description h3 {
    color: #00ffff;
    font-family: 'Press Start 2P', cursive;
    font-size: 1em;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #00ffff;
}

.description a {
    color: #4a9eff;
    text-decoration: none;
    text-shadow: 0 0 3px #4a9eff;
}

.description a:hover {
    color: #ffff00;
    text-shadow: 0 0 8px #ffff00;
}

.games-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
}

.game-card {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid #ff00ff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.5);
    border-color: #00ffff;
}

.game-card h4 {
    font-family: 'Press Start 2P', cursive;
    color: #ff00ff;
    font-size: 1.2em;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #ff00ff;
}

.game-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 25px;
}

.play-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: #000000;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8em;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.play-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

.footer {
    text-align: center;
    margin: 60px 0 40px 0;
    color: #cccccc;
    font-size: 0.9em;
}

.footer a {
    color: #00ffff;
    text-decoration: none;
}

.footer a:hover {
    text-shadow: 0 0 5px #00ffff;
}

.conversation {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 0;
    margin: 20px 0;
    border: 1px solid #333;
}

.user-message {
    background-color: #2d2d2d;
    color: #e6e6e6;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    position: relative;
}

.user-message::before {
    content: "👤 User";
    display: block;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.copilot-message {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 15px 20px;
    position: relative;
}

.copilot-message::before {
    content: "🤖 GitHub Copilot";
    display: block;
    font-weight: bold;
    color: #00d4aa;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.tool-call {
    background-color: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 12px;
    margin: 10px 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85em;
}

.tool-call::before {
    content: "🔧 Tool: ";
    color: #ffa500;
    font-weight: bold;
}

.code-reference {
    background-color: #0d47a1;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85em;
}

.improvement-list {
    background-color: #0a3d0a;
    border-left: 4px solid #4caf50;
    padding: 12px;
    margin: 10px 0;
}

.improvement-list::before {
    content: "✅ Key Features:";
    display: block;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 8px;
}

.improvement-list li {
    margin-left: 15px;
}

@media (max-width: 768px) {
    .games-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #title {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }
}