/* --- Base Styles (Mobile First Approach) --- */
/* Estas serán las reglas para pantallas pequeñas (móviles) */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    /* align-items: center; */ /* Removido para permitir desplazamiento vertical */
    min-height: 100vh;
    background: linear-gradient(to right, #363636, #2e2e2e);
    margin: 0;
    color: #e0e0e0;
    /* overflow: hidden; */ /* Removido para permitir desplazamiento */
    overflow-y: auto; /* Permite desplazamiento vertical si es necesario */
    padding: 20px 10px; /* Aumentar padding vertical para dejar espacio */
    box-sizing: border-box; /* Asegurar que el padding no cause desbordamiento */
}

.calculator-container {
    background-color: #282828;
    padding: 20px; /* Reducir padding en pantallas pequeñas */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); /* Sombra ligeramente más suave en móviles */
    width: 100%; /* Ocupa el 100% del ancho disponible */
    max-width: 360px; /* Pero no excede un ancho fijo para pantallas grandes */
    position: relative;
    /* overflow: hidden; */ /* Removido de aquí también, se maneja globalmente en body */
    border: 1px solid #3a3a3a;
    animation: fadeIn 0.8s ease-out;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaciado entre secciones */
    margin: auto; /* Centrar horizontalmente cuando no hay flexbox de altura completa */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    color: #ff8c00;
    margin-bottom: 5px;
    font-size: 1.6em; /* Reducir tamaño de fuente en móviles */
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* --- Rate Configuration Section --- */
.rate-config {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3a3a3a;
    padding: 8px 12px; /* Reducir padding */
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.rate-config:hover {
    background-color: #4a4a4a;
}

.rate-config label {
    margin-bottom: 0;
    color: #ffab40;
    font-size: 0.8em; /* Reducir tamaño de fuente */
    font-weight: bold;
    flex-shrink: 0;
}

.rate-config .rate-value {
    font-size: 1.1em; /* Reducir tamaño de fuente */
    color: #ffd180;
    font-weight: 600;
    margin-left: 10px;
    flex-grow: 1;
    text-align: right;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.small-button {
    background-color: #607d8b;
    color: white;
    padding: 6px 10px; /* Reducir padding */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9em; /* Reducir tamaño de fuente */
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.small-button:hover {
    background-color: #455a64;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 171, 64, 0.5);
}

.small-button:active {
    transform: scale(0.95);
}

/* --- Display Area --- */
.display-area {
    background-color: #1a1a1a;
    color: #00ff00;
    padding: 15px 20px; /* Reducir padding */
    border-radius: 10px;
    text-align: right;
    min-height: 80px; /* Altura mínima ajustada */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    box-shadow: inset 0 0 10px rgba(0, 255, 0, 0.3); /* Sombra ligeramente reducida */
    transition: all 0.2s ease-out;
    position: relative;
    overflow: hidden; /* Mantener overflow hidden aquí para el texto largo */
}

.operand-small {
    font-size: 1em; /* Reducir tamaño de fuente */
    color: #90ee90;
    min-height: 1em;
    opacity: 0.8;
    transition: opacity 0.2s ease-out;
    margin-bottom: 3px;
    flex-shrink: 0; /* No permitir que se encoja */
}

.operand-large {
    font-size: 2em; /* Reducir tamaño de fuente inicial en móviles */
    font-weight: bold;
    line-height: 1.2em;
    transition: font-size 0.2s ease-out, color 0.2s ease-out;
    white-space: nowrap; /* Mantener todo en una línea */
    overflow: hidden; /* Ocultar lo que se desborda */
    text-overflow: ellipsis; /* Añadir puntos suspensivos si se desborda */
    max-width: 100%; /* Asegurar que no exceda el ancho del contenedor */
    display: inline-block;
    transform-origin: right;
}

/* --- Buttons Grid --- */
.buttons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px; /* Reducir gap */
}

.buttons-grid button {
    background-color: #4a4a4a;
    color: #e0e0e0;
    border: none;
    border-radius: 10px;
    padding: 15px 0; /* Reducir padding */
    font-size: 1.3em; /* Reducir tamaño de fuente */
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.buttons-grid button:hover {
    background-color: #5a5a5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.buttons-grid button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    background-color: #6a6a6a;
    border: 2px solid #ffab40;
    padding: 13px 0; /* Adjust padding to compensate for border */
}

.number-button { background-color: #4a4a4a; }
.number-button:hover { background-color: #5a5a5a; }
.number-button:active { background-color: #6a6a6a; }

.operation-button { background-color: #ff8c00; color: white; }
.operation-button:hover { background-color: #e67e00; }
.operation-button:active { background-color: #cc6d00; }

.clear-button { background-color: #c0392b; color: white; }
.clear-button:hover { background-color: #a93226; }
.clear-button:active { background-color: #922b21; }

.equals-button { background-color: #27ae60; color: white; grid-column: span 2; }
.equals-button:hover { background-color: #229954; }
.equals-button:active { background-color: #1e8449; }

.zero-button { grid-column: span 2; text-align: center; }

/* --- Conversion Result Section --- */
.conversion-result {
    margin-top: 5px; /* Reducir margen superior */
    padding-top: 15px; /* Reducir padding superior */
    border-top: 1px solid #3a3a3a;
    align-self: stretch;
}

.conversion-result p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.9em; /* Reducir tamaño de fuente */
}

.conversion-result .result {
    font-size: 1.6em; /* Reducir tamaño de fuente */
    color: #ffab40;
    font-weight: bold;
    margin-top: 8px;
    transition: color 0.3s ease, font-size 0.3s ease;
}

/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Permitir desplazamiento dentro del modal si el contenido es largo */
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px; /* Asegurar que el modal no se pegue a los bordes en pantallas muy pequeñas */
    box-sizing: border-box;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #2e2e2e;
    padding: 25px; /* Reducir padding */
    border-radius: 15px;
    width: 95%; /* Ocupa más ancho en móviles */
    max-width: 400px; /* Pero con un máximo para pantallas grandes */
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    position: relative;
    text-align: center;
    color: #e0e0e0;
    transform: translateY(-50px);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Reducir espaciado */
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.close-button {
    color: #888;
    position: absolute;
    top: 10px; /* Ajustar posición */
    right: 15px; /* Ajustar posición */
    font-size: 28px; /* Reducir tamaño */
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-button:hover,
.close-button:focus {
    color: #ffab40;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #ff8c00;
    font-size: 1.4em; /* Reducir tamaño */
}

.modal-info {
    font-size: 0.85em; /* Reducir tamaño */
    color: #a0a0a0;
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: 5px;
    text-align: left;
    width: 100%;
}

.input-group label {
    display: block;
    margin-bottom: 6px; /* Reducir margen */
    color: #e0e0e0;
    font-weight: bold;
}

.modal-content input[type="number"],
.modal-content input[type="password"] {
    width: calc(100% - 16px); /* Ajustar para padding */
    padding: 10px 8px; /* Reducir padding */
    border: 1px solid #555;
    border-radius: 8px;
    font-size: 0.95em; /* Reducir tamaño */
    box-sizing: border-box;
    transition: border-color 0.3s, background-color 0.3s;
    background-color: #3a3a3a;
    color: #e0e0e0;
}

.modal-content input[type="number"]:focus,
.modal-content input[type="password"]:focus {
    border-color: #ffab40;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 171, 64, 0.5);
}

.modal-content button {
    background-color: #ff8c00;
    color: white;
    padding: 10px 20px; /* Reducir padding */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em; /* Reducir tamaño */
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    width: 100%;
    margin-top: 8px;
}

.modal-content button:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.modal-content button:active {
    transform: translateY(1px);
    background-color: #cc6d00;
}

/* --- Media Queries for Larger Screens (Tablets & Desktops) --- */
@media (min-width: 480px) { /* Para pantallas de 480px o más anchas */
    body {
        /* align-items: center; */ /* Re-activar si se quiere centrar verticalmente, pero puede ocultar el desplazamiento */
        padding: 0; /* Eliminar padding vertical si se usa align-items: center */
    }

    .calculator-container {
        padding: 30px; /* Restaurar padding original */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); /* Restaurar sombra original */
        gap: 20px; /* Restaurar espaciado */
    }

    h1 {
        font-size: 1.8em; /* Restaurar tamaño de fuente */
    }

    .rate-config {
        padding: 10px 15px; /* Restaurar padding */
    }

    .rate-config label {
        font-size: 0.9em; /* Restaurar tamaño de fuente */
    }

    .rate-config .rate-value {
        font-size: 1.2em; /* Restaurar tamaño de fuente */
        margin-left: 15px;
    }

    .small-button {
        padding: 8px 14px; /* Restaurar padding */
        font-size: 1em; /* Restaurar tamaño de fuente */
        margin-left: 15px;
    }

    .display-area {
        padding: 20px 25px; /* Restaurar padding */
        min-height: 90px; /* Restaurar altura mínima */
        box-shadow: inset 0 0 15px rgba(0, 255, 0, 0.3); /* Restaurar sombra */
    }

    .operand-small {
        font-size: 1.2em; /* Restaurar tamaño de fuente */
        margin-bottom: 5px;
    }

    .operand-large {
        font-size: 2.5em; /* Restaurar tamaño de fuente */
        /* Eliminamos las propiedades de auto-ajuste de texto para escritorio si queremos un tamaño fijo grande */
        white-space: nowrap; /* Mantener la elipsis también en escritorio para números largos */
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .buttons-grid {
        gap: 12px; /* Restaurar gap */
    }

    .buttons-grid button {
        padding: 18px 0; /* Restaurar padding */
        font-size: 1.4em; /* Restaurar tamaño de fuente */
    }
    .buttons-grid button:active {
        padding: 16px 0; /* Ajuste para el borde de active */
    }

    .conversion-result {
        margin-top: 10px; /* Restaurar margen */
        padding-top: 20px; /* Restaurar padding */
    }

    .conversion-result p {
        font-size: 1em; /* Restaurar tamaño de fuente */
    }

    .conversion-result .result {
        font-size: 1.8em; /* Restaurar tamaño de fuente */
        margin-top: 10px;
    }

    /* Modal styles for larger screens */
    .modal {
        padding: 20px; /* Restaurar padding */
    }
    .modal-content {
        padding: 30px; /* Restaurar padding */
        max-width: 450px; /* Restaurar ancho máximo */
        gap: 15px; /* Restaurar espaciado */
    }
    .close-button {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
    .modal-content h2 {
        font-size: 1.6em;
    }
    .modal-info {
        font-size: 0.9em;
    }
    .input-group label {
        margin-bottom: 8px;
    }
    .modal-content input[type="number"],
    .modal-content input[type="password"] {
        width: calc(100% - 20px);
        padding: 12px 10px;
        font-size: 1em;
    }
    .modal-content button {
        padding: 12px 25px;
        font-size: 1.1em;
        margin-top: 10px;
    }
}

/* --- Efectos de animación (sin cambios) --- */
.result-flash {
    animation: flashResult 0.5s ease-out;
}

@keyframes flashResult {
    0% { transform: scale(1); color: #ffab40; }
    50% { transform: scale(1.05); color: #ffd180; }
    100% { transform: scale(1); color: #ffab40; }
}

.current-operand-flash {
    animation: flashOperand 0.1s ease-out;
}

@keyframes flashOperand {
    from { background-color: rgba(0, 255, 0, 0.15); }
    to { background-color: transparent; }
}