:root {
    --bg-color: #0a0a0f;
    --text-color: #e0e0e0;
    --accent-color: #00f3ff;
    --secondary-accent: #bc13fe;
    --panel-bg: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0a0a0f 100%);
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 3rem;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 0.9rem;
    opacity: 0.7;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.input-section {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

input {
    flex: 1;
    background: var(--panel-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

button {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-accent));
    border: none;
    padding: 0 2rem;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.output-section {
    background: var(--panel-bg);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.status-panel {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 0.2rem;
}

.value {
    font-family: 'Courier New', monospace;
    color: var(--accent-color);
    font-weight: bold;
}

.response-box {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder {
    opacity: 0.3;
    font-style: italic;
}

footer {
    margin-top: 3rem;
    font-size: 0.7rem;
    opacity: 0.3;
}

.pulsing {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}
