@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400&display=swap');

:root {
    --neon-cyan: #00f3ff;
    --neon-pink: #ff00ff;
    --neon-purple: #bc13fe;
    --neon-green: #0aff00;
    --bg-dark: #050505;
    --bg-panel: #111111;
    --text-main: #e0e0e0;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Cyberpunk Grid Background Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    border-bottom: 2px solid var(--neon-pink);
    padding-bottom: 10px;
    display: inline-block;
}

h2 {
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
    margin-top: 40px;
}

h3 {
    color: var(--neon-green);
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(17, 17, 17, 0.9);
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
    border-radius: 5px;
    position: relative;
}

/* Decorative corner pieces */
.container::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--neon-cyan);
    border-left: 2px solid var(--neon-cyan);
}

.container::before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--neon-cyan);
    border-right: 2px solid var(--neon-cyan);
}

p, li {
    line-height: 1.6;
    font-size: 1.1em;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li::before {
    content: ">";
    color: var(--neon-green);
    margin-right: 10px;
    font-weight: bold;
}

code {
    background-color: #222;
    color: var(--neon-green);
    font-family: 'Courier New', monospace;
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid #333;
}

.code-block {
    background-color: #000;
    border-left: 3px solid var(--neon-green);
    color: var(--neon-green);
    padding: 15px;
    font-family: 'Courier New', monospace;
    margin: 20px 0;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative;
}

.code-block::before {
    content: "PYTHON_SHELL_V3.0";
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 0.8em;
    background-color: var(--bg-dark);
    padding: 0 5px;
    color: #555;
    font-family: 'Orbitron', sans-serif;
}

.glitch-effect {
    position: relative;
}
