@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.app-container {
    background: #ffffff;
    width: 100%;
    max-width: 800px;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    padding: 32px;
}

/* Pikirlew.uz usılındaǵı Monkeytype oqıw paneli */
.monkeytype-box {
    background: #f1f5f9;
    border: 2px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.current-word-highlight {
    font-family: 'Comfortaa', cursive;
    font-size: 24px;
    font-weight: 700;
    color: #4f46e5;
    background: #eef2ff;
    padding: 6px 16px;
    border-radius: 12px;
    border: 1px solid #c7d2fe;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1);
}

/* Knopkalar hám basqarıw elementleri */
.btn-primary {
    background-color: #4f46e5;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* Jasırın bólmiler */
.hidden {
    display: none !important;
}