.code-page {
    min-height: 100vh;
    background: #0b0b0b;
    color: #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.code-page-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.code-page h1 {
    font-size: 3rem;
    letter-spacing: 8px;
    margin-bottom: 20px;
    color: #39ff14;
}

.code-page p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.code-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 14px;
    padding: 25px;
    margin: 0 auto 35px;
    max-width: 700px;
    text-align: left;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.code-box code {
    display: block;
    white-space: pre-wrap;
    word-break: break-word;
    color: #39ff14;
    font-family: 'Courier New', monospace;
}

.code-back-button {
    background: transparent;
    color: #39ff14;
    border: 1px solid #39ff14;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.25s, color 0.25s;
}

.code-back-button:hover {
    background: #39ff14;
    color: #000;
}

.code-selection {
    min-height: 100vh;
    background: #0b0b0b;
    color: #e5e5e5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.code-selection h1 {
    font-size: 3rem;
    letter-spacing: 8px;
    margin-bottom: 40px;
    color: #39ff14;
}

.language-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    border: 1px solid #39ff14;
    border-radius: 10px;
    transition: background 0.3s;
    margin: 10px;
}

.language-option:hover {
    background: #39ff14;
    color: #000;
}

.language-option img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.language-option p {
    font-size: 1.2rem;
    margin: 0;
}
