* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100vw;
    background: black;
    overflow: hidden;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    position: relative;
}

strong {
    color: #38bdf8;
}

/* Matrix Background */
.matrix {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

canvas {
    display: block;
}

/* Console Box */
.console-container {
    position: relative;
    z-index: 2;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.console {
    background-color: #0d1117;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    font-family: "Courier New", Courier, monospace;
}

.console-header {
    display: flex;
    gap: 8px;
    padding: 10px;
    background-color: #161b22;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.console-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red {
    background-color: #ff5f56;
}
.dot.yellow {
    background-color: #ffbd2e;
}
.dot.green {
    background-color: #27c93f;
}

.console-body {
    padding: 20px;
    color: #f8fafc;
    text-align: center;
    font-size: 1.2rem;
}
