:root {
    --bg-color: #050505;
    --container-bg: #111111;
    --neon-green: #00ff41;
    --neon-green-dim: rgba(0, 255, 65, 0.2);
    --text-color: #e0e0e0;
    --border-color: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    text-align: center;
    font-weight: bold;
}

.container {
    background-color: var(--container-bg);
    width: 100%;
    max-width: 600px;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 0 10px var(--neon-green-dim);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

header {
    text-align: center;
}

.neon-text {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green);
    margin-bottom: 15px;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.warning-box {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid red;
    color: #ff4d4d;
    padding: 10px;
    font-size: 0.85rem;
    border-radius: 5px;
    line-height: 1.4;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

label {
    margin-bottom: 5px;
    color: var(--neon-green);
    font-size: 0.9rem;
    text-transform: uppercase;
}

input[type="text"], select {
    background-color: #000;
    border: 1px solid var(--border-color);
    color: var(--neon-green);
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

input[type="text"]:focus, select:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green-dim);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.badge {
    position: absolute;
    right: 10px;
    background-color: #222;
    color: #aaa;
    padding: 4px 8px;
    font-size: 0.75rem;
    border-radius: 4px;
    border: 1px solid #444;
}

.cvv-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.85rem;
    cursor: pointer;
}

.neon-button {
    background-color: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.neon-button:hover {
    background-color: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px var(--neon-green), inset 0 0 10px rgba(0,0,0,0.5);
}

.neon-button:active {
    transform: scale(0.98);
}

.results-section {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-header h3 {
    font-size: 1rem;
    color: #aaa;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.small-btn {
    background-color: #222;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.small-btn:hover {
    background-color: var(--neon-green);
    color: #000;
}

textarea {
    width: 100%;
    height: 200px;
    background-color: #000;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 10px;
    font-family: inherit;
    resize: none;
    border-radius: 5px;
    line-height: 1.5;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000; 
}
::-webkit-scrollbar-thumb {
    background: var(--border-color); 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green); 
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .neon-text {
        font-size: 1.4rem;
    }
}