.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
body { scroll-behavior: smooth; }

/* Protección básica contra copia de texto en elementos de UI */
.prevent-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Glassmorphism for cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(246, 115, 7, 0.3); /* primary-container color */
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Sidebar split layout for modal */
.modal-split-layout {
    display: flex;
    width: 100%;
    height: 100%;
}

/* Emulador de Teléfono para el Modal */
.phone-frame {
    width: 420px; /* Aumentado para acomodar el contenido de 414px sin recortes */
    height: 860px; /* Altura más estilizada para móviles modernos */
    border: 8px solid #1a1a1a; /* Bordes un poco más delgados para no saturar */
    border-radius: 45px;
    overflow: hidden;
    background: #fff;
    position: relative;
    box-shadow: 0 0 0 2px #333, 0 20px 50px rgba(0,0,0,0.5);
}
.phone-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

/* Laptop Frame para Proyectos Desktop */
.laptop-frame {
    width: 95%;
    max-width: 1150px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.laptop-screen {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #1a1a1a;
    border: 14px solid #1a1a1a;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.laptop-bottom {
    width: 108%;
    height: 18px;
    background: #2a2a2a;
    border-radius: 0 0 24px 24px;
    position: relative;
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
}